summaryrefslogtreecommitdiff
path: root/src/wx/cinema_dialog.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-04-27 01:50:00 +0100
committerCarl Hetherington <cth@carlh.net>2016-04-29 22:51:18 +0100
commit068291b7233b01573863d7fb5eda2a82883c748d (patch)
tree1bca551006315fd234b2408e1be47fcd2970916d /src/wx/cinema_dialog.h
parent1863fff137bda1c0d3702a845cc79afbfc8c74c4 (diff)
Add free-text notes field to cinemas and screens.
Diffstat (limited to 'src/wx/cinema_dialog.h')
-rw-r--r--src/wx/cinema_dialog.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/wx/cinema_dialog.h b/src/wx/cinema_dialog.h
index 187bd11f2..7323f7889 100644
--- a/src/wx/cinema_dialog.h
+++ b/src/wx/cinema_dialog.h
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2012-2014 Carl Hetherington <cth@carlh.net>
+ Copyright (C) 2012-2016 Carl Hetherington <cth@carlh.net>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -32,11 +32,13 @@ public:
wxString,
std::string name = "",
std::list<std::string> emails = std::list<std::string> (),
+ std::string notes = "",
int utc_offset_hour = 0,
int utc_offset_minute = 0
);
std::string name () const;
+ std::string notes () const;
std::list<std::string> emails () const;
int utc_offset_hour () const;
int utc_offset_minute () const;
@@ -46,6 +48,7 @@ private:
void set_emails (std::vector<std::string>);
wxTextCtrl* _name;
+ wxTextCtrl* _notes;
EditableList<std::string, EmailDialog>* _email_list;
std::vector<std::string> _emails;
wxChoice* _utc_offset;