Use Collator for recipients search (#2426).
[dcpomatic.git] / src / wx / recipients_panel.cc
1 /*
2     Copyright (C) 2015-2021 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21
22 #include "recipients_panel.h"
23 #include "wx_util.h"
24 #include "recipient_dialog.h"
25 #include "dcpomatic_button.h"
26 #include "lib/config.h"
27 #include <list>
28 #include <iostream>
29
30
31 using std::cout;
32 using std::list;
33 using std::make_pair;
34 using std::map;
35 using std::pair;
36 using std::shared_ptr;
37 using std::string;
38 using boost::optional;
39 using namespace dcpomatic;
40
41
42 RecipientsPanel::RecipientsPanel (wxWindow* parent)
43         : wxPanel (parent, wxID_ANY)
44         , _ignore_selection_change (false)
45 {
46         auto sizer = new wxBoxSizer (wxVERTICAL);
47
48 #ifdef __WXGTK3__
49         int const height = 30;
50 #else
51         int const height = -1;
52 #endif
53
54         _search = new wxSearchCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (200, height));
55 #ifndef __WXGTK3__
56         /* The cancel button seems to be strangely broken in GTK3; clicking on it twice sometimes works */
57         _search->ShowCancelButton (true);
58 #endif
59         sizer->Add (_search, 0, wxBOTTOM, DCPOMATIC_SIZER_GAP);
60
61         auto targets = new wxBoxSizer (wxHORIZONTAL);
62         _targets = new wxTreeCtrl (this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTR_HIDE_ROOT | wxTR_MULTIPLE | wxTR_HAS_BUTTONS | wxTR_LINES_AT_ROOT);
63         targets->Add (_targets, 1, wxEXPAND | wxRIGHT, DCPOMATIC_SIZER_GAP);
64
65         add_recipients ();
66
67         auto target_buttons = new wxBoxSizer (wxVERTICAL);
68
69         _add_recipient = new Button (this, _("Add..."));
70         target_buttons->Add (_add_recipient, 1, wxEXPAND | wxBOTTOM, DCPOMATIC_BUTTON_STACK_GAP);
71         _edit_recipient = new Button (this, _("Edit..."));
72         target_buttons->Add (_edit_recipient, 1, wxEXPAND | wxBOTTOM, DCPOMATIC_BUTTON_STACK_GAP);
73         _remove_recipient = new Button (this, _("Remove"));
74         target_buttons->Add (_remove_recipient, 1, wxEXPAND | wxBOTTOM, DCPOMATIC_BUTTON_STACK_GAP);
75
76         targets->Add (target_buttons, 0, 0);
77
78         sizer->Add (targets, 1, wxEXPAND);
79
80         _search->Bind  (wxEVT_TEXT, boost::bind (&RecipientsPanel::search_changed, this));
81         _targets->Bind (wxEVT_TREE_SEL_CHANGED, &RecipientsPanel::selection_changed_shim, this);
82
83         _add_recipient->Bind    (wxEVT_BUTTON, boost::bind (&RecipientsPanel::add_recipient_clicked, this));
84         _edit_recipient->Bind   (wxEVT_BUTTON, boost::bind (&RecipientsPanel::edit_recipient_clicked, this));
85         _remove_recipient->Bind (wxEVT_BUTTON, boost::bind (&RecipientsPanel::remove_recipient_clicked, this));
86
87         SetSizer (sizer);
88 }
89
90
91 RecipientsPanel::~RecipientsPanel ()
92 {
93         _targets->Unbind (wxEVT_TREE_SEL_CHANGED, &RecipientsPanel::selection_changed_shim, this);
94 }
95
96
97 void
98 RecipientsPanel::setup_sensitivity ()
99 {
100         _edit_recipient->Enable (_selected.size() == 1);
101         _remove_recipient->Enable (_selected.size() >= 1);
102 }
103
104
105 void
106 RecipientsPanel::add_recipient (shared_ptr<DKDMRecipient> r)
107 {
108         string const search = wx_to_std(_search->GetValue());
109
110         if (!search.empty() && !_collator.find(search, r->name)) {
111                 return;
112         }
113
114         _recipients[_targets->AppendItem(_root, std_to_wx(r->name))] = r;
115
116         _targets->SortChildren (_root);
117 }
118
119
120 void
121 RecipientsPanel::add_recipient_clicked ()
122 {
123         RecipientDialog dialog(GetParent(), _("Add recipient"));
124         if (dialog.ShowModal() == wxID_OK) {
125                 auto r = std::make_shared<DKDMRecipient>(dialog.name(), dialog.notes(), dialog.recipient(), dialog.emails(), dialog.utc_offset_hour(), dialog.utc_offset_minute());
126                 Config::instance()->add_dkdm_recipient (r);
127                 add_recipient (r);
128         }
129 }
130
131
132 void
133 RecipientsPanel::edit_recipient_clicked ()
134 {
135         if (_selected.size() != 1) {
136                 return;
137         }
138
139         auto c = *_selected.begin();
140
141         RecipientDialog dialog(
142                 GetParent(), _("Edit recipient"), c.second->name, c.second->notes, c.second->emails, c.second->utc_offset_hour, c.second->utc_offset_minute, c.second->recipient
143                 );
144
145         if (dialog.ShowModal() == wxID_OK) {
146                 c.second->name = dialog.name();
147                 c.second->emails = dialog.emails();
148                 c.second->notes = dialog.notes();
149                 c.second->utc_offset_hour = dialog.utc_offset_hour();
150                 c.second->utc_offset_minute = dialog.utc_offset_minute();
151                 _targets->SetItemText(c.first, std_to_wx(dialog.name()));
152                 Config::instance()->changed (Config::DKDM_RECIPIENTS);
153         }
154 }
155
156
157 void
158 RecipientsPanel::remove_recipient_clicked ()
159 {
160         for (auto const& i: _selected) {
161                 Config::instance()->remove_dkdm_recipient (i.second);
162                 _targets->Delete (i.first);
163         }
164
165         selection_changed ();
166 }
167
168
169 list<shared_ptr<DKDMRecipient>>
170 RecipientsPanel::recipients () const
171 {
172         list<shared_ptr<DKDMRecipient>> r;
173
174         for (auto const& i: _selected) {
175                 r.push_back (i.second);
176         }
177
178         r.sort ();
179         r.unique ();
180
181         return r;
182 }
183
184
185 void
186 RecipientsPanel::selection_changed_shim (wxTreeEvent &)
187 {
188         selection_changed ();
189 }
190
191
192 void
193 RecipientsPanel::selection_changed ()
194 {
195         if (_ignore_selection_change) {
196                 return;
197         }
198
199         wxArrayTreeItemIds s;
200         _targets->GetSelections (s);
201
202         _selected.clear ();
203
204         for (size_t i = 0; i < s.GetCount(); ++i) {
205                 RecipientMap::const_iterator j = _recipients.find (s[i]);
206                 if (j != _recipients.end ()) {
207                         _selected[j->first] = j->second;
208                 }
209         }
210
211         setup_sensitivity ();
212         RecipientsChanged ();
213 }
214
215
216 void
217 RecipientsPanel::add_recipients ()
218 {
219         _root = _targets->AddRoot ("Foo");
220
221         for (auto i: Config::instance()->dkdm_recipients()) {
222                 add_recipient (i);
223         }
224 }
225
226
227 void
228 RecipientsPanel::search_changed ()
229 {
230         _targets->DeleteAllItems ();
231         _recipients.clear ();
232
233         add_recipients ();
234
235         _ignore_selection_change = true;
236
237         for (auto const& i: _selected) {
238                 /* The wxTreeItemIds will now be different, so we must search by recipient */
239                 auto j = _recipients.begin ();
240                 while (j != _recipients.end() && j->second != i.second) {
241                         ++j;
242                 }
243
244                 if (j != _recipients.end ()) {
245                         _targets->SelectItem (j->first);
246                 }
247         }
248
249         _ignore_selection_change = false;
250 }