Supporters update.
[dcpomatic.git] / src / wx / language_tag_dialog.h
1 /*
2     Copyright (C) 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 #ifndef DCPOMATIC_LANGUAGE_TAG_DIALOG_H
23 #define DCPOMATIC_LANGUAGE_TAG_DIALOG_H
24
25
26 #include <dcp/language_tag.h>
27 #include <dcp/warnings.h>
28 LIBDCP_DISABLE_WARNINGS
29 #include <wx/wx.h>
30 LIBDCP_ENABLE_WARNINGS
31
32
33 class wxListCtrl;
34
35
36 /** A dialog to choose a language e.g.
37  *
38  *      English                en
39  *      German                 de
40  *      Portuguese for Brazil  pt-BR
41  *
42  *  It displays the full names of languages in one column, and the tag in the other,
43  *  and has a button to add a new language using FullLanguageTagDialog.
44  */
45 class LanguageTagDialog : public wxDialog
46 {
47 public:
48         LanguageTagDialog (wxWindow* parent, dcp::LanguageTag tag = dcp::LanguageTag("en"));
49
50         dcp::LanguageTag get () const;
51         void set (dcp::LanguageTag tag);
52
53 private:
54         void add_language ();
55         void populate_list ();
56
57         std::vector<dcp::LanguageTag> _presets;
58         std::vector<dcp::LanguageTag> _custom;
59         wxListCtrl* _list;
60 };
61
62 #endif