Merge branch '1.0' into 1.0-multiple-selection
[dcpomatic.git] / src / wx / film_editor.h
1 /*
2     Copyright (C) 2012-2013 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19  
20 /** @file src/film_editor.h
21  *  @brief A wx widget to edit a film's metadata, and perform various functions.
22  */
23
24 #include <wx/wx.h>
25 #include <wx/spinctrl.h>
26 #include <wx/filepicker.h>
27 #include <wx/collpane.h>
28 #include <boost/signals2.hpp>
29 #include "lib/film.h"
30 #include "content_menu.h"
31
32 class wxNotebook;
33 class wxListCtrl;
34 class wxListEvent;
35 class Film;
36 class TimelineDialog;
37 class Ratio;
38 class Timecode;
39 class FilmEditorPanel;
40 class SubtitleContent;
41
42 /** @class FilmEditor
43  *  @brief A wx widget to edit a film's metadata, and perform various functions.
44  */
45 class FilmEditor : public wxPanel
46 {
47 public:
48         FilmEditor (boost::shared_ptr<Film>, wxWindow *);
49
50         void set_film (boost::shared_ptr<Film>);
51         void set_selection (boost::weak_ptr<Content>);
52
53         boost::signals2::signal<void (boost::filesystem::path)> FileChanged;
54
55         /* Stuff for panels */
56         
57         wxNotebook* content_notebook () const {
58                 return _content_notebook;
59         }
60
61         boost::shared_ptr<Film> film () const {
62                 return _film;
63         }
64
65         ContentList selected_content ();
66         VideoContentList selected_video_content ();
67         AudioContentList selected_audio_content ();
68         SubtitleContentList selected_subtitle_content ();
69         
70 private:
71         void make_dcp_panel ();
72         void make_content_panel ();
73         void connect_to_widgets ();
74         
75         /* Handle changes to the view */
76         void name_changed ();
77         void use_dci_name_toggled ();
78         void edit_dci_button_clicked ();
79         void content_selection_changed ();
80         void content_add_file_clicked ();
81         void content_add_folder_clicked ();
82         void content_remove_clicked ();
83         void content_earlier_clicked ();
84         void content_later_clicked ();
85         void container_changed ();
86         void dcp_content_type_changed ();
87         void scaler_changed ();
88         void j2k_bandwidth_changed ();
89         void frame_rate_changed ();
90         void best_frame_rate_clicked ();
91         void content_timeline_clicked ();
92         void audio_channels_changed ();
93         void resolution_changed ();
94         void sequence_video_changed ();
95         void content_right_click (wxListEvent &);
96         void three_d_changed ();
97         void standard_changed ();
98         void encrypted_toggled ();
99
100         /* Handle changes to the model */
101         void film_changed (Film::Property);
102         void film_content_changed (boost::weak_ptr<Content>, int);
103
104         void set_general_sensitivity (bool);
105         void setup_dcp_name ();
106         void setup_content ();
107         void setup_container ();
108         void setup_content_sensitivity ();
109         
110         void active_jobs_changed (bool);
111
112         FilmEditorPanel* _video_panel;
113         FilmEditorPanel* _audio_panel;
114         FilmEditorPanel* _subtitle_panel;
115         FilmEditorPanel* _timing_panel;
116         std::list<FilmEditorPanel *> _panels;
117
118         wxNotebook* _main_notebook;
119         wxNotebook* _content_notebook;
120         wxPanel* _dcp_panel;
121         wxSizer* _dcp_sizer;
122         wxPanel* _content_panel;
123         wxSizer* _content_sizer;
124
125         /** The film we are editing */
126         boost::shared_ptr<Film> _film;
127         wxTextCtrl* _name;
128         wxStaticText* _dcp_name;
129         wxCheckBox* _use_dci_name;
130         wxChoice* _container;
131         wxListCtrl* _content;
132         wxButton* _content_add_file;
133         wxButton* _content_add_folder;
134         wxButton* _content_remove;
135         wxButton* _content_earlier;
136         wxButton* _content_later;
137         wxButton* _content_timeline;
138         wxCheckBox* _sequence_video;
139         wxButton* _edit_dci_button;
140         wxChoice* _scaler;
141         wxSpinCtrl* _j2k_bandwidth;
142         wxChoice* _dcp_content_type;
143         wxChoice* _frame_rate;
144         wxSpinCtrl* _audio_channels;
145         wxButton* _best_frame_rate;
146         wxCheckBox* _three_d;
147         wxChoice* _resolution;
148         wxChoice* _standard;
149         wxCheckBox* _encrypted;
150
151         ContentMenu _menu;
152
153         std::vector<Ratio const *> _ratios;
154
155         bool _generally_sensitive;
156         TimelineDialog* _timeline_dialog;
157 };