cd6f2c8b3e5849ee34094cd23ef769c4321e82bd
[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 remove_from_current_tag ();
60         void current_tag_selection_changed ();
61         void chosen_subtag_changed (boost::optional<dcp::LanguageTag::SubtagData> selection);
62         void setup_sensitivity ();
63
64         std::vector<Subtag> _current_tag_subtags;
65         wxListCtrl* _current_tag_list;
66         LanguageSubtagPanel* _choose_subtag_panel;
67         wxButton* _add_script;
68         wxButton* _add_region;
69         wxButton* _add_variant;
70         wxButton* _add_external;
71         wxButton* _remove;
72 };
73
74
75
76 class RegionSubtagDialog : public wxDialog
77 {
78 public:
79         RegionSubtagDialog (wxWindow* parent, dcp::LanguageTag::RegionSubtag region);
80
81         boost::optional<dcp::LanguageTag::RegionSubtag> get () const;
82
83 private:
84         LanguageSubtagPanel* _panel;
85 };
86