diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-03-02 21:41:58 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-03-08 10:30:34 +0000 |
| commit | 581ea73e56388d87a0c7f736efce447076618393 (patch) | |
| tree | dccfd764d2234e7a3c4f15827ea5f237ebab5f65 /src/wx/cinema_dialog.h | |
| parent | 61978a4f081a3c41896bf41185634778b7c1e9ce (diff) | |
Add GUI and storage for UTC offset in Cinema.
Diffstat (limited to 'src/wx/cinema_dialog.h')
| -rw-r--r-- | src/wx/cinema_dialog.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/wx/cinema_dialog.h b/src/wx/cinema_dialog.h index 7d27bd94b..a34935e51 100644 --- a/src/wx/cinema_dialog.h +++ b/src/wx/cinema_dialog.h @@ -27,10 +27,11 @@ class CinemaDialog : public wxDialog { public: - CinemaDialog (wxWindow *, std::string, std::string name = "", std::list<std::string> emails = std::list<std::string> ()); + CinemaDialog (wxWindow *, std::string, std::string name = "", std::list<std::string> emails = std::list<std::string> (), int utc_offset = 0); std::string name () const; std::list<std::string> emails () const; + int utc_offset () const; private: std::vector<std::string> get_emails () const; @@ -39,4 +40,5 @@ private: wxTextCtrl* _name; EditableList<std::string, EmailDialog>* _email_list; std::vector<std::string> _emails; + wxChoice* _utc_offset; }; |
