Move audio and subtitle settings out to a notebook.
[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
33 class Film;
34
35 /** @class FilmEditor
36  *  @brief A wx widget to edit a film's metadata, and perform various functions.
37  */
38 class FilmEditor : public wxPanel
39 {
40 public:
41         FilmEditor (boost::shared_ptr<Film>, wxWindow *);
42
43         void set_film (boost::shared_ptr<Film>);
44         void setup_visibility ();
45
46         boost::signals2::signal<void (std::string)> FileChanged;
47
48 private:
49         void make_general_panel ();
50         void make_audio_panel ();
51         void make_subtitle_panel ();
52         void connect_to_widgets ();
53         
54         /* Handle changes to the view */
55         void name_changed (wxCommandEvent &);
56         void use_dci_name_toggled (wxCommandEvent &);
57         void edit_dci_button_clicked (wxCommandEvent &);
58         void left_crop_changed (wxCommandEvent &);
59         void right_crop_changed (wxCommandEvent &);
60         void top_crop_changed (wxCommandEvent &);
61         void bottom_crop_changed (wxCommandEvent &);
62         void content_changed (wxCommandEvent &);
63         void format_changed (wxCommandEvent &);
64         void dcp_trim_start_changed (wxCommandEvent &);
65         void dcp_trim_end_changed (wxCommandEvent &);
66         void dcp_content_type_changed (wxCommandEvent &);
67         void dcp_ab_toggled (wxCommandEvent &);
68         void scaler_changed (wxCommandEvent &);
69         void audio_gain_changed (wxCommandEvent &);
70         void audio_gain_calculate_button_clicked (wxCommandEvent &);
71         void audio_delay_changed (wxCommandEvent &);
72         void with_subtitles_toggled (wxCommandEvent &);
73         void subtitle_offset_changed (wxCommandEvent &);
74         void subtitle_scale_changed (wxCommandEvent &);
75         void still_duration_changed (wxCommandEvent &);
76         void audio_stream_changed (wxCommandEvent &);
77         void subtitle_stream_changed (wxCommandEvent &);
78
79         /* Handle changes to the model */
80         void film_changed (Film::Property);
81
82         /* Button clicks */
83         void edit_filters_clicked (wxCommandEvent &);
84         void change_dcp_range_clicked (wxCommandEvent &);
85
86         void set_things_sensitive (bool);
87         void setup_formats ();
88         void setup_subtitle_control_sensitivity ();
89         void setup_streams ();
90         void setup_audio_details ();
91         
92         wxControl* video_control (wxControl *);
93         wxControl* still_control (wxControl *);
94
95         void active_jobs_changed (bool);
96
97         wxNotebook* _notebook;
98         wxPanel* _general_panel;
99         wxSizer* _general_sizer;
100         wxPanel* _audio_panel;
101         wxSizer* _audio_sizer;
102         wxPanel* _subtitle_panel;
103         wxSizer* _subtitle_sizer;
104
105         /** The film we are editing */
106         boost::shared_ptr<Film> _film;
107         /** The Film's name */
108         wxTextCtrl* _name;
109         wxStaticText* _dcp_name;
110         wxCheckBox* _use_dci_name;
111         wxButton* _edit_dci_button;
112         /** The Film's format */
113         wxComboBox* _format;
114         /** The Film's content file */
115         wxFilePickerCtrl* _content;
116         /** The Film's left crop */
117         wxSpinCtrl* _left_crop;
118         /** The Film's right crop */
119         wxSpinCtrl* _right_crop;
120         /** The Film's top crop */
121         wxSpinCtrl* _top_crop;
122         /** The Film's bottom crop */
123         wxSpinCtrl* _bottom_crop;
124         /** Currently-applied filters */
125         wxStaticText* _filters;
126         /** Button to open the filters dialogue */
127         wxButton* _filters_button;
128         /** The Film's scaler */
129         wxComboBox* _scaler;
130         wxComboBox* _audio_stream;
131         /** The Film's audio gain */
132         wxSpinCtrl* _audio_gain;
133         /** A button to open the gain calculation dialogue */
134         wxButton* _audio_gain_calculate_button;
135         /** The Film's audio delay */
136         wxSpinCtrl* _audio_delay;
137         wxCheckBox* _with_subtitles;
138         wxComboBox* _subtitle_stream;
139         wxSpinCtrl* _subtitle_offset;
140         wxSpinCtrl* _subtitle_scale;
141         /** The Film's DCP content type */
142         wxComboBox* _dcp_content_type;
143         /** The Film's frames per second */
144         wxStaticText* _frames_per_second;
145         /** The Film's original size */
146         wxStaticText* _original_size;
147         /** The Film's length */
148         wxStaticText* _length;
149         /** The Film's audio details */
150         wxStaticText* _audio;
151         /** The Film's duration for still sources */
152         wxSpinCtrl* _still_duration;
153
154         wxSpinCtrl* _dcp_trim_start;
155         wxSpinCtrl* _dcp_trim_end;
156         /** Selector to generate an A/B comparison DCP */
157         wxCheckBox* _dcp_ab;
158
159         std::list<wxControl*> _video_controls;
160         std::list<wxControl*> _still_controls;
161
162         std::vector<Format const *> _formats;
163
164         bool _generally_sensitive;
165 };