5d4581d3c48787a4818a087a78955a5aa02b0bef
[dcpomatic.git] / src / wx / new_film_dialog.cc
1 /*
2     Copyright (C) 2012-2014 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 "lib/config.h"
22 #include "new_film_dialog.h"
23 #include "wx_util.h"
24 #ifdef DCPOMATIC_USE_OWN_PICKER
25 #include "dir_picker_ctrl.h"
26 #endif
27 #include <wx/stdpaths.h>
28 #include <boost/filesystem.hpp>
29 #include <boost/foreach.hpp>
30
31 using namespace std;
32 using namespace boost;
33
34 boost::optional<boost::filesystem::path> NewFilmDialog::_directory;
35
36 NewFilmDialog::NewFilmDialog (wxWindow* parent)
37         : TableDialog (parent, _("New Film"), 2, 1, true)
38 {
39         add (_("Film name"), true);
40         _name = add (new wxTextCtrl (this, wxID_ANY));
41
42         add (_("Create in folder"), true);
43
44 #ifdef DCPOMATIC_USE_OWN_PICKER
45         _folder = new DirPickerCtrl (this);
46 #else
47         _folder = new wxDirPickerCtrl (this, wxID_ANY, wxEmptyString, wxDirSelectorPromptStr, wxDefaultPosition, wxSize (300, -1));
48 #endif
49
50         if (!_directory) {
51                 _directory = Config::instance()->default_directory_or (wx_to_std (wxStandardPaths::Get().GetDocumentsDir()));
52         }
53
54         _folder->SetPath (std_to_wx (_directory.get().string()));
55         add (_folder);
56
57         _use_template = new wxCheckBox (this, wxID_ANY, _("From template"));
58         add (_use_template);
59         _template_name = new wxChoice (this, wxID_ANY);
60         add (_template_name);
61
62         _name->SetFocus ();
63         _template_name->Enable (false);
64
65         BOOST_FOREACH (string i, Config::instance()->templates ()) {
66                 _template_name->Append (std_to_wx (i));
67         }
68
69         _use_template->Bind (wxEVT_COMMAND_CHECKBOX_CLICKED, bind (&NewFilmDialog::use_template_clicked, this));
70
71         layout ();
72 }
73
74 void
75 NewFilmDialog::use_template_clicked ()
76 {
77         _template_name->Enable (_use_template->GetValue ());
78 }
79
80 NewFilmDialog::~NewFilmDialog ()
81 {
82         _directory = wx_to_std (_folder->GetPath ());
83 }
84
85 boost::filesystem::path
86 NewFilmDialog::path () const
87 {
88         filesystem::path p;
89         p /= wx_to_std (_folder->GetPath ());
90         p /= wx_to_std (_name->GetValue ());
91         return p;
92 }
93
94 optional<string>
95 NewFilmDialog::template_name () const
96 {
97         if (!_use_template->GetValue() || _template_name->GetSelection() == -1) {
98                 return optional<string> ();
99         }
100
101         return wx_to_std (_template_name->GetString(_template_name->GetSelection()));
102 }