Add tooltips over content channel names in the audio mapping view (#888).
[dcpomatic.git] / src / wx / editable_list.h
index 47eb254e97f779c11f6538f2d9906cd6760ebc76..4b203c0e2a4c802a75d5ac9cf580fde5fcbefce6 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/>.
 
 */
 
@@ -26,6 +27,8 @@
 #include <boost/function.hpp>
 #include <vector>
 
+bool always_valid ();
+
 /** @param T type of things being edited.
  *  @param S dialog to edit a thing.
  */
@@ -38,6 +41,7 @@ public:
                std::vector<std::string> columns,
                boost::function<std::vector<T> ()> get,
                boost::function<void (std::vector<T>)> set,
+               boost::function<bool (T)> valid,
                boost::function<std::string (T, int)> column,
                bool can_edit = true,
                bool title = true
@@ -45,6 +49,7 @@ public:
                : wxPanel (parent)
                , _get (get)
                , _set (set)
+               , _valid (valid)
                , _columns (columns.size ())
                , _column (column)
                , _edit (0)
@@ -158,10 +163,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);
+                       T const v = dialog->get ();
+                       if (_valid (v)) {
+                               add_to_control (v);
+                               std::vector<T> all = _get ();
+                               all.push_back (v);
+                               _set (all);
+                       }
                }
 
                dialog->Destroy ();
@@ -180,7 +188,12 @@ private:
                S* dialog = new S (this);
                dialog->set (all[item]);
                if (dialog->ShowModal() == wxID_OK) {
-                       all[item] = dialog->get ();
+                       T const v = dialog->get ();
+                       if (!_valid (v)) {
+                               return;
+                       }
+
+                       all[item] = v;
                }
                dialog->Destroy ();
 
@@ -217,6 +230,7 @@ private:
 
        boost::function <std::vector<T> ()> _get;
        boost::function <void (std::vector<T>)> _set;
+       boost::function <bool (T)> _valid;
        int _columns;
        boost::function<std::string (T, int)> _column;