Disable some more warnings.
[dcpomatic.git] / src / wx / language_tag_dialog.h
1 /*
2     Copyright (C) 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
22 #include "lib/warnings.h"
23 #include <dcp/language_tag.h>
24 DCPOMATIC_DISABLE_WARNINGS
25 #include <wx/wx.h>
26 DCPOMATIC_ENABLE_WARNINGS
27
28
29 class wxListCtrl;
30 class LanguageSubtagPanel;
31
32
33 class LanguageTagDialog : public wxDialog
34 {
35 public:
36         class Subtag
37         {
38         public:
39                 Subtag (dcp::LanguageTag::SubtagType type_, boost::optional<dcp::LanguageTag::SubtagData> subtag_)
40                         : type (type_)
41                         , subtag (subtag_)
42                 {}
43
44                 dcp::LanguageTag::SubtagType type;
45                 boost::optional<dcp::LanguageTag::SubtagData> subtag;
46                 std::string last_search;
47         };
48
49         LanguageTagDialog (wxWindow* parent, dcp::LanguageTag tag);
50
51         dcp::LanguageTag get () const;
52
53
54 private:
55
56         std::string subtag_type_name (dcp::LanguageTag::SubtagType type);
57         void search_changed (std::string search);
58         void add_to_current_tag (dcp::LanguageTag::SubtagType type, boost::optional<dcp::LanguageTag::SubtagData> subtag);
59         void current_tag_selection_changed ();
60         void chosen_subtag_changed (boost::optional<dcp::LanguageTag::SubtagData> selection);
61         void setup_sensitivity ();
62
63         std::vector<Subtag> _current_tag_subtags;
64         wxListCtrl* _current_tag_list;
65         LanguageSubtagPanel* _choose_subtag_panel;
66         wxButton* _add_script;
67         wxButton* _add_region;
68         wxButton* _add_variant;
69         wxButton* _add_external;
70 };
71
72
73
74 class RegionSubtagDialog : public wxDialog
75 {
76 public:
77         RegionSubtagDialog (wxWindow* parent, dcp::LanguageTag::RegionSubtag region);
78
79         boost::optional<dcp::LanguageTag::RegionSubtag> get () const;
80
81 private:
82         LanguageSubtagPanel* _panel;
83 };
84