93a90ba618180bbe7532d350444ab3fca928f17a
[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 Content;
33 class Filter;
34 class LanguageTagWidget;
35
36
37 class ContentAdvancedDialog : public wxDialog
38 {
39 public:
40         ContentAdvancedDialog (wxWindow* parent, std::shared_ptr<Content> content);
41
42         bool ignore_video() const;
43
44         std::vector<Filter const*> filters() {
45                 return _filters_list;
46         }
47
48         boost::optional<double> video_frame_rate() const;
49         boost::optional<dcp::LanguageTag> burnt_subtitle_language() const;
50
51 private:
52         void edit_filters ();
53         void filters_changed (std::vector<Filter const *> filters);
54         void setup_filters ();
55         void set_video_frame_rate ();
56         void video_frame_rate_changed ();
57         void setup_sensitivity ();
58         void burnt_subtitle_changed ();
59
60         std::shared_ptr<Content> _content;
61         bool _filters_allowed = false;
62         std::vector<Filter const*> _filters_list;
63
64         wxStaticText* _filters;
65         wxButton* _filters_button;
66         wxTextCtrl* _video_frame_rate;
67         wxButton* _set_video_frame_rate;
68         wxCheckBox* _burnt_subtitle;
69         LanguageTagWidget* _burnt_subtitle_language;
70         wxCheckBox* _ignore_video;
71 };
72