Move _state_timer into VideoView.
[dcpomatic.git] / src / wx / self_dkdm_dialog.h
index 5f26c8dce21fe419b947e26829882e89f079650d..509280b5cc482e1d6e3efa62cdbcd09f3c03f30e 100644 (file)
@@ -27,6 +27,8 @@
 
 class Film;
 class KDMCPLPanel;
+class wxDirPickerCtrl;
+class DirPickerCtrl;
 
 class SelfDKDMDialog : public wxDialog
 {
@@ -35,8 +37,19 @@ public:
 
        boost::filesystem::path cpl () const;
 
+       bool internal () const;
+       boost::filesystem::path directory () const;
+
 private:
        void setup_sensitivity ();
+       void dkdm_write_type_changed ();
 
        KDMCPLPanel* _cpl;
+       wxRadioButton* _internal;
+       wxRadioButton* _write_to;
+#ifdef DCPOMATIC_USE_OWN_PICKER
+       DirPickerCtrl* _folder;
+#else
+       wxDirPickerCtrl* _folder;
+#endif
 };