X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fwx%2Feditable_list.h;h=20d180f20149633ce96dabd8b2b9c501216e8378;hb=4c29782ada19f49919924729c5a8302b2628f115;hp=5eb46e80d11caabe372df5b399d776f8d1d1fdf8;hpb=2499c41097f8410cb3016e095a85d68979485a7b;p=dcpomatic.git diff --git a/src/wx/editable_list.h b/src/wx/editable_list.h index 5eb46e80d..20d180f20 100644 --- a/src/wx/editable_list.h +++ b/src/wx/editable_list.h @@ -28,7 +28,8 @@ public: std::vector columns, boost::function ()> get, boost::function)> set, - boost::function column + boost::function column, + int height = 100 ) : wxPanel (parent) , _get (get) @@ -43,7 +44,7 @@ public: table->AddGrowableCol (0, 1); s->Add (table, 1, wxALL | wxEXPAND, 8); - _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 +139,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 all = _get (); all.erase (all.begin() + i); _set (all); + + selection_changed (); } void resized (wxSizeEvent& ev)