Supporters update.
[dcpomatic.git] / src / wx / dcp_text_track_dialog.cc
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 "dcp_text_track_dialog.h"
23 #include "language_tag_widget.h"
24 #include <boost/algorithm/string.hpp>
25
26
27 using std::string;
28
29
30 DCPTextTrackDialog::DCPTextTrackDialog (wxWindow* parent)
31         : TableDialog (parent, _("DCP Text Track"), 2, 1, true)
32 {
33         add (_("Name"), true);
34         add (_name = new wxTextCtrl (this, wxID_ANY, wxT(""), wxDefaultPosition, wxSize(300, -1)));
35         add (_("Language"), true);
36         _language = new LanguageTagWidget (this, wxT(""), boost::none);
37         add (_language->sizer());
38
39         _language->Changed.connect(boost::bind(&DCPTextTrackDialog::set_sensitivity, this));
40
41         set_sensitivity();
42         layout ();
43 }
44
45
46 DCPTextTrack
47 DCPTextTrackDialog::get () const
48 {
49         DCPOMATIC_ASSERT (_language->get());
50         return DCPTextTrack(wx_to_std(_name->GetValue()), _language->get());
51 }
52
53
54 void
55 DCPTextTrackDialog::set_sensitivity()
56 {
57         if (auto ok = dynamic_cast<wxButton *>(FindWindowById(wxID_OK, this))) {
58                 ok->Enable(static_cast<bool>(_language->get()));
59         }
60 }
61