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