X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Fwx%2Finterop_metadata_dialog.h;h=189e28e2ba08406659a17559fdcd58bfcaeb9ce7;hp=43d028eabb923cc836a524d540effbfd541b3e14;hb=e519feaca11005d330e7b8403b948d4ad9cc3ae8;hpb=d97029163865e212dc3d7b3c57c16459933a11f6 diff --git a/src/wx/interop_metadata_dialog.h b/src/wx/interop_metadata_dialog.h index 43d028eab..189e28e2b 100644 --- a/src/wx/interop_metadata_dialog.h +++ b/src/wx/interop_metadata_dialog.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2019 Carl Hetherington + Copyright (C) 2020 Carl Hetherington This file is part of DCP-o-matic. @@ -19,6 +19,7 @@ */ #include "editable_list.h" +#include #include #include #include @@ -26,8 +27,10 @@ #include class Film; +class LanguageTagWidget; class RatingDialog; + class InteropMetadataDialog : public wxDialog { public: @@ -37,8 +40,12 @@ private: std::vector ratings () const; void set_ratings (std::vector r); void content_version_changed (); + void setup_sensitivity (); + void subtitle_language_changed (dcp::LanguageTag tag); boost::weak_ptr _film; + wxCheckBox* _enable_subtitle_language; + LanguageTagWidget* _subtitle_language; EditableList* _ratings; wxTextCtrl* _content_version; };