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