Add FilmViewer::time_until_next_frame.
[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
28 SaveTemplateDialog::SaveTemplateDialog (wxWindow* parent)
29         : TableDialog (parent, _("Save template"), 2, 1, true)
30 {
31         add (_("Template name"), true);
32         _name = add (new wxTextCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (300, -1)));
33         _name->SetFocus ();
34         layout ();
35
36         wxButton* ok = dynamic_cast<wxButton *> (FindWindowById (wxID_OK, this));
37         ok->Bind (wxEVT_BUTTON, bind (&SaveTemplateDialog::check, this, _1));
38 }
39
40 string
41 SaveTemplateDialog::name () const
42 {
43         return wx_to_std (_name->GetValue ());
44 }
45
46 void
47 SaveTemplateDialog::check (wxCommandEvent& ev)
48 {
49         bool ok = true;
50
51         if (_name->GetValue().IsEmpty()) {
52                 error_dialog (this, _("Template names must not be empty."));
53                 ok = false;
54         } else if (Config::instance()->existing_template (wx_to_std (_name->GetValue ()))) {
55                 ok = confirm_dialog (this, _("There is already a template with this name.  Do you want to overwrite it?"));
56         }
57
58         if (ok) {
59                 ev.Skip ();
60         }
61 }