blob: a4a172a7fc822a57ecba1f87d5a7c7df659cced3 (
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
|
/*
Copyright (C) 2012-2019 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/types.h"
#include "lib/film.h"
#include <wx/splitter.h>
#include <boost/shared_ptr.hpp>
#include <list>
class wxNotebook;
class wxPanel;
class wxSizer;
class wxListCtrl;
class wxListEvent;
class wxSplitterWindow;
class TimelineDialog;
class FilmEditor;
class ContentSubPanel;
class TextPanel;
class VideoPanel;
class AudioPanel;
class TimingPanel;
class Film;
class FilmViewer;
class ContentPanel : public boost::noncopyable
{
public:
ContentPanel (wxNotebook *, boost::shared_ptr<Film>, boost::weak_ptr<FilmViewer> viewer);
boost::shared_ptr<Film> film () const {
return _film;
}
void set_film (boost::shared_ptr<Film>);
void set_general_sensitivity (bool s);
void set_selection (boost::weak_ptr<Content>);
void set_selection (ContentList cl);
void film_changed (Film::Property p);
void film_content_changed (int p);
void first_shown ();
wxWindow* window () const {
return _splitter;
}
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 ();
boost::weak_ptr<FilmViewer> film_viewer () const {
return _film_viewer;
}
boost::signals2::signal<void (void)> SelectionChanged;
private:
void item_selected ();
void item_deselected ();
void item_deselected_idle ();
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 add_files (std::list<boost::filesystem::path>);
std::list<ContentSubPanel *> panels () const;
wxSplitterWindow* _splitter;
wxPanel* _top_panel;
wxNotebook* _notebook;
wxListCtrl* _content;
wxButton* _add_file;
wxButton* _add_folder;
wxButton* _add_dcp;
wxButton* _remove;
wxButton* _earlier;
wxButton* _later;
wxButton* _timeline;
VideoPanel* _video_panel;
AudioPanel* _audio_panel;
TextPanel* _text_panel[TEXT_COUNT];
TimingPanel* _timing_panel;
ContentMenu* _menu;
TimelineDialog* _timeline_dialog;
wxNotebook* _parent;
wxWindow* _last_selected_tab;
boost::shared_ptr<Film> _film;
boost::weak_ptr<FilmViewer> _film_viewer;
bool _generally_sensitive;
bool _ignore_deselect;
bool _no_check_selection;
};
|