X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Fwx%2Fself_dkdm_dialog.h;h=509280b5cc482e1d6e3efa62cdbcd09f3c03f30e;hp=5f26c8dce21fe419b947e26829882e89f079650d;hb=8f12e84009d7c2685bb2eeb32665876463d4e6e5;hpb=3828baf56467224f5d44049bf1e7a7ed11f43a05 diff --git a/src/wx/self_dkdm_dialog.h b/src/wx/self_dkdm_dialog.h index 5f26c8dce..509280b5c 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,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 };