Dolby is apparently recreating all their certificates (as they will soon expire)...
[dcpomatic.git] / src / wx / content_advanced_dialog.h
index 3c2454449b742c8addeda51f7b998544a35a5a04..517ad04e538426a73eac4068ef98a0b1b495e028 100644 (file)
@@ -19,6 +19,7 @@
 */
 
 
+#include <dcp/language_tag.h>
 #include <dcp/warnings.h>
 LIBDCP_DISABLE_WARNINGS
 #include <wx/wx.h>
@@ -28,6 +29,7 @@ LIBDCP_ENABLE_WARNINGS
 #include <vector>
 
 
+class CheckBox;
 class Content;
 class Filter;
 class LanguageTagWidget;
@@ -45,6 +47,7 @@ public:
        }
 
        boost::optional<double> video_frame_rate() const;
+       boost::optional<dcp::LanguageTag> burnt_subtitle_language() const;
 
 private:
        void edit_filters ();
@@ -54,7 +57,6 @@ private:
        void video_frame_rate_changed ();
        void setup_sensitivity ();
        void burnt_subtitle_changed ();
-       void burnt_subtitle_language_changed ();
 
        std::shared_ptr<Content> _content;
        bool _filters_allowed = false;
@@ -64,8 +66,8 @@ private:
        wxButton* _filters_button;
        wxTextCtrl* _video_frame_rate;
        wxButton* _set_video_frame_rate;
-       wxCheckBox* _burnt_subtitle;
+       CheckBox* _burnt_subtitle;
        LanguageTagWidget* _burnt_subtitle_language;
-       wxCheckBox* _ignore_video;
+       CheckBox* _ignore_video;
 };