summaryrefslogtreecommitdiff
path: root/src/wx/kdm_dialog.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-10-16 22:52:55 +0100
committerCarl Hetherington <cth@carlh.net>2013-10-16 22:52:55 +0100
commite45fe284b7c334d64c2fe105c0564c5015d3747f (patch)
treef98907d190b9d79376f7dc7a601e22c13c42b614 /src/wx/kdm_dialog.h
parent4ed8eafd541c2c5867795db56c440e444cc0aeff (diff)
Allow specification of DCP to build KDMs for (#235).
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;