X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Ffilm_name_location_dialog.h;h=a659ab22f2f925ab351fc28af7f9dd72cfa311a2;hb=4b76291eb0328840de4c5938a1be6340e5dea0fe;hp=f2f0826803c3ec98ec1deddc13ea4252f1b2eb07;hpb=2da4caba7871455c097c0ed940dd6f2332dbda5d;p=dcpomatic.git diff --git a/src/wx/film_name_location_dialog.h b/src/wx/film_name_location_dialog.h index f2f082680..a659ab22f 100644 --- a/src/wx/film_name_location_dialog.h +++ b/src/wx/film_name_location_dialog.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2014 Carl Hetherington + Copyright (C) 2012-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,21 +18,23 @@ */ -#include "wx_util.h" + #include "table_dialog.h" -#include "lib/warnings.h" -DCPOMATIC_DISABLE_WARNINGS +#include "wx_util.h" +#include +LIBDCP_DISABLE_WARNINGS #include #include -DCPOMATIC_ENABLE_WARNINGS +LIBDCP_ENABLE_WARNINGS + class DirPickerCtrl; + class FilmNameLocationDialog : public TableDialog { public: FilmNameLocationDialog (wxWindow *, wxString title, bool offer_templates); - ~FilmNameLocationDialog (); boost::filesystem::path path () const; bool check_path (); @@ -40,6 +42,8 @@ public: private: void use_template_clicked (); + void setup_sensitivity (); + void folder_changed (); wxTextCtrl* _name; #ifdef DCPOMATIC_USE_OWN_PICKER @@ -51,3 +55,4 @@ private: wxChoice* _template_name; static boost::optional _directory; }; +