summaryrefslogtreecommitdiff
path: root/src/wx/kdm_dialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wx/kdm_dialog.h')
-rw-r--r--src/wx/kdm_dialog.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/wx/kdm_dialog.h b/src/wx/kdm_dialog.h
index ec4a50ac3..90354a2d1 100644
--- a/src/wx/kdm_dialog.h
+++ b/src/wx/kdm_dialog.h
@@ -36,12 +36,13 @@ class Screen;
class KDMDialog : public wxDialog
{
public:
- KDMDialog (wxWindow *);
+ KDMDialog (wxWindow *, boost::shared_ptr<const Film>);
std::list<boost::shared_ptr<Screen> > screens () const;
boost::posix_time::ptime from () const;
boost::posix_time::ptime until () const;
- std::string directory () const;
+ boost::filesystem::path dcp () const;
+ boost::filesystem::path directory () const;
bool write_to () const;
private:
@@ -70,6 +71,7 @@ private:
wxDatePickerCtrl* _until_date;
wxTimePickerCtrl* _from_time;
wxTimePickerCtrl* _until_time;
+ wxListCtrl* _dcps;
wxRadioButton* _write_to;
#ifdef DCPOMATIC_USE_OWN_DIR_PICKER
DirPickerCtrl* _folder;