No-op; fix GPL address and use the explicit-program-name version.
[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         if (!_directory) {
50                 _directory = Config::instance()->default_directory_or (wx_to_std (wxStandardPaths::Get().GetDocumentsDir()));
51         }
52
53         _folder->SetPath (std_to_wx (_directory.get().string()));
54         add (_folder);
55
56         _name->SetFocus ();
57
58         layout ();
59 }
60
61 NewFilmDialog::~NewFilmDialog ()
62 {
63         _directory = wx_to_std (_folder->GetPath ());
64 }
65
66 boost::filesystem::path
67 NewFilmDialog::get_path () const
68 {
69         filesystem::path p;
70         p /= wx_to_std (_folder->GetPath ());
71         p /= wx_to_std (_name->GetValue ());
72         return p;
73 }