Rename KDMNameFormat.
[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 | wxLEFT | wxRIGHT;
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         dcp::NameFormat::Map titles;
60         titles['f'] = "film name";
61         titles['c'] = "cinema";
62         titles['s'] = "screen";
63         titles['b'] = "from date/time";
64         titles['e'] = "to date/time";
65         dcp::NameFormat::Map ex;
66         ex['f'] = "Bambi";
67         ex['c'] = "Lumière";
68         ex['s'] = "Screen 1";
69         ex['b'] = "2012/03/15 12:30";
70         ex['e'] = "2012/03/22 02:30";
71         _filename_format = new NameFormatEditor<KDMFilenameFormat> (this, Config::instance()->kdm_filename_format(), titles, ex);
72         table->Add (_filename_format->panel(), 1, wxEXPAND);
73
74         _write_to = new wxRadioButton (this, wxID_ANY, _("Write to"));
75         table->Add (_write_to, 1, wxEXPAND);
76
77 #ifdef DCPOMATIC_USE_OWN_PICKER
78         _folder = new DirPickerCtrl (this);
79 #else
80         _folder = new wxDirPickerCtrl (this, wxID_ANY, wxEmptyString, wxDirSelectorPromptStr, wxDefaultPosition, wxSize (300, -1));
81 #endif
82
83         _folder->SetPath (wxStandardPaths::Get().GetDocumentsDir());
84
85         table->Add (_folder, 1, wxEXPAND);
86
87         _email = new wxRadioButton (this, wxID_ANY, _("Send by email"));
88         table->Add (_email, 1, wxEXPAND);
89         table->AddSpacer (0);
90
91         _write_to->SetValue (true);
92
93         _write_to->Bind (wxEVT_COMMAND_RADIOBUTTON_SELECTED, boost::bind (&KDMOutputPanel::setup_sensitivity, this));
94         _email->Bind    (wxEVT_COMMAND_RADIOBUTTON_SELECTED, boost::bind (&KDMOutputPanel::setup_sensitivity, this));
95
96         SetSizer (table);
97 }
98
99 void
100 KDMOutputPanel::setup_sensitivity ()
101 {
102         _folder->Enable (_write_to->GetValue ());
103 }
104
105 boost::filesystem::path
106 KDMOutputPanel::directory () const
107 {
108         return wx_to_std (_folder->GetPath ());
109 }
110
111 bool
112 KDMOutputPanel::write_to () const
113 {
114         return _write_to->GetValue ();
115 }
116
117 dcp::Formulation
118 KDMOutputPanel::formulation () const
119 {
120         return (dcp::Formulation) reinterpret_cast<intptr_t> (_type->GetClientData (_type->GetSelection()));
121 }
122
123 void
124 KDMOutputPanel::save_kdm_name_format () const
125 {
126         Config::instance()->set_kdm_filename_format (name_format ());
127 }
128
129 KDMFilenameFormat
130 KDMOutputPanel::name_format () const
131 {
132         return _filename_format->get ();
133 }