d1f60b8d1c216da414188fe2c9fe656b353e379e
[dcpomatic.git] / src / wx / save_template_dialog.cc
1 /*
2     Copyright (C) 2016-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 #include "save_template_dialog.h"
22 #include "wx_util.h"
23 #include "lib/config.h"
24 #include <boost/foreach.hpp>
25
26 using std::string;
27 #if BOOST_VERSION >= 106100
28 using namespace boost::placeholders;
29 #endif
30
31 SaveTemplateDialog::SaveTemplateDialog (wxWindow* parent)
32         : TableDialog (parent, _("Save template"), 2, 1, true)
33 {
34         add (_("Template name"), true);
35         _name = add (new wxTextCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (300, -1)));
36         _name->SetFocus ();
37         layout ();
38
39         wxButton* ok = dynamic_cast<wxButton *> (FindWindowById (wxID_OK, this));
40         ok->Bind (wxEVT_BUTTON, boost::bind(&SaveTemplateDialog::check, this, _1));
41
42         _name->Bind (wxEVT_TEXT, boost::bind(&SaveTemplateDialog::setup_sensitivity, this));
43
44         setup_sensitivity ();
45 }
46
47
48 void
49 SaveTemplateDialog::setup_sensitivity ()
50 {
51         wxButton* ok = dynamic_cast<wxButton *>(FindWindowById(wxID_OK, this));
52         if (ok) {
53                 ok->Enable (!_name->GetValue().IsEmpty());
54         }
55 }
56
57
58 string
59 SaveTemplateDialog::name () const
60 {
61         return wx_to_std (_name->GetValue ());
62 }
63
64 void
65 SaveTemplateDialog::check (wxCommandEvent& ev)
66 {
67         bool ok = true;
68
69         if (Config::instance()->existing_template (wx_to_std (_name->GetValue ()))) {
70                 ok = confirm_dialog (this, _("There is already a template with this name.  Do you want to overwrite it?"));
71         }
72
73         if (ok) {
74                 ev.Skip ();
75         }
76 }