Move _state_timer into VideoView.
[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 namespace dcpomatic {
30         class Screen;
31 }
32
33 class Cinema;
34
35 class ScreensPanel : public wxPanel
36 {
37 public:
38         explicit ScreensPanel (wxWindow* parent);
39         ~ScreensPanel ();
40
41         std::list<boost::shared_ptr<dcpomatic::Screen> > screens () const;
42         void setup_sensitivity ();
43
44         boost::signals2::signal<void ()> ScreensChanged;
45
46 private:
47         void add_cinemas ();
48         void add_cinema (boost::shared_ptr<Cinema>);
49         boost::optional<wxTreeItemId> add_screen (boost::shared_ptr<Cinema>, boost::shared_ptr<dcpomatic::Screen>);
50         void add_cinema_clicked ();
51         void edit_cinema_clicked ();
52         void remove_cinema_clicked ();
53         void add_screen_clicked ();
54         void edit_screen_clicked ();
55         void remove_screen_clicked ();
56         void selection_changed_shim (wxTreeEvent &);
57         void selection_changed ();
58         void search_changed ();
59
60         wxSearchCtrl* _search;
61         wxTreeCtrl* _targets;
62         wxButton* _add_cinema;
63         wxButton* _edit_cinema;
64         wxButton* _remove_cinema;
65         wxButton* _add_screen;
66         wxButton* _edit_screen;
67         wxButton* _remove_screen;
68         wxTreeItemId _root;
69
70         typedef std::map<wxTreeItemId, boost::shared_ptr<Cinema> > CinemaMap;
71         typedef std::map<wxTreeItemId, boost::shared_ptr<dcpomatic::Screen> > ScreenMap;
72
73         CinemaMap _cinemas;
74         ScreenMap _screens;
75         CinemaMap _selected_cinemas;
76         ScreenMap _selected_screens;
77
78         bool _ignore_selection_change;
79 };