Merge branch 'hotfix-1.5.6' into feature-listbox

This commit is contained in:
Jinhao
2018-02-10 14:59:28 +08:00
5 changed files with 154 additions and 47 deletions

View File

@@ -55,6 +55,37 @@
#define NANA_USING_BOOST_FILESYSTEM 1 #define NANA_USING_BOOST_FILESYSTEM 1
# include <chrono> # include <chrono>
# include <boost/filesystem.hpp> # include <boost/filesystem.hpp>
// dont include generic_u8string
// http://www.boost.org/doc/libs/1_66_0/boost/filesystem/path.hpp
// enable directory_iterator C++11 range-base for
// http://www.boost.org/doc/libs/1_66_0/boost/filesystem/operations.hpp
// but travis come with an oooold version of boost
// NOT enable directory_iterator C++11 range-base for
// http://www.boost.org/doc/libs/1_54_0/boost/filesystem/operations.hpp
namespace boost
{
namespace filesystem
{
// enable directory_iterator C++11 range-base for statement use --------------------//
// begin() and end() are only used by a range-based for statement in the context of
// auto - thus the top-level const is stripped - so returning const is harmless and
// emphasizes begin() is just a pass through.
inline
const directory_iterator& begin(const directory_iterator& iter) BOOST_NOEXCEPT
{
return iter;
}
inline
directory_iterator end(const directory_iterator&) BOOST_NOEXCEPT
{
return directory_iterator();
}
} // namespace filesystem
}
// add boost::filesystem into std::experimental::filesystem // add boost::filesystem into std::experimental::filesystem
namespace std { namespace std {

View File

@@ -16,6 +16,7 @@
#define NANA_FILESYSTEM_EXT_HPP #define NANA_FILESYSTEM_EXT_HPP
#include <nana/filesystem/filesystem.hpp> #include <nana/filesystem/filesystem.hpp>
#include <nana/deploy.hpp>
namespace nana namespace nana
{ {
@@ -34,6 +35,16 @@ namespace filesystem_ext
std::experimental::filesystem::path path_user(); ///< extention ? std::experimental::filesystem::path path_user(); ///< extention ?
/// workaround Boost not having path.generic_u8string() - a good point for http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0251r0.pdf
inline std::string generic_u8string(const std::experimental::filesystem::path& p)
{
#if NANA_USING_BOOST_FILESYSTEM
return nana::to_utf8(p.generic_wstring());
#else
return p.generic_u8string();
#endif
}
inline bool is_directory(const std::experimental::filesystem::directory_entry& dir) noexcept inline bool is_directory(const std::experimental::filesystem::directory_entry& dir) noexcept
{ {
return is_directory(dir.status()); return is_directory(dir.status());

View File

@@ -1,7 +1,7 @@
/** /**
* A Scroll Implementation * A Scroll Implementation
* Nana C++ Library(http://www.nanapro.org) * Nana C++ Library(http://www.nanapro.org)
* Copyright(C) 2003-2015 Jinhao(cnjinhao@hotmail.com) * Copyright(C) 2003-2018 Jinhao(cnjinhao@hotmail.com)
* *
* Distributed under the Boost Software License, Version 1.0. * Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE_1_0.txt or copy at * (See accompanying file LICENSE_1_0.txt or copy at
@@ -147,7 +147,7 @@ namespace nana
void step(size_type s) void step(size_type s)
{ {
metrics_.step = s; metrics_.step = (s ? s : 1);
} }
bool make_step(bool forward, unsigned multiple) bool make_step(bool forward, unsigned multiple)
@@ -501,7 +501,8 @@ namespace nana
/// @return true if the vlaue is changed. /// @return true if the vlaue is changed.
bool make_page_scroll(bool forward) bool make_page_scroll(bool forward)
{ {
return this->make_step(forward, static_cast<unsigned>(range() - 1)); auto const count = range() / step();
return this->make_step(forward, (count > 2 ? count - 1 : 1));
} }
};//end class scroll };//end class scroll
}//end namespace nana }//end namespace nana

View File

@@ -1282,6 +1282,7 @@ namespace nana
} }
//Backward //Backward
n = -n;
dpos = pos; dpos = pos;
if (good(dpos.cat)) if (good(dpos.cat))
{ {
@@ -1528,8 +1529,6 @@ namespace nana
template<typename Pred> template<typename Pred>
std::vector<std::pair<index_pair, bool>> select_display_range_if(const index_pair& fr_abs, index_pair to_dpl, bool deselect_others, Pred pred) std::vector<std::pair<index_pair, bool>> select_display_range_if(const index_pair& fr_abs, index_pair to_dpl, bool deselect_others, Pred pred)
{ {
const index_pairs already_selected = (deselect_others ? this->pick_items(true) : index_pairs{});
if (to_dpl.empty()) if (to_dpl.empty())
{ {
if (fr_abs.empty()) if (fr_abs.empty())
@@ -1542,6 +1541,11 @@ namespace nana
if (fr_dpl > to_dpl) if (fr_dpl > to_dpl)
std::swap(fr_dpl, to_dpl); std::swap(fr_dpl, to_dpl);
if (to_dpl.is_category() && this->size_item(to_dpl.cat) > 0)
to_dpl.item = this->size_item(to_dpl.cat) - 1;
const index_pairs already_selected = (deselect_others ? this->pick_items(true) : index_pairs{});
const auto begin = fr_dpl; const auto begin = fr_dpl;
const auto last = to_dpl; const auto last = to_dpl;
@@ -1627,7 +1631,7 @@ namespace nana
} }
/// return absolute positions, no relative to display /// return absolute positions, no relative to display
index_pairs pick_items(bool for_selection) const index_pairs pick_items(bool for_selection, bool find_first = false) const
{ {
index_pairs results; index_pairs results;
index_pair id; index_pair id;
@@ -1638,7 +1642,11 @@ namespace nana
for (auto & m : cat.items) for (auto & m : cat.items)
{ {
if (for_selection ? m.flags.selected : m.flags.checked) if (for_selection ? m.flags.selected : m.flags.checked)
{
results.push_back(id); // absolute positions, no relative to display results.push_back(id); // absolute positions, no relative to display
if (find_first)
return results;
}
++id.item; ++id.item;
} }
++id.cat; ++id.cat;
@@ -1987,6 +1995,15 @@ namespace nana
}; };
} }
bool cs_status(index_pair abs_pos, bool for_selection) const
{
if (abs_pos.is_category())
return lister.cat_status(abs_pos.cat, for_selection);
auto & flags = lister.get(abs_pos.cat)->items.at(abs_pos.item).flags;
return (for_selection ? flags.selected : flags.checked);
}
void resize_disp_area() void resize_disp_area()
{ {
auto head_px = this->header_visible_px(); auto head_px = this->header_visible_px();
@@ -3501,6 +3518,8 @@ namespace nana
rect.y - static_cast<int>(origin.y % item_height_px) rect.y - static_cast<int>(origin.y % item_height_px)
}; };
essence_->inline_buffered_table.swap(essence_->inline_table);
// The first display is empty when the listbox is empty. // The first display is empty when the listbox is empty.
if (!first_disp.empty()) if (!first_disp.empty())
{ {
@@ -3523,8 +3542,6 @@ namespace nana
auto idx = first_disp; auto idx = first_disp;
essence_->inline_buffered_table.swap(essence_->inline_table);
for (auto & cat : lister.cat_container()) for (auto & cat : lister.cat_container())
for (auto & ind : cat.indicators) for (auto & ind : cat.indicators)
{ {
@@ -3594,10 +3611,10 @@ namespace nana
++idx.item; ++idx.item;
} }
} }
essence_->inline_buffered_table.clear();
} }
essence_->inline_buffered_table.clear();
if (item_coord.y < rect.bottom()) if (item_coord.y < rect.bottom())
{ {
rectangle bground_r{ rect.x, item_coord.y, rect.width, static_cast<unsigned>(rect.bottom() - item_coord.y) }; rectangle bground_r{ rect.x, item_coord.y, rect.width, static_cast<unsigned>(rect.bottom() - item_coord.y) };
@@ -4190,17 +4207,16 @@ namespace nana
essence_->content_view->sync(false); essence_->content_view->sync(false);
} }
bool sel = true; bool new_selected_status = true;
//no single selected if (!lister.single_status(true)) //multiply selection enabled
if (!lister.single_status(true))
{ {
if (arg.shift) if (arg.shift)
{ {
//Set the first item as the begin of selected item if there //Set the first item as the begin of selected item if there
//is not a latest selected item.(#154 reported by RenaudAlpes) //is not a latest selected item.(#154 reported by RenaudAlpes)
if (lister.latest_selected_abs.empty() || lister.latest_selected_abs.is_category()) if (lister.latest_selected_abs.empty())
lister.latest_selected_abs.set_both(0); lister.latest_selected_abs = lister.first();
auto before = lister.latest_selected_abs; auto before = lister.latest_selected_abs;
@@ -4214,7 +4230,7 @@ namespace nana
else if (arg.ctrl) else if (arg.ctrl)
{ {
essence_->mouse_selection.reverse_selection = true; essence_->mouse_selection.reverse_selection = true;
sel = !item_proxy(essence_, abs_item_pos).selected(); new_selected_status = !essence_->cs_status(abs_item_pos, true);
} }
else else
{ {
@@ -4237,14 +4253,14 @@ namespace nana
//Clicking on a category is ignored when single selection is enabled. //Clicking on a category is ignored when single selection is enabled.
//Fixed by Greentwip(issue #121) //Fixed by Greentwip(issue #121)
if (item_ptr) if (item_ptr)
sel = !item_proxy(essence_, abs_item_pos).selected(); new_selected_status = !item_proxy(essence_, abs_item_pos).selected();
} }
if(item_ptr) if(item_ptr)
{ {
if (item_ptr->flags.selected != sel) if (item_ptr->flags.selected != new_selected_status)
{ {
if (sel) if (new_selected_status)
{ {
//Deselects the previously selected item. //Deselects the previously selected item.
lister.cancel_others_if_single_enabled(true, abs_item_pos); lister.cancel_others_if_single_enabled(true, abs_item_pos);
@@ -4253,13 +4269,15 @@ namespace nana
else if (essence_->lister.latest_selected_abs == abs_item_pos) else if (essence_->lister.latest_selected_abs == abs_item_pos)
essence_->lister.latest_selected_abs.set_both(npos); essence_->lister.latest_selected_abs.set_both(npos);
item_ptr->flags.selected = sel; item_ptr->flags.selected = new_selected_status;
lister.emit_cs(abs_item_pos, true); lister.emit_cs(abs_item_pos, true);
} }
} }
else else
{ {
lister.cat_status(item_pos.cat, true, true); //A category was clicked. Sets all child items to be selected only if multiply selection is enabled.
if(!lister.single_status(true))
lister.cat_status(item_pos.cat, true, true);
} }
} }
else else
@@ -4409,8 +4427,9 @@ namespace nana
void trigger::key_press(graph_reference graph, const arg_keyboard& arg) void trigger::key_press(graph_reference graph, const arg_keyboard& arg)
{ {
auto & list = essence_->lister;
// Exit if list is empty // Exit if list is empty
if (essence_->lister.first().empty()) if (list.first().empty())
return; return;
bool upward = false; bool upward = false;
@@ -4420,12 +4439,12 @@ namespace nana
case keyboard::os_arrow_up: case keyboard::os_arrow_up:
upward = true; upward = true;
case keyboard::os_arrow_down: case keyboard::os_arrow_down:
essence_->lister.move_select(upward, !arg.shift, true); list.move_select(upward, !arg.shift, true);
break; break;
case L' ': case L' ':
{ {
index_pairs s; index_pairs s;
bool ck = ! essence_->lister.item_selected_all_checked(s); bool ck = ! list.item_selected_all_checked(s);
for(auto i : s) for(auto i : s)
item_proxy(essence_, i).check(ck); item_proxy(essence_, i).check(ck);
} }
@@ -4434,30 +4453,69 @@ namespace nana
upward = true; upward = true;
case keyboard::os_pagedown: case keyboard::os_pagedown:
{ {
//Turns page, then returns if no change occurs auto const item_px = essence_->item_height();
if (!essence_->content_view->turn_page(!upward, false)) auto picked_items = list.pick_items(true, true);
return; index_pair init_idx = (picked_items.empty() ? list.first() : picked_items[0]);
essence_->lister.select_for_all(false); essence_->lister.select_for_all(false);
auto idx = essence_->first_display(); //Get the pixels between the init item and top edge or bottom edge
auto logic_top = static_cast<int>(list.distance(list.first(), init_idx) * item_px);
if (!upward) auto const screen_top = essence_->content_view->origin().y;
idx = essence_->lister.advance(idx, static_cast<int>(essence_->count_of_exposed(false)) - 1); auto const screen_bottom = screen_top + essence_->content_view->view_area().height;
index_pair target_idx;
if (!idx.is_category()) //Check if it scrolls in current screen window
item_proxy::from_display(essence_, idx).select(true); //condition: top of target item is not less than top edge of content view and
else if (!essence_->lister.single_status(true)) //not selected //the bottom of target item is not greater than bottom edge of content view.
essence_->lister.cat_status(idx.cat, true, true); if ((screen_top + item_px <= logic_top) && (logic_top + item_px + item_px <= screen_bottom))
{
int offset = (static_cast<int>(upward ? screen_top : screen_bottom - item_px) - logic_top) / static_cast<int>(item_px);
target_idx = list.advance(init_idx, offset);
}
else
{
//turn page
auto page_item_count = (std::max)(1, static_cast<int>(essence_->count_of_exposed(false)));
break; auto origin = essence_->content_view->origin();
if (upward)
{
target_idx = list.advance(init_idx, -page_item_count);
if (target_idx.empty())
target_idx = list.first();
origin.y = list.distance(list.first(), target_idx) * item_px;
}
else
{
target_idx = list.advance(init_idx, page_item_count);
if (target_idx.empty())
target_idx = list.last();
origin.y = list.distance(list.first(), target_idx) * item_px + item_px;
if (origin.y >= (screen_bottom - screen_top))
origin.y -= (screen_bottom - screen_top);
else
origin.y = 0;
}
essence_->content_view->move_origin(origin - essence_->content_view->origin());
}
if (!target_idx.is_category())
item_proxy::from_display(essence_, target_idx).select(true);
else if (!list.single_status(true)) //not selected
list.cat_status(target_idx.cat, true, true);
} }
break;
case keyboard::os_home: case keyboard::os_home:
case keyboard::os_end: case keyboard::os_end:
{ {
essence_->lister.select_for_all(false); list.select_for_all(false);
auto pos = (keyboard::os_home == arg.key ? essence_->lister.first() : essence_->lister.last()); auto pos = (keyboard::os_home == arg.key ? list.first() : list.last());
if (!pos.empty()) if (!pos.empty())
{ {
//When the pos indicates an empty category, then search forwards/backwards(depending on arg.key whether it is Home or End) for a non empty category. //When the pos indicates an empty category, then search forwards/backwards(depending on arg.key whether it is Home or End) for a non empty category.
@@ -4466,9 +4524,9 @@ namespace nana
{ {
if (keyboard::os_home == arg.key) if (keyboard::os_home == arg.key)
{ {
while (0 == essence_->lister.size_item(pos.cat)) while (0 == list.size_item(pos.cat))
{ {
if (++pos.cat >= essence_->lister.cat_container().size()) if (++pos.cat >= list.cat_container().size())
{ {
pos = index_pair{ npos, npos }; pos = index_pair{ npos, npos };
break; break;
@@ -4477,7 +4535,7 @@ namespace nana
} }
else else
{ {
while (0 == essence_->lister.size_item(pos.cat)) while (0 == list.size_item(pos.cat))
{ {
if (pos.cat-- == 0) if (pos.cat-- == 0)
{ {
@@ -4489,7 +4547,7 @@ namespace nana
if (!pos.empty()) if (!pos.empty())
{ {
if (essence_->lister.expand(pos.cat)) if (list.expand(pos.cat))
pos.item = 0; pos.item = 0;
} }
} }
@@ -4498,8 +4556,8 @@ namespace nana
{ {
if (pos.is_category()) if (pos.is_category())
{ {
if (!essence_->lister.single_status(true)) //multiple selection is not enabled if (!list.single_status(true)) //multiple selection is not enabled
essence_->lister.cat_status(pos.cat, true, true); list.cat_status(pos.cat, true, true);
} }
else else
item_proxy::from_display(essence_, pos).select(true); item_proxy::from_display(essence_, pos).select(true);

View File

@@ -1,7 +1,7 @@
/* /*
* A Scroll Implementation * A Scroll Implementation
* Nana C++ Library(http://www.nanapro.org) * Nana C++ Library(http://www.nanapro.org)
* Copyright(C) 2003-2014 Jinhao(cnjinhao@hotmail.com) * Copyright(C) 2003-2018 Jinhao(cnjinhao@hotmail.com)
* *
* Distributed under the Boost Software License, Version 1.0. * Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE_1_0.txt or copy at * (See accompanying file LICENSE_1_0.txt or copy at
@@ -20,9 +20,15 @@ namespace nana
namespace scroll namespace scroll
{ {
//struct metrics_type //struct metrics_type
metrics_type::metrics_type() metrics_type::metrics_type():
:peak(1), range(1), step(1), value(0), peak(1),
what(buttons::none), pressed(false), scroll_length(0), scroll_pos(0) range(1),
step(1),
value(0),
what(buttons::none),
pressed(false),
scroll_length(0),
scroll_pos(0)
{} {}
//end struct metrics_type //end struct metrics_type