swaroop: required monitors checks.
[dcpomatic.git] / src / wx / editable_list.h
index 1f0ead3cdf09b749c4385e843406f387a03dbf71..eb06f4cf8869a835273f2c44ac8b2a04941db5ba 100644 (file)
@@ -1,19 +1,20 @@
 /*
-    Copyright (C) 2012-2015 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
+    This file is part of DCP-o-matic.
+
+    DCP-o-matic is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
     the Free Software Foundation; either version 2 of the License, or
     (at your option) any later version.
 
-    This program is distributed in the hope that it will be useful,
+    DCP-o-matic is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     GNU General Public License for more details.
 
     You should have received a copy of the GNU General Public License
-    along with this program; if not, write to the Free Software
-    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+    along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
 
 */
 
@@ -40,7 +41,8 @@ public:
                boost::function<void (std::vector<T>)> set,
                boost::function<std::string (T, int)> column,
                bool can_edit = true,
-               bool title = true
+               bool title = true,
+               int column_width = 200
                )
                : wxPanel (parent)
                , _get (get)
@@ -49,28 +51,24 @@ public:
                , _column (column)
                , _edit (0)
        {
-               wxBoxSizer* s = new wxBoxSizer (wxVERTICAL);
-               SetSizer (s);
-
-               wxFlexGridSizer* table = new wxFlexGridSizer (2, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
-               table->AddGrowableCol (0, 1);
-               s->Add (table, 1, wxEXPAND);
+               _sizer = new wxBoxSizer (wxHORIZONTAL);
+               SetSizer (_sizer);
 
                long style = wxLC_REPORT | wxLC_SINGLE_SEL;
                if (title) {
                        style |= wxLC_NO_HEADER;
                }
-               _list = new wxListCtrl (this, wxID_ANY, wxDefaultPosition, wxSize (columns.size() * 200, 100), style);
+               _list = new wxListCtrl (this, wxID_ANY, wxDefaultPosition, wxSize (columns.size() * column_width, 100), style);
 
                for (size_t i = 0; i < columns.size(); ++i) {
                        wxListItem ip;
                        ip.SetId (i);
                        ip.SetText (std_to_wx (columns[i]));
-                       ip.SetWidth (200);
+                       ip.SetWidth (column_width);
                        _list->InsertColumn (i, ip);
                }
 
-               table->Add (_list, 1, wxEXPAND | wxALL);
+               _sizer->Add (_list, 1, wxEXPAND);
 
                {
                        wxSizer* s = new wxBoxSizer (wxVERTICAL);
@@ -82,7 +80,7 @@ public:
                        }
                        _remove = new wxButton (this, wxID_ANY, _("Remove"));
                        s->Add (_remove, 0, wxTOP | wxBOTTOM, 2);
-                       table->Add (s, 0);
+                       _sizer->Add (s, 0, wxLEFT, DCPOMATIC_SIZER_X_GAP);
                }
 
                _add->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&EditableList::add_clicked, this));
@@ -121,6 +119,11 @@ public:
                return all[item];
        }
 
+       void layout ()
+       {
+               _sizer->Layout ();
+       }
+
        boost::signals2::signal<void ()> SelectionChanged;
 
 private:
@@ -153,10 +156,13 @@ private:
                S* dialog = new S (this);
 
                if (dialog->ShowModal() == wxID_OK) {
-                       add_to_control (dialog->get ());
-                       std::vector<T> all = _get ();
-                       all.push_back (dialog->get ());
-                       _set (all);
+                       boost::optional<T> const v = dialog->get ();
+                       if (v) {
+                               add_to_control (v.get ());
+                               std::vector<T> all = _get ();
+                               all.push_back (v.get ());
+                               _set (all);
+                       }
                }
 
                dialog->Destroy ();
@@ -175,7 +181,12 @@ private:
                S* dialog = new S (this);
                dialog->set (all[item]);
                if (dialog->ShowModal() == wxID_OK) {
-                       all[item] = dialog->get ();
+                       boost::optional<T> const v = dialog->get ();
+                       if (!v) {
+                               return;
+                       }
+
+                       all[item] = v.get ();
                }
                dialog->Destroy ();
 
@@ -219,6 +230,7 @@ private:
        wxButton* _edit;
        wxButton* _remove;
        wxListCtrl* _list;
+       wxBoxSizer* _sizer;
 };
 
 #endif