Move y_pos to TimelineView.
[dcpomatic.git] / src / wx / self_dkdm_dialog.h
index 5f26c8dce21fe419b947e26829882e89f079650d..2bd9ecad05c3bed98b7ad51df1137999fb102be3 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
+
 #include "wx_util.h"
 #include <dcp/types.h>
+#include <dcp/warnings.h>
+LIBDCP_DISABLE_WARNINGS
 #include <wx/wx.h>
-#include <boost/shared_ptr.hpp>
+LIBDCP_ENABLE_WARNINGS
 #include <boost/date_time/posix_time/posix_time.hpp>
 #include <map>
 
+
 class Film;
 class KDMCPLPanel;
+class wxDirPickerCtrl;
+class DirPickerCtrl;
+
 
 class SelfDKDMDialog : public wxDialog
 {
 public:
-       SelfDKDMDialog (wxWindow *, boost::shared_ptr<const Film>);
+       SelfDKDMDialog (wxWindow *, std::shared_ptr<const Film>);
 
        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
 };