X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fcontent_advanced_dialog.h;h=1dd2b472d917a8e715bdd80a0ffeee95faf2232e;hb=6d686ea45f5cd01a0d11f92a903ac77779ad8562;hp=6eaaa2e2da0dc7efc2fd5e83b9b09bf79681ff25;hpb=dd9be86db6cde0afa5da0d1d1ac43b42e05dca26;p=dcpomatic.git diff --git a/src/wx/content_advanced_dialog.h b/src/wx/content_advanced_dialog.h index 6eaaa2e2d..1dd2b472d 100644 --- a/src/wx/content_advanced_dialog.h +++ b/src/wx/content_advanced_dialog.h @@ -19,16 +19,17 @@ */ -#include "lib/warnings.h" -DCPOMATIC_DISABLE_WARNINGS +#include +LIBDCP_DISABLE_WARNINGS #include -DCPOMATIC_ENABLE_WARNINGS +LIBDCP_ENABLE_WARNINGS #include #include class Content; class Filter; +class LanguageTagWidget; class ContentAdvancedDialog : public wxDialog @@ -43,6 +44,9 @@ private: void setup_filters (); void set_video_frame_rate (); void video_frame_rate_changed (); + void setup_sensitivity (); + void burnt_subtitle_changed (); + void burnt_subtitle_language_changed (); std::shared_ptr _content; @@ -50,5 +54,7 @@ private: wxButton* _filters_button; wxTextCtrl* _video_frame_rate; wxButton* _set_video_frame_rate; + wxCheckBox* _burnt_subtitle; + LanguageTagWidget* _burnt_subtitle_language; };