X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fscreens_panel.h;h=a91fbc0e055e41a49aa5c6e98dd753f4593e0083;hb=b3a11879c49c8c0f79e7643827125ae8a7c82a01;hp=e3c7023df844bd93fbeac760d383d6e07daad4d3;hpb=082e4bd08f946c8f7dd2e05c7fc26dfefdc7e15f;p=dcpomatic.git diff --git a/src/wx/screens_panel.h b/src/wx/screens_panel.h index e3c7023df..a91fbc0e0 100644 --- a/src/wx/screens_panel.h +++ b/src/wx/screens_panel.h @@ -19,12 +19,13 @@ */ -#include "lib/warnings.h" -DCPOMATIC_DISABLE_WARNINGS -#include -DCPOMATIC_ENABLE_WARNINGS +#include "lib/config.h" +#include +LIBDCP_DISABLE_WARNINGS #include #include +#include +LIBDCP_ENABLE_WARNINGS #include #include #include @@ -37,7 +38,7 @@ namespace dcpomatic { class Cinema; -class UCollator; +struct UCollator; class ScreensPanel : public wxPanel @@ -69,6 +70,11 @@ private: 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 (); + bool notify_cinemas_changed(); + void clear_and_re_add(); + void config_changed(Config::Property); std::shared_ptr item_to_cinema (wxTreeListItem item) const; std::shared_ptr item_to_screen (wxTreeListItem item) const; @@ -83,6 +89,8 @@ private: wxButton* _add_screen; wxButton* _edit_screen; wxButton* _remove_screen; + 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. @@ -104,4 +112,7 @@ private: bool _ignore_check_change = false; UCollator* _collator = nullptr; + + boost::signals2::scoped_connection _config_connection; + bool _ignore_cinemas_changed = false; };