df5c58ebd0450ebaaa7240cb0bab3839ffcfce1b
[dcpomatic.git] / src / wx / content_panel.h
1 /*
2     Copyright (C) 2012-2019 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 "content_menu.h"
22 #include "lib/types.h"
23 #include "lib/film.h"
24 #include <wx/splitter.h>
25 #include <boost/shared_ptr.hpp>
26 #include <list>
27
28 class wxNotebook;
29 class wxPanel;
30 class wxSizer;
31 class wxListCtrl;
32 class wxListEvent;
33 class wxSplitterWindow;
34 class TimelineDialog;
35 class FilmEditor;
36 class ContentSubPanel;
37 class TextPanel;
38 class VideoPanel;
39 class AudioPanel;
40 class TimingPanel;
41 class Film;
42 class FilmViewer;
43
44
45 class LimitedSplitter : public wxSplitterWindow
46 {
47 public:
48         LimitedSplitter (wxWindow* parent);
49
50         bool OnSashPositionChange (int new_position)
51         {
52                 /* Try to stop the top bit of the splitter getting so small that buttons disappear */
53                 return new_position > 220;
54         }
55
56         void first_shown (wxWindow* top, wxWindow* bottom);
57
58 private:
59         void sized (wxSizeEvent& ev);
60
61         bool _first_shown;
62         int const _top_panel_minimum_size;
63 };
64
65
66 class ContentPanel : public boost::noncopyable
67 {
68 public:
69         ContentPanel (wxNotebook *, boost::shared_ptr<Film>, boost::weak_ptr<FilmViewer> viewer);
70
71         boost::shared_ptr<Film> film () const {
72                 return _film;
73         }
74
75         void set_film (boost::shared_ptr<Film>);
76         void set_general_sensitivity (bool s);
77         void set_selection (boost::weak_ptr<Content>);
78         void set_selection (ContentList cl);
79
80         void film_changed (Film::Property p);
81         void film_content_changed (int p);
82
83         void first_shown ();
84
85         wxWindow* window () const {
86                 return _splitter;
87         }
88
89         wxNotebook* notebook () const {
90                 return _notebook;
91         }
92
93         ContentList selected ();
94         ContentList selected_video ();
95         ContentList selected_audio ();
96         ContentList selected_text ();
97         FFmpegContentList selected_ffmpeg ();
98
99         void add_file_clicked ();
100         bool remove_clicked (bool hotkey);
101         void timeline_clicked ();
102
103         boost::weak_ptr<FilmViewer> film_viewer () const {
104                 return _film_viewer;
105         }
106
107         boost::signals2::signal<void (void)> SelectionChanged;
108
109 private:
110         void item_selected ();
111         void item_deselected ();
112         void item_deselected_idle ();
113         void check_selection ();
114         void add_folder_clicked ();
115         void add_dcp_clicked ();
116         void earlier_clicked ();
117         void later_clicked ();
118         void right_click (wxListEvent &);
119         void files_dropped (wxDropFilesEvent &);
120
121         void setup ();
122         void setup_sensitivity ();
123
124         void add_files (std::list<boost::filesystem::path>);
125         std::list<ContentSubPanel *> panels () const;
126
127         LimitedSplitter* _splitter;
128         wxPanel* _top_panel;
129         wxNotebook* _notebook;
130         wxListCtrl* _content;
131         wxButton* _add_file;
132         wxButton* _add_folder;
133         wxButton* _add_dcp;
134         wxButton* _remove;
135         wxButton* _earlier;
136         wxButton* _later;
137         wxButton* _timeline;
138         VideoPanel* _video_panel;
139         AudioPanel* _audio_panel;
140         TextPanel* _text_panel[TEXT_COUNT];
141         TimingPanel* _timing_panel;
142         ContentMenu* _menu;
143         TimelineDialog* _timeline_dialog;
144         wxNotebook* _parent;
145         wxWindow* _last_selected_tab;
146
147         boost::shared_ptr<Film> _film;
148         boost::weak_ptr<FilmViewer> _film_viewer;
149         bool _generally_sensitive;
150         bool _ignore_deselect;
151         bool _no_check_selection;
152 };