summaryrefslogtreecommitdiff
path: root/src/wx/kdm_dialog.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-09-25 12:20:26 +0100
committerCarl Hetherington <cth@carlh.net>2013-09-25 12:20:26 +0100
commit5909b9672821c1d5ea974761316dc0f3df558349 (patch)
treef1eaa4603f26663f1facb9246f852f6c7f4a5bb8 /src/wx/kdm_dialog.h
parent13d924ad844ca6b642880910e21c5e322dbc4408 (diff)
Part of work to add emailing of KDMs.
Diffstat (limited to 'src/wx/kdm_dialog.h')
-rw-r--r--src/wx/kdm_dialog.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/wx/kdm_dialog.h b/src/wx/kdm_dialog.h
index e6a26c86b..0acf9a61e 100644
--- a/src/wx/kdm_dialog.h
+++ b/src/wx/kdm_dialog.h
@@ -46,13 +46,12 @@ public:
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 +69,13 @@ private:
wxDatePickerCtrl* _until_date;
wxTimePickerCtrl* _from_time;
wxTimePickerCtrl* _until_time;
+ 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;