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