0b2a6a4b7aa9752d3ec29e7afd9318236852bbb8
[dcpomatic.git] / src / wx / recipients_panel.h
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 "lib/dkdm_recipient.h"
23 #include <dcp/warnings.h>
24 LIBDCP_DISABLE_WARNINGS
25 #include <wx/srchctrl.h>
26 #include <wx/treectrl.h>
27 #include <wx/wx.h>
28 LIBDCP_ENABLE_WARNINGS
29 #include <boost/signals2.hpp>
30 #include <list>
31 #include <map>
32
33
34 class DKDMRecipient;
35
36
37 class RecipientsPanel : public wxPanel
38 {
39 public:
40         explicit RecipientsPanel (wxWindow* parent);
41         ~RecipientsPanel ();
42
43         void setup_sensitivity ();
44
45         std::list<std::shared_ptr<DKDMRecipient>> recipients () const;
46         boost::signals2::signal<void ()> RecipientsChanged;
47
48 private:
49         void add_recipients ();
50         void add_recipient (std::shared_ptr<DKDMRecipient>);
51         void add_recipient_clicked ();
52         void edit_recipient_clicked ();
53         void remove_recipient_clicked ();
54         void selection_changed_shim (wxTreeEvent &);
55         void selection_changed ();
56         void search_changed ();
57
58         wxSearchCtrl* _search;
59         wxTreeCtrl* _targets;
60         wxButton* _add_recipient;
61         wxButton* _edit_recipient;
62         wxButton* _remove_recipient;
63         wxTreeItemId _root;
64
65         typedef std::map<wxTreeItemId, std::shared_ptr<DKDMRecipient>> RecipientMap;
66         RecipientMap _recipients;
67         RecipientMap _selected;
68
69         bool _ignore_selection_change;
70 };