Add free-text notes field to cinemas and screens.
[dcpomatic.git] / src / wx / cinema_dialog.cc
index b4663195f27ab9438a39af4b00cd41a0c197e803..debc0679595653dc8ed72848119e23b760ddc171 100644 (file)
@@ -37,8 +37,8 @@ column (string s)
        return s;
 }
 
-CinemaDialog::CinemaDialog (wxWindow* parent, string title, string name, list<string> emails, int utc_offset_hour, int utc_offset_minute)
-       : wxDialog (parent, wxID_ANY, std_to_wx (title))
+CinemaDialog::CinemaDialog (wxWindow* parent, wxString title, string name, list<string> emails, string notes, int utc_offset_hour, int utc_offset_minute)
+       : wxDialog (parent, wxID_ANY, title)
 {
        wxBoxSizer* overall_sizer = new wxBoxSizer (wxVERTICAL);
        SetSizer (overall_sizer);
@@ -56,6 +56,11 @@ CinemaDialog::CinemaDialog (wxWindow* parent, string title, string name, list<st
        sizer->Add (_utc_offset, wxGBPosition (r, 1));
        ++r;
 
+       add_label_to_sizer (sizer, this, _("Notes"), true, wxGBPosition (r, 0));
+       _notes = new wxTextCtrl (this, wxID_ANY, std_to_wx (notes), wxDefaultPosition, wxSize (500, -1));
+       sizer->Add (_notes, wxGBPosition (r, 1));
+       ++r;
+
        add_label_to_sizer (sizer, this, _("Email addresses for KDM delivery"), false, wxGBPosition (r, 0), wxGBSpan (1, 2));
        ++r;
 
@@ -84,6 +89,7 @@ CinemaDialog::CinemaDialog (wxWindow* parent, string title, string name, list<st
        _offsets.push_back (Offset (_("UTC-7"),    -7,  0));
        _offsets.push_back (Offset (_("UTC-6"),    -6,  0));
        _offsets.push_back (Offset (_("UTC-5"),    -5,  0));
+       _offsets.push_back (Offset (_("UTC-4:30"), -4, 30));
        _offsets.push_back (Offset (_("UTC-4"),    -4,  0));
        _offsets.push_back (Offset (_("UTC-3:30"), -3, 30));
        _offsets.push_back (Offset (_("UTC-3"),    -3,  0));
@@ -103,7 +109,8 @@ CinemaDialog::CinemaDialog (wxWindow* parent, string title, string name, list<st
        _offsets.push_back (Offset (_("UTC+11"),   11,  0));
        _offsets.push_back (Offset (_("UTC+12"),   12,  0));
 
-       size_t sel;
+       /* Default to UTC */
+       size_t sel = 13;
        for (size_t i = 0; i < _offsets.size(); ++i) {
                _utc_offset->Append (_offsets[i].name);
                if (_offsets[i].hour == utc_offset_hour && _offsets[i].minute == utc_offset_minute) {
@@ -146,8 +153,8 @@ CinemaDialog::emails () const
 int
 CinemaDialog::utc_offset_hour () const
 {
-       size_t const sel =  _utc_offset->GetSelection();
-       if (sel < 0 || sel > _offsets.size()) {
+       int const sel = _utc_offset->GetSelection();
+       if (sel < 0 || sel > int (_offsets.size())) {
                return 0;
        }
 
@@ -157,10 +164,16 @@ CinemaDialog::utc_offset_hour () const
 int
 CinemaDialog::utc_offset_minute () const
 {
-       size_t const sel =  _utc_offset->GetSelection();
-       if (sel < 0 || sel > _offsets.size()) {
+       int const sel = _utc_offset->GetSelection();
+       if (sel < 0 || sel > int (_offsets.size())) {
                return 0;
        }
 
        return _offsets[sel].minute;
 }
+
+string
+CinemaDialog::notes () const
+{
+       return wx_to_std (_notes->GetValue ());
+}