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