std::shared_ptr
[dcpomatic.git] / src / wx / subtitle_appearance_dialog.h
1 /*
2     Copyright (C) 2015-2018 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #include "timecode.h"
22 #include "lib/rgba.h"
23 #include "lib/warnings.h"
24 DCPOMATIC_DISABLE_WARNINGS
25 #include <wx/wx.h>
26 DCPOMATIC_ENABLE_WARNINGS
27 #include <boost/signals2.hpp>
28
29 class wxRadioButton;
30 class wxColourPickerCtrl;
31 class wxGridBagSizer;
32 class Content;
33 class RGBAColourPicker;
34 class FFmpegSubtitleStream;
35 class wxCheckBox;
36 class wxWidget;
37 class Film;
38 class Job;
39
40 class SubtitleAppearanceDialog : public wxDialog
41 {
42 public:
43         SubtitleAppearanceDialog (wxWindow* parent, std::shared_ptr<const Film> film, std::shared_ptr<Content> content, std::shared_ptr<TextContent> caption);
44
45         void apply ();
46
47 private:
48         void setup_sensitivity ();
49         void restore ();
50         wxCheckBox* set_to (wxWindow* w, int& r);
51         void content_change (ChangeType type);
52         void active_jobs_changed (boost::optional<std::string> last);
53         void add_colours ();
54
55         std::weak_ptr<const Film> _film;
56         wxCheckBox* _force_colour;
57         wxColourPickerCtrl* _colour;
58         wxCheckBox* _force_effect;
59         wxChoice* _effect;
60         wxCheckBox* _force_effect_colour;
61         wxColourPickerCtrl* _effect_colour;
62         wxCheckBox* _force_fade_in;
63         Timecode<dcpomatic::ContentTime>* _fade_in;
64         wxCheckBox* _force_fade_out;
65         Timecode<dcpomatic::ContentTime>* _fade_out;
66         wxSpinCtrl* _outline_width;
67         wxGridBagSizer* _table;
68         std::map<RGBA, RGBAColourPicker*> _pickers;
69
70         wxBoxSizer* _overall_sizer;
71         wxScrolled<wxPanel>* _colours_panel;
72         wxStaticText* _finding;
73         wxFlexGridSizer* _colour_table;
74
75         std::shared_ptr<Content> _content;
76         std::shared_ptr<TextContent> _caption;
77         std::shared_ptr<FFmpegSubtitleStream> _stream;
78
79         boost::signals2::scoped_connection _content_connection;
80         boost::signals2::scoped_connection _job_manager_connection;
81
82         std::weak_ptr<Job> _job;
83
84         static int const NONE;
85         static int const OUTLINE;
86         static int const SHADOW;
87 };