Support buttons.
[dcpomatic.git] / src / wx / screens_panel.h
1 /*
2     Copyright (C) 2015-2016 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #include <wx/wx.h>
22 #include <wx/srchctrl.h>
23 #include <wx/treectrl.h>
24 #include <boost/shared_ptr.hpp>
25 #include <boost/signals2.hpp>
26 #include <list>
27 #include <map>
28
29 class Cinema;
30 class Screen;
31
32 class ScreensPanel : public wxPanel
33 {
34 public:
35         explicit ScreensPanel (wxWindow* parent);
36         ~ScreensPanel ();
37
38         std::list<boost::shared_ptr<Screen> > screens () const;
39         void setup_sensitivity ();
40
41         boost::signals2::signal<void ()> ScreensChanged;
42
43 private:
44         void add_cinemas ();
45         void add_cinema (boost::shared_ptr<Cinema>);
46         boost::optional<wxTreeItemId> add_screen (boost::shared_ptr<Cinema>, boost::shared_ptr<Screen>);
47         void add_cinema_clicked ();
48         void edit_cinema_clicked ();
49         void remove_cinema_clicked ();
50         void add_screen_clicked ();
51         void edit_screen_clicked ();
52         void remove_screen_clicked ();
53         void selection_changed_shim (wxTreeEvent &);
54         void selection_changed ();
55         void search_changed ();
56
57         wxSearchCtrl* _search;
58         wxTreeCtrl* _targets;
59         wxButton* _add_cinema;
60         wxButton* _edit_cinema;
61         wxButton* _remove_cinema;
62         wxButton* _add_screen;
63         wxButton* _edit_screen;
64         wxButton* _remove_screen;
65         wxTreeItemId _root;
66
67         typedef std::map<wxTreeItemId, boost::shared_ptr<Cinema> > CinemaMap;
68         typedef std::map<wxTreeItemId, boost::shared_ptr<Screen> > ScreenMap;
69
70         CinemaMap _cinemas;
71         ScreenMap _screens;
72         CinemaMap _selected_cinemas;
73         ScreenMap _selected_screens;
74
75         bool _ignore_selection_change;
76 };