summaryrefslogtreecommitdiff
path: root/src/wx/metadata_dialog.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-04-02 23:45:19 +0200
committerCarl Hetherington <cth@carlh.net>2021-04-04 20:48:35 +0200
commitea51ac3483161343b7aefabe54420c6cb431c0fe (patch)
treed795c52c13989af628a28abad11d91c2d14f2405 /src/wx/metadata_dialog.h
parent48bfa4b2040d2bacd6befdab6c12b2ee3e9be5a1 (diff)
Use studio and facility from Interop/SMPTE metadata rather than ISDCF.
Diffstat (limited to 'src/wx/metadata_dialog.h')
-rw-r--r--src/wx/metadata_dialog.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/wx/metadata_dialog.h b/src/wx/metadata_dialog.h
index 8483d8615..50533fc0f 100644
--- a/src/wx/metadata_dialog.h
+++ b/src/wx/metadata_dialog.h
@@ -44,13 +44,17 @@ public:
protected:
virtual void setup_standard (wxPanel*, wxSizer*);
- virtual void setup_advanced (wxPanel*, wxSizer*) {}
+ virtual void setup_advanced (wxPanel*, wxSizer*);
virtual void film_changed (ChangeType type, Film::Property property);
virtual void setup_sensitivity ();
private:
void edit_release_territory ();
void enable_release_territory_changed ();
+ void facility_changed ();
+ void enable_facility_changed ();
+ void studio_changed ();
+ void enable_studio_changed ();
wxCheckBox* _enable_release_territory;
/** The current release territory displayed in the UI; since we can't easily convert
@@ -60,6 +64,10 @@ private:
boost::optional<dcp::LanguageTag::RegionSubtag> _release_territory;
wxStaticText* _release_territory_text;
Button* _edit_release_territory;
+ wxCheckBox* _enable_facility;
+ wxTextCtrl* _facility;
+ wxCheckBox* _enable_studio;
+ wxTextCtrl* _studio;
boost::signals2::scoped_connection _film_changed_connection;
};