diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-06-07 10:34:25 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-06-07 10:34:25 +0100 |
| commit | be00f12bdb5d74677ae55c7919fae9339e882090 (patch) | |
| tree | 87e9336ab474f3305623a4b1936607bf5cb2cdcf /src/wx/self_dkdm_dialog.h | |
| parent | b82eb916dd469ee7c86ebea7a0bf4892d4a1258e (diff) | |
Re-add option to save DKDMs to a file.
Diffstat (limited to 'src/wx/self_dkdm_dialog.h')
| -rw-r--r-- | src/wx/self_dkdm_dialog.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/wx/self_dkdm_dialog.h b/src/wx/self_dkdm_dialog.h index 5f26c8dce..ca25a775d 100644 --- a/src/wx/self_dkdm_dialog.h +++ b/src/wx/self_dkdm_dialog.h @@ -27,6 +27,8 @@ class Film; class KDMCPLPanel; +class wxDirPickerCtrl; +class DirPickerCtrl; class SelfDKDMDialog : public wxDialog { @@ -35,8 +37,18 @@ public: boost::filesystem::path cpl () const; + bool internal () const; + boost::filesystem::path directory () const; + private: void setup_sensitivity (); KDMCPLPanel* _cpl; + wxRadioButton* _internal; + wxRadioButton* _write_to; +#ifdef DCPOMATIC_USE_OWN_PICKER + DirPickerCtrl* _folder; +#else + wxDirPickerCtrl* _folder; +#endif }; |
