Supporters update.
[dcpomatic.git] / src / wx / content_advanced_dialog.h
1 /*
2     Copyright (C) 2020 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
22 #include <dcp/language_tag.h>
23 #include <dcp/warnings.h>
24 LIBDCP_DISABLE_WARNINGS
25 #include <wx/wx.h>
26 LIBDCP_ENABLE_WARNINGS
27 #include <boost/optional.hpp>
28 #include <memory>
29 #include <vector>
30
31
32 class CheckBox;
33 class Content;
34 class Filter;
35 class LanguageTagWidget;
36
37
38 class ContentAdvancedDialog : public wxDialog
39 {
40 public:
41         ContentAdvancedDialog (wxWindow* parent, std::shared_ptr<Content> content);
42
43         bool ignore_video() const;
44
45         std::vector<Filter const*> filters() {
46                 return _filters_list;
47         }
48
49         boost::optional<double> video_frame_rate() const;
50         boost::optional<dcp::LanguageTag> burnt_subtitle_language() const;
51
52 private:
53         void edit_filters ();
54         void filters_changed (std::vector<Filter const *> filters);
55         void setup_filters ();
56         void set_video_frame_rate ();
57         void video_frame_rate_changed ();
58         void setup_sensitivity ();
59         void burnt_subtitle_changed ();
60
61         std::shared_ptr<Content> _content;
62         bool _filters_allowed = false;
63         std::vector<Filter const*> _filters_list;
64
65         wxStaticText* _filters;
66         wxButton* _filters_button;
67         wxTextCtrl* _video_frame_rate;
68         wxButton* _set_video_frame_rate;
69         CheckBox* _burnt_subtitle;
70         LanguageTagWidget* _burnt_subtitle_language;
71         CheckBox* _ignore_video;
72 };
73