blob: f99d518a2008aa38a7e40e616f1781d0aa6ceec1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
|
/*
Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net>
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.
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 DCP-o-matic. If not, see <http://www.gnu.org/licenses/>.
*/
#include "content_menu.h"
#include "lib/enum_indexed_vector.h"
#include "lib/film_property.h"
#include "lib/text_type.h"
#include <dcp/warnings.h>
LIBDCP_DISABLE_WARNINGS
#include <wx/splitter.h>
LIBDCP_ENABLE_WARNINGS
#include <list>
class AudioPanel;
class ContentListCtrl;
class ContentSubPanel;
class ContentTimelineDialog;
class Film;
class FilmEditor;
class FilmViewer;
class LimitedContentPanelSplitter;
class TextPanel;
class TimingPanel;
class VideoPanel;
class wxListCtrl;
class wxListEvent;
class wxNotebook;
class wxPanel;
class wxSizer;
class wxSplitterWindow;
class ContentPanel
{
public:
ContentPanel(wxNotebook *, std::shared_ptr<Film>, FilmViewer& viewer);
ContentPanel (ContentPanel const&) = delete;
ContentPanel& operator= (ContentPanel const&) = delete;
std::shared_ptr<Film> film () const {
return _film;
}
void set_film (std::shared_ptr<Film>);
void set_general_sensitivity (bool s);
void set_selection (std::weak_ptr<Content>);
void set_selection (ContentList cl);
void select_all ();
void film_changed(FilmProperty p);
void film_content_changed (int p);
void first_shown ();
wxWindow* window () const;
wxNotebook* notebook () const {
return _notebook;
}
ContentList selected ();
ContentList selected_video ();
ContentList selected_audio ();
ContentList selected_text ();
FFmpegContentList selected_ffmpeg ();
void add_file_clicked ();
bool remove_clicked (bool hotkey);
void timeline_clicked ();
FilmViewer& film_viewer() const {
return _film_viewer;
}
void add_files(std::vector<boost::filesystem::path> files);
void add_dcp(boost::filesystem::path dcp);
void add_folder(boost::filesystem::path folder);
boost::signals2::signal<void (void)> SelectionChanged;
private:
void item_selected ();
void item_deselected ();
void item_deselected_idle ();
void item_focused ();
void check_selection ();
void add_folder_clicked ();
void add_dcp_clicked ();
void earlier_clicked ();
void later_clicked ();
void right_click (wxListEvent &);
void files_dropped (wxDropFilesEvent &);
void setup ();
void setup_sensitivity ();
void set_selected_state(int item, bool state);
std::list<ContentSubPanel *> panels () const;
LimitedContentPanelSplitter* _splitter;
wxPanel* _top_panel;
wxNotebook* _notebook;
ContentListCtrl* _content;
wxButton* _add_file;
wxButton* _add_folder;
wxButton* _add_dcp;
wxButton* _remove;
wxButton* _earlier;
wxButton* _later;
wxButton* _timeline;
VideoPanel* _video_panel = nullptr;
AudioPanel* _audio_panel = nullptr;
EnumIndexedVector<TextPanel*, TextType> _text_panel;
TimingPanel* _timing_panel;
ContentMenu* _menu;
wx_ptr<ContentTimelineDialog> _timeline_dialog;
wxNotebook* _parent;
wxWindow* _last_selected_tab = nullptr;
std::shared_ptr<Film> _film;
FilmViewer& _film_viewer;
bool _generally_sensitive;
bool _ignore_deselect;
bool _no_check_selection;
};
|