Missing include.
[dcpomatic.git] / src / wx / kdm_dialog.h
index 4e449cee33e969b58c916ba55f59f883571f46b4..e6a26c86b55440876f5ec1006402c8dfa55a0964 100644 (file)
 
 #include <map>
 #include <boost/shared_ptr.hpp>
+#include <boost/date_time/posix_time/posix_time.hpp>
 #include <wx/wx.h>
 #include <wx/treectrl.h>
+#include "wx_util.h"
 
 class wxTreeCtrl;
 class wxDatePickerCtrl;
@@ -36,6 +38,11 @@ class KDMDialog : public wxDialog
 public:
        KDMDialog (wxWindow *);
 
+       std::list<boost::shared_ptr<Screen> > screens () const;
+       boost::posix_time::ptime from () const;
+       boost::posix_time::ptime until () const;
+       std::string directory () const;
+
 private:
        void add_cinema (boost::shared_ptr<Cinema>);
        void add_screen (boost::shared_ptr<Cinema>, boost::shared_ptr<Screen>);
@@ -49,6 +56,8 @@ private:
        std::list<std::pair<wxTreeItemId, boost::shared_ptr<Cinema> > > selected_cinemas () const;
        std::list<std::pair<wxTreeItemId, boost::shared_ptr<Screen> > > selected_screens () const;
        void setup_sensitivity ();
+
+       static boost::posix_time::ptime posix_time (wxDatePickerCtrl *, wxTimePickerCtrl *);
        
        wxTreeCtrl* _targets;
        wxButton* _add_cinema;
@@ -58,10 +67,10 @@ private:
        wxButton* _edit_screen;
        wxButton* _remove_screen;
        wxDatePickerCtrl* _from_date;
-       wxDatePickerCtrl* _to_date;
+       wxDatePickerCtrl* _until_date;
        wxTimePickerCtrl* _from_time;
-       wxTimePickerCtrl* _to_time;
-#ifdef __WXMSW__       
+       wxTimePickerCtrl* _until_time;
+#ifdef DCPOMATIC_USE_OWN_DIR_PICKER
        DirPickerCtrl* _folder;
 #else
        wxDirPickerCtrl* _folder;