Merge branch '1.0' of /home/carl/git/dvdomatic into 1.0
[dcpomatic.git] / src / wx / film_editor.h
1 /*
2     Copyright (C) 2012 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
31 class wxNotebook;
32 class wxListCtrl;
33 class wxListEvent;
34 class Film;
35 class AudioDialog;
36 class AudioMappingView;
37
38 /** @class FilmEditor
39  *  @brief A wx widget to edit a film's metadata, and perform various functions.
40  */
41 class FilmEditor : public wxPanel
42 {
43 public:
44         FilmEditor (boost::shared_ptr<Film>, wxWindow *);
45
46         void set_film (boost::shared_ptr<Film>);
47
48         boost::signals2::signal<void (std::string)> FileChanged;
49
50 private:
51         void make_film_panel ();
52         void make_content_panel ();
53         void make_video_panel ();
54         void make_audio_panel ();
55         void make_subtitle_panel ();
56         void connect_to_widgets ();
57         
58         /* Handle changes to the view */
59         void name_changed (wxCommandEvent &);
60         void use_dci_name_toggled (wxCommandEvent &);
61         void edit_dci_button_clicked (wxCommandEvent &);
62         void left_crop_changed (wxCommandEvent &);
63         void right_crop_changed (wxCommandEvent &);
64         void top_crop_changed (wxCommandEvent &);
65         void bottom_crop_changed (wxCommandEvent &);
66         void trust_content_headers_changed (wxCommandEvent &);
67         void content_selection_changed (wxListEvent &);
68         void content_activated (wxListEvent &);
69         void content_add_clicked (wxCommandEvent &);
70         void content_remove_clicked (wxCommandEvent &);
71         void content_edit_clicked (wxCommandEvent &);
72         void content_earlier_clicked (wxCommandEvent &);
73         void content_later_clicked (wxCommandEvent &);
74         void imagemagick_video_length_changed (wxCommandEvent &);
75         void format_changed (wxCommandEvent &);
76         void trim_start_changed (wxCommandEvent &);
77         void trim_end_changed (wxCommandEvent &);
78         void trim_type_changed (wxCommandEvent &);
79         void dcp_content_type_changed (wxCommandEvent &);
80         void ab_toggled (wxCommandEvent &);
81         void scaler_changed (wxCommandEvent &);
82         void audio_gain_changed (wxCommandEvent &);
83         void audio_gain_calculate_button_clicked (wxCommandEvent &);
84         void show_audio_clicked (wxCommandEvent &);
85         void audio_delay_changed (wxCommandEvent &);
86         void with_subtitles_toggled (wxCommandEvent &);
87         void subtitle_offset_changed (wxCommandEvent &);
88         void subtitle_scale_changed (wxCommandEvent &);
89         void colour_lut_changed (wxCommandEvent &);
90         void j2k_bandwidth_changed (wxCommandEvent &);
91         void ffmpeg_audio_stream_changed (wxCommandEvent &);
92         void ffmpeg_subtitle_stream_changed (wxCommandEvent &);
93         void dcp_frame_rate_changed (wxCommandEvent &);
94         void best_dcp_frame_rate_clicked (wxCommandEvent &);
95         void edit_filters_clicked (wxCommandEvent &);
96         void loop_content_toggled (wxCommandEvent &);
97         void loop_count_changed (wxCommandEvent &);
98
99         /* Handle changes to the model */
100         void film_changed (Film::Property);
101         void film_content_changed (boost::weak_ptr<Content>, int);
102
103         void set_things_sensitive (bool);
104         void setup_formats ();
105         void setup_subtitle_control_sensitivity ();
106         void setup_streams ();
107         void setup_audio_details ();
108         void setup_dcp_name ();
109         void setup_show_audio_sensitivity ();
110         void setup_scaling_description ();
111         void setup_notebook_size ();
112         void setup_frame_rate_description ();
113         void setup_content ();
114         void setup_format ();
115         void setup_length ();
116         void setup_content_information ();
117         void setup_content_button_sensitivity ();
118         void setup_loop_sensitivity ();
119         
120         void active_jobs_changed (bool);
121         boost::shared_ptr<Content> selected_content ();
122         void edit_content (boost::shared_ptr<Content>);
123
124         wxNotebook* _notebook;
125         wxPanel* _film_panel;
126         wxSizer* _film_sizer;
127         wxPanel* _content_panel;
128         wxSizer* _content_sizer;
129         wxPanel* _video_panel;
130         wxSizer* _video_sizer;
131         wxPanel* _audio_panel;
132         wxSizer* _audio_sizer;
133         wxPanel* _subtitle_panel;
134         wxSizer* _subtitle_sizer;
135
136         /** The film we are editing */
137         boost::shared_ptr<Film> _film;
138         /** The Film's name */
139         wxTextCtrl* _name;
140         wxStaticText* _dcp_name;
141         wxCheckBox* _use_dci_name;
142         wxListCtrl* _content;
143         wxButton* _content_add;
144         wxButton* _content_remove;
145         wxButton* _content_edit;
146         wxButton* _content_earlier;
147         wxButton* _content_later;
148         wxTextCtrl* _content_information;
149         wxCheckBox* _loop_content;
150         wxSpinCtrl* _loop_count;
151         wxButton* _edit_dci_button;
152         wxChoice* _format;
153         wxStaticText* _format_description;
154         wxCheckBox* _trust_content_headers;
155         wxStaticText* _scaling_description;
156         wxSpinCtrl* _left_crop;
157         wxSpinCtrl* _right_crop;
158         wxSpinCtrl* _top_crop;
159         wxSpinCtrl* _bottom_crop;
160         wxStaticText* _filters;
161         wxButton* _filters_button;
162         wxChoice* _scaler;
163         wxSpinCtrl* _audio_gain;
164         wxButton* _audio_gain_calculate_button;
165         wxButton* _show_audio;
166         wxSpinCtrl* _audio_delay;
167         wxChoice* _ffmpeg_audio_stream;
168         AudioMappingView* _audio_mapping;
169         wxCheckBox* _with_subtitles;
170         wxChoice* _ffmpeg_subtitle_stream;
171         wxSpinCtrl* _subtitle_offset;
172         wxSpinCtrl* _subtitle_scale;
173         wxChoice* _colour_lut;
174         wxSpinCtrl* _j2k_bandwidth;
175         wxChoice* _dcp_content_type;
176         wxChoice* _dcp_frame_rate;
177         wxButton* _best_dcp_frame_rate;
178         wxStaticText* _frame_rate_description;
179         wxStaticText* _length;
180         /** The Film's audio details */
181         wxStaticText* _audio;
182
183         wxSpinCtrl* _trim_start;
184         wxSpinCtrl* _trim_end;
185         wxChoice* _trim_type;
186         /** Selector to generate an A/B comparison DCP */
187         wxCheckBox* _ab;
188
189         std::vector<Format const *> _formats;
190
191         bool _generally_sensitive;
192         AudioDialog* _audio_dialog;
193 };