summaryrefslogtreecommitdiff
path: root/src/wx/self_dkdm_dialog.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-06-07 10:34:25 +0100
committerCarl Hetherington <cth@carlh.net>2016-06-07 10:34:25 +0100
commitbe00f12bdb5d74677ae55c7919fae9339e882090 (patch)
tree87e9336ab474f3305623a4b1936607bf5cb2cdcf /src/wx/self_dkdm_dialog.h
parentb82eb916dd469ee7c86ebea7a0bf4892d4a1258e (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.h12
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
};