X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fscreens_panel.h;h=ae730c2df4c43caecd6a79ab9b00a65d3cfff38f;hb=7d3b018675efdb8b1a4eeaf05c73f997977cb2e9;hp=4b7a801413a5c3e3d5b80c5a17ce1b241dcc3c29;hpb=c36cc02c31740f6676e31df2c36001e5d082c71c;p=dcpomatic.git diff --git a/src/wx/screens_panel.h b/src/wx/screens_panel.h index 4b7a80141..ae730c2df 100644 --- a/src/wx/screens_panel.h +++ b/src/wx/screens_panel.h @@ -19,15 +19,16 @@ */ -#include "lib/warnings.h" -DCPOMATIC_DISABLE_WARNINGS -#include -DCPOMATIC_ENABLE_WARNINGS +#include +LIBDCP_DISABLE_WARNINGS #include #include +#include +LIBDCP_ENABLE_WARNINGS #include #include #include +#include namespace dcpomatic { @@ -36,7 +37,7 @@ namespace dcpomatic { class Cinema; -class UCollator; +struct UCollator; class ScreensPanel : public wxPanel @@ -52,7 +53,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,13 +65,17 @@ 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; - - Cinemas::iterator cinema_by_tree_list_item (wxTreeListItem item); - Screens::const_iterator screen_by_tree_list_item (wxTreeListItem item) const; + std::shared_ptr cinema_for_operation () const; + void set_screen_checked (wxTreeListItem item, bool checked); + void setup_cinema_checked_state (wxTreeListItem screen); + int compare (std::string const& utf8_a, std::string const& utf8_b); + void check_all (); + void uncheck_all (); + + std::shared_ptr item_to_cinema (wxTreeListItem item) const; + std::shared_ptr item_to_screen (wxTreeListItem item) const; + boost::optional cinema_to_item (std::shared_ptr cinema) const; + boost::optional screen_to_item (std::shared_ptr screen) const; wxSearchCtrl* _search; wxTreeListCtrl* _targets; @@ -80,25 +85,27 @@ private: wxButton* _add_screen; wxButton* _edit_screen; wxButton* _remove_screen; - - Cinemas _cinemas; - Screens _screens; - Cinemas _selected_cinemas; - Screens _selected_screens; - - bool _ignore_selection_change; - - class Comparator : public wxTreeListItemComparator - { - public: - Comparator (); - ~Comparator (); - - int Compare (wxTreeListCtrl* tree_list, unsigned, wxTreeListItem a, wxTreeListItem b) override; - - private: - UCollator* _collator; - }; - - Comparator _comparator; + 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; + std::map, wxTreeListItem> _cinema_to_item; + std::map, wxTreeListItem> _screen_to_item; + + bool _ignore_selection_change = false; + bool _ignore_check_change = false; + + UCollator* _collator = nullptr; };