X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Fwx%2Feditable_list.h;h=1f0ead3cdf09b749c4385e843406f387a03dbf71;hp=f895e4a0a3c0669adeb873ea18579a3ceeea9a0b;hb=03dd6e03f5ee261b9c1ed9328ad2762ef3b62057;hpb=a618339514026c5f9129a9f786289952cdbd3cdf diff --git a/src/wx/editable_list.h b/src/wx/editable_list.h index f895e4a0a..1f0ead3cd 100644 --- a/src/wx/editable_list.h +++ b/src/wx/editable_list.h @@ -39,7 +39,8 @@ public: boost::function ()> get, boost::function)> set, boost::function column, - bool can_edit = true + bool can_edit = true, + bool title = true ) : wxPanel (parent) , _get (get) @@ -55,7 +56,11 @@ public: table->AddGrowableCol (0, 1); s->Add (table, 1, wxEXPAND); - _list = new wxListCtrl (this, wxID_ANY, wxDefaultPosition, wxSize (columns.size() * 200, 100), wxLC_REPORT | wxLC_SINGLE_SEL); + 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); for (size_t i = 0; i < columns.size(); ++i) { wxListItem ip; @@ -104,6 +109,20 @@ public: } } + boost::optional selection () const + { + int item = _list->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED); + if (item == -1) { + return boost::optional (); + } + + std::vector all = _get (); + DCPOMATIC_ASSERT (item >= 0 && item < int (all.size ())); + return all[item]; + } + + boost::signals2::signal SelectionChanged; + private: void add_to_control (T item) @@ -125,13 +144,13 @@ private: _edit->Enable (i >= 0); } _remove->Enable (i >= 0); + + SelectionChanged (); } void add_clicked () { - T new_item; S* dialog = new S (this); - dialog->set (new_item); if (dialog->ShowModal() == wxID_OK) { add_to_control (dialog->get ());