X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Fwx%2Fscreens_panel.h;h=73da029d0e4a6f83fa745045b2ddbf7b08a6b332;hp=2567725b85ac87e1afe0717cfd5f1871e70596ed;hb=ed0b5670e65647a9f0555ed66f81125678d193a7;hpb=8937b4096aef372dbde07c78d1af9d44b0b0d642 diff --git a/src/wx/screens_panel.h b/src/wx/screens_panel.h index 2567725b8..73da029d0 100644 --- a/src/wx/screens_panel.h +++ b/src/wx/screens_panel.h @@ -19,15 +19,18 @@ */ -#include "lib/warnings.h" -DCPOMATIC_DISABLE_WARNINGS -#include -DCPOMATIC_ENABLE_WARNINGS +#include "lib/collator.h" +#include "lib/config.h" +#include +LIBDCP_DISABLE_WARNINGS #include #include +#include +LIBDCP_ENABLE_WARNINGS #include #include #include +#include namespace dcpomatic { @@ -36,7 +39,6 @@ namespace dcpomatic { class Cinema; -class UCollator; class ScreensPanel : public wxPanel @@ -52,7 +54,7 @@ public: private: void add_cinemas (); - boost::optional add_cinema (std::shared_ptr); + boost::optional add_cinema (std::shared_ptr, wxTreeListItem previous); boost::optional add_screen (std::shared_ptr, std::shared_ptr); void add_cinema_clicked (); void edit_cinema_clicked (); @@ -64,10 +66,16 @@ private: void selection_changed (); void search_changed (); void checkbox_changed (wxTreeListEvent& ev); - boost::optional>> cinema_for_operation () const; - - typedef std::vector>> Cinemas; - typedef std::vector>> Screens; + std::shared_ptr cinema_for_operation () const; + void set_screen_checked (wxTreeListItem item, bool checked); + void setup_cinema_checked_state (wxTreeListItem screen); + void check_all (); + void uncheck_all (); + bool notify_cinemas_changed(); + void clear_and_re_add(); + void config_changed(Config::Property); + void convert_to_lower(std::string& s); + bool matches_search(std::shared_ptr cinema, std::string lower_case_search); std::shared_ptr item_to_cinema (wxTreeListItem item) const; std::shared_ptr item_to_screen (wxTreeListItem item) const; @@ -82,11 +90,19 @@ private: wxButton* _add_screen; wxButton* _edit_screen; wxButton* _remove_screen; - - Cinemas _cinemas; - Screens _screens; - Cinemas _selected_cinemas; - Screens _selected_screens; + wxButton* _check_all; + wxButton* _uncheck_all; + + /* We want to be able to search (and so remove selected things from the view) + * but not deselect them, so we maintain lists of selected cinemas and screens. + */ + std::vector> _selected_cinemas; + std::vector> _selected_screens; + /* Likewise with checked screens, except that we can work out which cinemas + * are checked from which screens are checked, so we don't need to store the + * cinemas. + */ + std::set> _checked_screens; std::map> _item_to_cinema; std::map> _item_to_screen; @@ -94,18 +110,10 @@ private: std::map, wxTreeListItem> _screen_to_item; bool _ignore_selection_change = false; + bool _ignore_check_change = false; - class Comparator : public wxTreeListItemComparator - { - public: - Comparator (); - ~Comparator (); - - int Compare (wxTreeListCtrl* tree_list, unsigned, wxTreeListItem a, wxTreeListItem b) override; - - private: - UCollator* _collator; - }; + Collator _collator; - Comparator _comparator; + boost::signals2::scoped_connection _config_connection; + bool _ignore_cinemas_changed = false; };