summaryrefslogtreecommitdiff
path: root/src/wx/editable_list.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-12-23 00:23:19 +0000
committerCarl Hetherington <cth@carlh.net>2015-12-23 00:23:19 +0000
commit03dd6e03f5ee261b9c1ed9328ad2762ef3b62057 (patch)
treeb33e3b379ea72bcaa4417cb1b42b68753f48b7ec /src/wx/editable_list.h
parenta618339514026c5f9129a9f786289952cdbd3cdf (diff)
Add a stored list of DKDMs to the creator rather than just a load button (#767).
Diffstat (limited to 'src/wx/editable_list.h')
-rw-r--r--src/wx/editable_list.h27
1 files changed, 23 insertions, 4 deletions
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<std::vector<T> ()> get,
boost::function<void (std::vector<T>)> set,
boost::function<std::string (T, int)> 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<T> selection () const
+ {
+ int item = _list->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
+ if (item == -1) {
+ return boost::optional<T> ();
+ }
+
+ std::vector<T> all = _get ();
+ DCPOMATIC_ASSERT (item >= 0 && item < int (all.size ()));
+ return all[item];
+ }
+
+ boost::signals2::signal<void ()> 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 ());