X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Ffilm_name_location_dialog.h;h=29fcd338495e3fc832bf845148cd49630e37d73a;hb=23aa3071850761144798112a5aaea61304de8586;hp=cfa29670154db5e4751a23697ce10231b7c74eaa;hpb=0f42e807a707249cd1a60fa6e476cb47a4147c5a;p=dcpomatic.git diff --git a/src/wx/film_name_location_dialog.h b/src/wx/film_name_location_dialog.h index cfa296701..29fcd3384 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,18 +18,23 @@ */ + +#include "table_dialog.h" +#include "wx_util.h" +#include "lib/warnings.h" +DCPOMATIC_DISABLE_WARNINGS #include #include -#include "wx_util.h" -#include "table_dialog.h" +DCPOMATIC_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 (); @@ -37,6 +42,8 @@ public: private: void use_template_clicked (); + void setup_sensitivity (); + void folder_changed (); wxTextCtrl* _name; #ifdef DCPOMATIC_USE_OWN_PICKER @@ -48,3 +55,4 @@ private: wxChoice* _template_name; static boost::optional _directory; }; +