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