X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Fwx%2Fscreens_panel.h;h=65dfbdddb5f76abfe8467cf99eed03d6fc221f79;hp=6cfff0a60f44d77bbe687c217a75d07fa253e77b;hb=da13c2af9e8f19229061ca1939cbe8bd37c72eba;hpb=2034a89f30e4a976e44eb8d0a6b4ad6e3100cd4b diff --git a/src/wx/screens_panel.h b/src/wx/screens_panel.h index 6cfff0a60..65dfbdddb 100644 --- a/src/wx/screens_panel.h +++ b/src/wx/screens_panel.h @@ -1,63 +1,123 @@ /* - Copyright (C) 2015 Carl Hetherington + Copyright (C) 2015-2022 Carl Hetherington - This program is free software; you can redistribute it and/or modify + This file is part of DCP-o-matic. + + DCP-o-matic is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. - This program is distributed in the hope that it will be useful, + DCP-o-matic is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + along with DCP-o-matic. If not, see . */ + +#include "lib/collator.h" +#include "lib/config.h" +#include +LIBDCP_DISABLE_WARNINGS +#include +#include #include -#include -#include +LIBDCP_ENABLE_WARNINGS +#include #include #include +#include + + +namespace dcpomatic { + class Screen; +} + class Cinema; -class Screen; + class ScreensPanel : public wxPanel { public: - ScreensPanel (wxWindow* parent); + explicit ScreensPanel (wxWindow* parent); ~ScreensPanel (); - std::list > screens () const; + std::vector> screens () const; void setup_sensitivity (); boost::signals2::signal ScreensChanged; private: - void add_cinema (boost::shared_ptr); - void add_screen (boost::shared_ptr, boost::shared_ptr); + void add_cinemas (); + 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 (); + void edit_cinema(std::shared_ptr cinema); void remove_cinema_clicked (); void add_screen_clicked (); void edit_screen_clicked (); + void edit_screen(std::shared_ptr screen); void remove_screen_clicked (); - std::list > > selected_cinemas () const; - std::list > > selected_screens () const; - void selection_changed (wxTreeEvent &); + void selection_changed_shim (wxTreeListEvent &); + void selection_changed (); + void search_changed (); + void checkbox_changed (wxTreeListEvent& ev); + void item_activated(wxTreeListEvent& ev); + 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 search); + std::list> sorted_cinemas() const; - wxTreeCtrl* _targets; + 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; wxButton* _add_cinema; wxButton* _edit_cinema; wxButton* _remove_cinema; wxButton* _add_screen; wxButton* _edit_screen; wxButton* _remove_screen; - wxTreeItemId _root; - std::map > _cinemas; - std::map > _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; + std::map, wxTreeListItem> _cinema_to_item; + std::map, wxTreeListItem> _screen_to_item; + + bool _ignore_selection_change = false; + bool _ignore_check_change = false; + + Collator _collator; + + boost::signals2::scoped_connection _config_connection; + bool _ignore_cinemas_changed = false; };