Merge delay-decode-take2 branch into master.
[dcpomatic.git] / src / wx / kdm_dialog.h
index e6a26c86b55440876f5ec1006402c8dfa55a0964..db51d6d0380baf0dba4c8f510d5625396cac0c46 100644 (file)
@@ -36,23 +36,28 @@ class Screen;
 class KDMDialog : public wxDialog
 {
 public:
-       KDMDialog (wxWindow *);
+       KDMDialog (wxWindow *, boost::shared_ptr<const Film>);
 
        std::list<boost::shared_ptr<Screen> > screens () const;
+
+       /** @return KDM from time in local time */
        boost::posix_time::ptime from () const;
+       /** @return KDM until time in local time */
        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:
        void add_cinema (boost::shared_ptr<Cinema>);
        void add_screen (boost::shared_ptr<Cinema>, boost::shared_ptr<Screen>);
-       void targets_selection_changed (wxCommandEvent &);
-       void add_cinema_clicked (wxCommandEvent &);
-       void edit_cinema_clicked (wxCommandEvent &);
-       void remove_cinema_clicked (wxCommandEvent &);
-       void add_screen_clicked (wxCommandEvent &);
-       void edit_screen_clicked (wxCommandEvent &);
-       void remove_screen_clicked (wxCommandEvent &);
+       void add_cinema_clicked ();
+       void edit_cinema_clicked ();
+       void remove_cinema_clicked ();
+       void add_screen_clicked ();
+       void edit_screen_clicked ();
+       void remove_screen_clicked ();
        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 ();
@@ -70,11 +75,14 @@ private:
        wxDatePickerCtrl* _until_date;
        wxTimePickerCtrl* _from_time;
        wxTimePickerCtrl* _until_time;
+       wxListCtrl* _dcps;
+       wxRadioButton* _write_to;
 #ifdef DCPOMATIC_USE_OWN_DIR_PICKER
        DirPickerCtrl* _folder;
 #else
        wxDirPickerCtrl* _folder;
 #endif
+       wxRadioButton* _email;
 
        wxTreeItemId _root;
        std::map<wxTreeItemId, boost::shared_ptr<Cinema> > _cinemas;