Merge remote-tracking branch 'origin/main' into v2.17.x
[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());
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->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                 _targets->SetItemText(c.first, std_to_wx(dialog.name()));
150                 Config::instance()->changed (Config::DKDM_RECIPIENTS);
151         }
152 }
153
154
155 void
156 RecipientsPanel::remove_recipient_clicked ()
157 {
158         for (auto const& i: _selected) {
159                 Config::instance()->remove_dkdm_recipient (i.second);
160                 _targets->Delete (i.first);
161         }
162
163         selection_changed ();
164 }
165
166
167 list<shared_ptr<DKDMRecipient>>
168 RecipientsPanel::recipients () const
169 {
170         list<shared_ptr<DKDMRecipient>> r;
171
172         for (auto const& i: _selected) {
173                 r.push_back (i.second);
174         }
175
176         r.sort ();
177         r.unique ();
178
179         return r;
180 }
181
182
183 void
184 RecipientsPanel::selection_changed_shim (wxTreeEvent &)
185 {
186         selection_changed ();
187 }
188
189
190 void
191 RecipientsPanel::selection_changed ()
192 {
193         if (_ignore_selection_change) {
194                 return;
195         }
196
197         wxArrayTreeItemIds s;
198         _targets->GetSelections (s);
199
200         _selected.clear ();
201
202         for (size_t i = 0; i < s.GetCount(); ++i) {
203                 RecipientMap::const_iterator j = _recipients.find (s[i]);
204                 if (j != _recipients.end ()) {
205                         _selected[j->first] = j->second;
206                 }
207         }
208
209         setup_sensitivity ();
210         RecipientsChanged ();
211 }
212
213
214 void
215 RecipientsPanel::add_recipients ()
216 {
217         _root = _targets->AddRoot ("Foo");
218
219         for (auto i: Config::instance()->dkdm_recipients()) {
220                 add_recipient (i);
221         }
222 }
223
224
225 void
226 RecipientsPanel::search_changed ()
227 {
228         _targets->DeleteAllItems ();
229         _recipients.clear ();
230
231         add_recipients ();
232
233         _ignore_selection_change = true;
234
235         for (auto const& i: _selected) {
236                 /* The wxTreeItemIds will now be different, so we must search by recipient */
237                 auto j = _recipients.begin ();
238                 while (j != _recipients.end() && j->second != i.second) {
239                         ++j;
240                 }
241
242                 if (j != _recipients.end ()) {
243                         _targets->SelectItem (j->first);
244                 }
245         }
246
247         _ignore_selection_change = false;
248 }