Keep signing certificates / keys in config.xml rather than on disk; allow configuration.
[dcpomatic.git] / src / wx / editable_list.h
index 5eb46e80d11caabe372df5b399d776f8d1d1fdf8..a282bba695734ba88815ac86847afe6430184270 100644 (file)
@@ -18,6 +18,7 @@
 */
 
 #include <wx/wx.h>
+#include <wx/listctrl.h>
 
 template<class T, class S>
 class EditableList : public wxPanel
@@ -28,7 +29,8 @@ public:
                std::vector<std::string> columns,
                boost::function<std::vector<T> ()> get,
                boost::function<void (std::vector<T>)> set,
-               boost::function<std::string (T, int)> column
+               boost::function<std::string (T, int)> column,
+               int height = 100
                )
                : wxPanel (parent)
                , _get (get)
@@ -41,9 +43,9 @@ public:
 
                wxFlexGridSizer* table = new wxFlexGridSizer (2, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
                table->AddGrowableCol (0, 1);
-               s->Add (table, 1, wxALL | wxEXPAND, 8);
+               s->Add (table, 1, wxEXPAND);
 
-               _list = new wxListCtrl (this, wxID_ANY, wxDefaultPosition, wxSize (columns.size() * 200, 100), wxLC_REPORT | wxLC_SINGLE_SEL);
+               _list = new wxListCtrl (this, wxID_ANY, wxDefaultPosition, wxSize (columns.size() * 200, height), wxLC_REPORT | wxLC_SINGLE_SEL);
 
                for (size_t i = 0; i < columns.size(); ++i) {
                        wxListItem ip;
@@ -138,18 +140,23 @@ private:
                for (int i = 0; i < _columns; ++i) {
                        _list->SetItem (item, i, std_to_wx (_column (all[item], i)));
                }
+
+               _set (all);
        }
 
        void remove_clicked ()
        {
                int i = _list->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
-               if (i >= 0) {
-                       _list->DeleteItem (i);
+               if (i == -1) {
+                       return;
                }
                
+               _list->DeleteItem (i);
                std::vector<T> all = _get ();
                all.erase (all.begin() + i);
                _set (all);
+
+               selection_changed ();
        }
 
        void resized (wxSizeEvent& ev)