Build fixes for Boost >= 1.73
[dcpomatic.git] / src / wx / save_template_dialog.cc
1 /*
2     Copyright (C) 2016 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, bind (&SaveTemplateDialog::check, this, _1));
41 }
42
43 string
44 SaveTemplateDialog::name () const
45 {
46         return wx_to_std (_name->GetValue ());
47 }
48
49 void
50 SaveTemplateDialog::check (wxCommandEvent& ev)
51 {
52         bool ok = true;
53
54         if (_name->GetValue().IsEmpty()) {
55                 error_dialog (this, _("Template names must not be empty."));
56                 ok = false;
57         } else if (Config::instance()->existing_template (wx_to_std (_name->GetValue ()))) {
58                 ok = confirm_dialog (this, _("There is already a template with this name.  Do you want to overwrite it?"));
59         }
60
61         if (ok) {
62                 ev.Skip ();
63         }
64 }