Clumsy DCI naming dialog.
[dcpomatic.git] / src / wx / dci_name_dialog.cc
1 /*
2     Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <wx/sizer.h>
21 #include "dci_name_dialog.h"
22 #include "wx_util.h"
23 #include "film.h"
24
25 DCINameDialog::DCINameDialog (wxWindow* parent, Film* film)
26         : wxDialog (parent, wxID_ANY, _("DCI name"), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER)
27         , _film (film)
28 {
29         wxFlexGridSizer* table = new wxFlexGridSizer (2, 6, 6);
30         table->AddGrowableCol (1, 1);
31
32         add_label_to_sizer (table, this, "Short Name (e.g. BLUES-BROS)");
33         _dci_name_prefix = new wxTextCtrl (this, wxID_ANY);
34         table->Add (_dci_name_prefix, 1, wxEXPAND);
35
36         add_label_to_sizer (table, this, "Audio Language (e.g. EN)");
37         _audio_language = new wxTextCtrl (this, wxID_ANY);
38         table->Add (_audio_language, 1, wxEXPAND);
39
40         add_label_to_sizer (table, this, "Subtitle Language (e.g. FR)");
41         _subtitle_language = new wxTextCtrl (this, wxID_ANY);
42         table->Add (_subtitle_language, 1, wxEXPAND);
43         
44         add_label_to_sizer (table, this, "Territory (e.g. UK)");
45         _territory = new wxTextCtrl (this, wxID_ANY);
46         table->Add (_territory, 1, wxEXPAND);
47
48         add_label_to_sizer (table, this, "Rating (e.g. 15");
49         _rating = new wxTextCtrl (this, wxID_ANY);
50         table->Add (_rating, 1, wxEXPAND);
51
52         add_label_to_sizer (table, this, "Studio (e.g. TCF)");
53         _studio = new wxTextCtrl (this, wxID_ANY);
54         table->Add (_studio, 1, wxEXPAND);
55
56         add_label_to_sizer (table, this, "Facility (e.g. DLA)");
57         _facility = new wxTextCtrl (this, wxID_ANY);
58         table->Add (_facility, 1, wxEXPAND);
59
60         add_label_to_sizer (table, this, "Package Type (e.g. OV");
61         _package_type = new wxTextCtrl (this, wxID_ANY);
62         table->Add (_package_type, 1, wxEXPAND);
63
64         _dci_name_prefix->SetValue (std_to_wx (_film->dci_name_prefix ()));
65         _audio_language->SetValue (std_to_wx (_film->audio_language ()));
66         _subtitle_language->SetValue (std_to_wx (_film->subtitle_language ()));
67         _territory->SetValue (std_to_wx (_film->territory ()));
68         _rating->SetValue (std_to_wx (_film->rating ()));
69         _studio->SetValue (std_to_wx (_film->studio ()));
70         _facility->SetValue (std_to_wx (_film->facility ()));
71         _package_type->SetValue (std_to_wx (_film->package_type ()));
72         
73         _dci_name_prefix->Connect (wxID_ANY, wxEVT_COMMAND_TEXT_UPDATED, wxCommandEventHandler (DCINameDialog::dci_name_prefix_changed), 0, this);
74         _audio_language->Connect (wxID_ANY, wxEVT_COMMAND_TEXT_UPDATED, wxCommandEventHandler (DCINameDialog::audio_language_changed), 0, this);
75         _subtitle_language->Connect (wxID_ANY, wxEVT_COMMAND_TEXT_UPDATED, wxCommandEventHandler (DCINameDialog::subtitle_language_changed), 0, this);
76         _territory->Connect (wxID_ANY, wxEVT_COMMAND_TEXT_UPDATED, wxCommandEventHandler (DCINameDialog::territory_changed), 0, this);
77         _rating->Connect (wxID_ANY, wxEVT_COMMAND_TEXT_UPDATED, wxCommandEventHandler (DCINameDialog::rating_changed), 0, this);
78         _studio->Connect (wxID_ANY, wxEVT_COMMAND_TEXT_UPDATED, wxCommandEventHandler (DCINameDialog::studio_changed), 0, this);
79         _facility->Connect (wxID_ANY, wxEVT_COMMAND_TEXT_UPDATED, wxCommandEventHandler (DCINameDialog::facility_changed), 0, this);
80         _package_type->Connect (wxID_ANY, wxEVT_COMMAND_TEXT_UPDATED, wxCommandEventHandler (DCINameDialog::package_type_changed), 0, this);
81
82         wxBoxSizer* overall_sizer = new wxBoxSizer (wxVERTICAL);
83         overall_sizer->Add (table, 1, wxEXPAND | wxALL, 6);
84         
85         wxSizer* buttons = CreateSeparatedButtonSizer (wxOK);
86         if (buttons) {
87                 overall_sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
88         }
89         
90         SetSizer (overall_sizer);
91         overall_sizer->Layout ();
92         overall_sizer->SetSizeHints (this);
93 }
94
95 void
96 DCINameDialog::dci_name_prefix_changed (wxCommandEvent &)
97 {
98         _film->set_dci_name_prefix (wx_to_std (_dci_name_prefix->GetValue ()));
99 }
100
101 void
102 DCINameDialog::audio_language_changed (wxCommandEvent &)
103 {
104         _film->set_audio_language (wx_to_std (_audio_language->GetValue ()));
105 }
106
107 void
108 DCINameDialog::subtitle_language_changed (wxCommandEvent &)
109 {
110         _film->set_subtitle_language (wx_to_std (_subtitle_language->GetValue ()));
111 }
112
113 void
114 DCINameDialog::territory_changed (wxCommandEvent &)
115 {
116         _film->set_territory (wx_to_std (_territory->GetValue ()));
117 }
118
119 void
120 DCINameDialog::rating_changed (wxCommandEvent &)
121 {
122         _film->set_rating (wx_to_std (_rating->GetValue ()));
123 }
124
125 void
126 DCINameDialog::studio_changed (wxCommandEvent &)
127 {
128         _film->set_studio (wx_to_std (_studio->GetValue ()));
129 }
130
131 void
132 DCINameDialog::facility_changed (wxCommandEvent &)
133 {
134         _film->set_facility (wx_to_std (_facility->GetValue ()));
135 }
136
137 void
138 DCINameDialog::package_type_changed (wxCommandEvent &)
139 {
140         _film->set_package_type (wx_to_std (_package_type->GetValue ()));
141 }