X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fnew_film_dialog.h;h=81dd29feab59747dd18fbb090a728620a3e25782;hb=3a56fa86d04c631143a45bdb34cb0e570e4ca9fb;hp=01064f2a6e2c1ad433c9dafce0b6342ed791ea8c;hpb=47ba29c99df5afa93ce70ad2240c5d1b69dd1094;p=dcpomatic.git diff --git a/src/wx/new_film_dialog.h b/src/wx/new_film_dialog.h index 01064f2a6..81dd29fea 100644 --- a/src/wx/new_film_dialog.h +++ b/src/wx/new_film_dialog.h @@ -1,19 +1,20 @@ /* Copyright (C) 2012-2014 Carl Hetherington - This program is free software; you can redistribute it and/or modify + This file is part of DCP-o-matic. + + DCP-o-matic is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. - This program is distributed in the hope that it will be useful, + DCP-o-matic is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + along with DCP-o-matic. If not, see . */ @@ -30,14 +31,19 @@ public: NewFilmDialog (wxWindow *); ~NewFilmDialog (); - boost::filesystem::path get_path () const; + boost::filesystem::path path () const; + boost::optional template_name () const; private: + void use_template_clicked (); + wxTextCtrl* _name; #ifdef DCPOMATIC_USE_OWN_PICKER DirPickerCtrl* _folder; #else wxDirPickerCtrl* _folder; #endif + wxCheckBox* _use_template; + wxChoice* _template_name; static boost::optional _directory; };