Missed update to private test repo version.
[dcpomatic.git] / src / wx / language_tag_widget.cc
1 /*
2     Copyright (C) 2020-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 "dcpomatic_button.h"
23 #include "language_tag_dialog.h"
24 #include "language_tag_widget.h"
25 #include "wx_util.h"
26 #include <dcp/warnings.h>
27 LIBDCP_DISABLE_WARNINGS
28 #include <wx/wx.h>
29 LIBDCP_ENABLE_WARNINGS
30
31
32 using boost::optional;
33
34
35 LanguageTagWidget::LanguageTagWidget (wxWindow* parent, wxString tooltip, optional<dcp::LanguageTag> tag, optional<wxString> size_to_fit)
36         : _parent (parent)
37         , _sizer (new wxBoxSizer(wxHORIZONTAL))
38 {
39         _language = new wxStaticText (parent, wxID_ANY, wxT(""), wxDefaultPosition, wxDefaultSize, wxST_ELLIPSIZE_END);
40         _language->SetToolTip (tooltip);
41         set (tag);
42
43         if (size_to_fit) {
44                 int w;
45                 int h;
46                 _language->GetTextExtent (*size_to_fit, &w, &h);
47                 _language->SetMinSize (wxSize(w, -1));
48         }
49
50         _sizer->Add (_language, 1, wxLEFT | wxALIGN_CENTER_VERTICAL, DCPOMATIC_SIZER_X_GAP);
51         _edit = new Button (parent, _("Edit..."));
52         _sizer->Add (_edit, 0, wxLEFT, DCPOMATIC_SIZER_GAP);
53
54         _edit->Bind (wxEVT_BUTTON, boost::bind(&LanguageTagWidget::edit, this));
55 }
56
57
58 LanguageTagWidget::~LanguageTagWidget()
59 {
60         _language->Destroy();
61         _edit->Destroy();
62 }
63
64
65 void
66 LanguageTagWidget::edit ()
67 {
68         auto d = make_wx<LanguageTagDialog>(_parent, _tag.get_value_or(dcp::LanguageTag("en")));
69         if (d->ShowModal() == wxID_OK) {
70                 set(d->get());
71                 Changed(d->get());
72         }
73 }
74
75
76 void
77 LanguageTagWidget::set (optional<dcp::LanguageTag> tag)
78 {
79         _tag = tag;
80         if (tag) {
81                 checked_set (_language, std_to_wx(tag->to_string()));
82         } else {
83                 checked_set (_language, wxT(""));
84         }
85 }
86
87
88 void
89 LanguageTagWidget::enable (bool e)
90 {
91         _language->Enable (e);
92         _edit->Enable (e);
93 }