Remove copy button (added for colour conversion presets but no longer required).
[dcpomatic.git] / src / wx / editable_list.h
1 /*
2     Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "wx_util.h"
21 #include <wx/wx.h>
22 #include <wx/listctrl.h>
23 #include <boost/function.hpp>
24 #include <vector>
25
26 /** @param T type of things being edited.
27  *  @param S dialog to edit a thing.
28  */
29 template<class T, class S>
30 class EditableList : public wxPanel
31 {
32 public:
33         EditableList (
34                 wxWindow* parent,
35                 std::vector<std::string> columns,
36                 boost::function<std::vector<T> ()> get,
37                 boost::function<void (std::vector<T>)> set,
38                 boost::function<std::string (T, int)> column,
39                 int height = 100
40                 )
41                 : wxPanel (parent)
42                 , _get (get)
43                 , _set (set)
44                 , _columns (columns.size ())
45                 , _column (column)
46         {
47                 wxBoxSizer* s = new wxBoxSizer (wxVERTICAL);
48                 SetSizer (s);
49
50                 wxFlexGridSizer* table = new wxFlexGridSizer (2, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
51                 table->AddGrowableCol (0, 1);
52                 s->Add (table, 1, wxEXPAND);
53
54                 _list = new wxListCtrl (this, wxID_ANY, wxDefaultPosition, wxSize (columns.size() * 200, height), wxLC_REPORT | wxLC_SINGLE_SEL);
55
56                 for (size_t i = 0; i < columns.size(); ++i) {
57                         wxListItem ip;
58                         ip.SetId (i);
59                         ip.SetText (std_to_wx (columns[i]));
60                         ip.SetWidth (200);
61                         _list->InsertColumn (i, ip);
62                 }
63
64                 table->Add (_list, 1, wxEXPAND | wxALL);
65
66                 {
67                         wxSizer* s = new wxBoxSizer (wxVERTICAL);
68                         _add = new wxButton (this, wxID_ANY, _("Add..."));
69                         s->Add (_add, 0, wxTOP | wxBOTTOM, 2);
70                         _edit = new wxButton (this, wxID_ANY, _("Edit..."));
71                         s->Add (_edit, 0, wxTOP | wxBOTTOM, 2);
72                         _remove = new wxButton (this, wxID_ANY, _("Remove"));
73                         s->Add (_remove, 0, wxTOP | wxBOTTOM, 2);
74                         table->Add (s, 0);
75                 }
76
77                 _add->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&EditableList::add_clicked, this));
78                 _edit->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&EditableList::edit_clicked, this));
79                 _remove->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&EditableList::remove_clicked, this));
80
81                 _list->Bind (wxEVT_COMMAND_LIST_ITEM_SELECTED, boost::bind (&EditableList::selection_changed, this));
82                 _list->Bind (wxEVT_COMMAND_LIST_ITEM_DESELECTED, boost::bind (&EditableList::selection_changed, this));
83                 _list->Bind (wxEVT_SIZE, boost::bind (&EditableList::resized, this, _1));
84
85                 refresh ();
86                 selection_changed ();
87         }
88
89         void refresh ()
90         {
91                 _list->DeleteAllItems ();
92
93                 std::vector<T> current = _get ();
94                 for (typename std::vector<T>::iterator i = current.begin (); i != current.end(); ++i) {
95                         add_to_control (*i);
96                 }
97         }
98
99 private:
100
101         void add_to_control (T item)
102         {
103                 wxListItem list_item;
104                 int const n = _list->GetItemCount ();
105                 list_item.SetId (n);
106                 _list->InsertItem (list_item);
107
108                 for (int i = 0; i < _columns; ++i) {
109                         _list->SetItem (n, i, std_to_wx (_column (item, i)));
110                 }
111         }
112
113         void selection_changed ()
114         {
115                 int const i = _list->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
116                 _edit->Enable (i >= 0);
117                 _remove->Enable (i >= 0);
118         }
119
120         void add_clicked ()
121         {
122                 T new_item;
123                 S* dialog = new S (this);
124                 dialog->set (new_item);
125                 dialog->ShowModal ();
126
127                 add_to_control (dialog->get ());
128
129                 std::vector<T> all = _get ();
130                 all.push_back (dialog->get ());
131                 _set (all);
132
133                 dialog->Destroy ();
134         }
135
136         void edit_clicked ()
137         {
138                 int item = _list->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
139                 if (item == -1) {
140                         return;
141                 }
142
143                 std::vector<T> all = _get ();
144                 DCPOMATIC_ASSERT (item >= 0 && item < int (all.size ()));
145
146                 S* dialog = new S (this);
147                 dialog->set (all[item]);
148                 dialog->ShowModal ();
149                 all[item] = dialog->get ();
150                 dialog->Destroy ();
151
152                 for (int i = 0; i < _columns; ++i) {
153                         _list->SetItem (item, i, std_to_wx (_column (all[item], i)));
154                 }
155
156                 _set (all);
157         }
158
159         void remove_clicked ()
160         {
161                 int i = _list->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
162                 if (i == -1) {
163                         return;
164                 }
165
166                 _list->DeleteItem (i);
167                 std::vector<T> all = _get ();
168                 all.erase (all.begin() + i);
169                 _set (all);
170
171                 selection_changed ();
172         }
173
174         void resized (wxSizeEvent& ev)
175         {
176                 int const w = GetSize().GetWidth() / _columns;
177                 for (int i = 0; i < _columns; ++i) {
178                         _list->SetColumnWidth (i, w);
179                 }
180                 ev.Skip ();
181         }
182
183         boost::function <std::vector<T> ()> _get;
184         boost::function <void (std::vector<T>)> _set;
185         int _columns;
186         boost::function<std::string (T, int)> _column;
187
188         wxButton* _add;
189         wxButton* _edit;
190         wxButton* _remove;
191         wxListCtrl* _list;
192 };