From 9394ce6d3b840ec0af141d6435f394a5ad85c2ed Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 19 Nov 2015 15:57:42 +0000 Subject: Merge. --- src/wx/self_dkdm_dialog.h | 49 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 src/wx/self_dkdm_dialog.h (limited to 'src/wx/self_dkdm_dialog.h') diff --git a/src/wx/self_dkdm_dialog.h b/src/wx/self_dkdm_dialog.h new file mode 100644 index 000000000..edf64132d --- /dev/null +++ b/src/wx/self_dkdm_dialog.h @@ -0,0 +1,49 @@ +/* + Copyright (C) 2012 Carl Hetherington + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +*/ + +#include "wx_util.h" +#include +#include +#include +#include +#include + +class Film; +class KDMCPLPanel; +class DirPickerCtrl; +class wxDirPickerCtrl; + +class SelfDKDMDialog : public wxDialog +{ +public: + SelfDKDMDialog (wxWindow *, boost::shared_ptr); + + boost::filesystem::path cpl () const; + boost::filesystem::path directory () const; + +private: + void setup_sensitivity (); + + KDMCPLPanel* _cpl; +#ifdef DCPOMATIC_USE_OWN_PICKER + DirPickerCtrl* _folder; +#else + wxDirPickerCtrl* _folder; +#endif +}; -- cgit v1.2.3