Allow configuration of KDM filename format.
[dcpomatic.git] / src / wx / kdm_output_panel.cc
1 /*
2     Copyright (C) 2015 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 "kdm_output_panel.h"
23 #include "wx_util.h"
24 #include "name_format_editor.h"
25 #include <dcp/types.h>
26 #ifdef DCPOMATIC_USE_OWN_PICKER
27 #include "dir_picker_ctrl.h"
28 #else
29 #include <wx/filepicker.h>
30 #endif
31 #include <wx/stdpaths.h>
32
33 KDMOutputPanel::KDMOutputPanel (wxWindow* parent, bool interop)
34         : wxPanel (parent, wxID_ANY)
35 {
36         wxFlexGridSizer* table = new wxFlexGridSizer (2, DCPOMATIC_SIZER_X_GAP, 0);
37
38         add_label_to_sizer (table, this, _("KDM type"), true);
39         _type = new wxChoice (this, wxID_ANY);
40         _type->Append ("Modified Transitional 1", ((void *) dcp::MODIFIED_TRANSITIONAL_1));
41         if (!interop) {
42                 _type->Append ("DCI Any", ((void *) dcp::DCI_ANY));
43                 _type->Append ("DCI Specific", ((void *) dcp::DCI_SPECIFIC));
44         }
45         table->Add (_type, 1, wxEXPAND);
46         _type->SetSelection (0);
47
48         {
49                 int flags = wxALIGN_TOP | wxTOP;
50                 wxString t = _("Filename format");
51 #ifdef __WXOSX__
52                 flags |= wxALIGN_RIGHT;
53                 t += wxT (":");
54 #endif
55                 wxStaticText* m = new wxStaticText (this, wxID_ANY, t);
56                 table->Add (m, 0, flags, DCPOMATIC_SIZER_Y_GAP);
57         }
58
59         _filename_format = new NameFormatEditor<KDMNameFormat> (this, Config::instance()->kdm_filename_format());
60         NameFormat::Map ex;
61         ex["film_name"] = "Bambi";
62         ex["cinema"] = "Lumière";
63         ex["screen"] = "Screen 1";
64         ex["from"] = "2012/03/15 12:30";
65         ex["to"] = "2012/03/22 02:30";
66         _filename_format->set_example (ex);
67         table->Add (_filename_format->panel(), 1, wxEXPAND);
68
69         _write_to = new wxRadioButton (this, wxID_ANY, _("Write to"));
70         table->Add (_write_to, 1, wxEXPAND);
71
72 #ifdef DCPOMATIC_USE_OWN_PICKER
73         _folder = new DirPickerCtrl (this);
74 #else
75         _folder = new wxDirPickerCtrl (this, wxID_ANY, wxEmptyString, wxDirSelectorPromptStr, wxDefaultPosition, wxSize (300, -1));
76 #endif
77
78         _folder->SetPath (wxStandardPaths::Get().GetDocumentsDir());
79
80         table->Add (_folder, 1, wxEXPAND);
81
82         _email = new wxRadioButton (this, wxID_ANY, _("Send by email"));
83         table->Add (_email, 1, wxEXPAND);
84         table->AddSpacer (0);
85
86         _write_to->SetValue (true);
87
88         _write_to->Bind (wxEVT_COMMAND_RADIOBUTTON_SELECTED, boost::bind (&KDMOutputPanel::setup_sensitivity, this));
89         _email->Bind    (wxEVT_COMMAND_RADIOBUTTON_SELECTED, boost::bind (&KDMOutputPanel::setup_sensitivity, this));
90
91         SetSizer (table);
92 }
93
94 void
95 KDMOutputPanel::setup_sensitivity ()
96 {
97         _folder->Enable (_write_to->GetValue ());
98 }
99
100 boost::filesystem::path
101 KDMOutputPanel::directory () const
102 {
103         return wx_to_std (_folder->GetPath ());
104 }
105
106 bool
107 KDMOutputPanel::write_to () const
108 {
109         return _write_to->GetValue ();
110 }
111
112 dcp::Formulation
113 KDMOutputPanel::formulation () const
114 {
115         return (dcp::Formulation) reinterpret_cast<intptr_t> (_type->GetClientData (_type->GetSelection()));
116 }
117
118 void
119 KDMOutputPanel::save_kdm_name_format () const
120 {
121         Config::instance()->set_kdm_filename_format (name_format ());
122 }
123
124 KDMNameFormat
125 KDMOutputPanel::name_format () const
126 {
127         return _filename_format->get ();
128 }