ee8864ff95b277c807c27b6f36e3176fdb4f9272
[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, "Audio Language (e.g. EN)");
33         _audio_language = new wxTextCtrl (this, wxID_ANY);
34         table->Add (_audio_language, 1, wxEXPAND);
35
36         add_label_to_sizer (table, this, "Subtitle Language (e.g. FR)");
37         _subtitle_language = new wxTextCtrl (this, wxID_ANY);
38         table->Add (_subtitle_language, 1, wxEXPAND);
39         
40         add_label_to_sizer (table, this, "Territory (e.g. UK)");
41         _territory = new wxTextCtrl (this, wxID_ANY);
42         table->Add (_territory, 1, wxEXPAND);
43
44         add_label_to_sizer (table, this, "Rating (e.g. 15");
45         _rating = new wxTextCtrl (this, wxID_ANY);
46         table->Add (_rating, 1, wxEXPAND);
47
48         add_label_to_sizer (table, this, "Studio (e.g. TCF)");
49         _studio = new wxTextCtrl (this, wxID_ANY);
50         table->Add (_studio, 1, wxEXPAND);
51
52         add_label_to_sizer (table, this, "Facility (e.g. DLA)");
53         _facility = new wxTextCtrl (this, wxID_ANY);
54         table->Add (_facility, 1, wxEXPAND);
55
56         add_label_to_sizer (table, this, "Package Type (e.g. OV)");
57         _package_type = new wxTextCtrl (this, wxID_ANY);
58         table->Add (_package_type, 1, wxEXPAND);
59
60         _audio_language->SetValue (std_to_wx (_film->audio_language ()));
61         _subtitle_language->SetValue (std_to_wx (_film->subtitle_language ()));
62         _territory->SetValue (std_to_wx (_film->territory ()));
63         _rating->SetValue (std_to_wx (_film->rating ()));
64         _studio->SetValue (std_to_wx (_film->studio ()));
65         _facility->SetValue (std_to_wx (_film->facility ()));
66         _package_type->SetValue (std_to_wx (_film->package_type ()));
67         
68         _audio_language->Connect (wxID_ANY, wxEVT_COMMAND_TEXT_UPDATED, wxCommandEventHandler (DCINameDialog::audio_language_changed), 0, this);
69         _subtitle_language->Connect (wxID_ANY, wxEVT_COMMAND_TEXT_UPDATED, wxCommandEventHandler (DCINameDialog::subtitle_language_changed), 0, this);
70         _territory->Connect (wxID_ANY, wxEVT_COMMAND_TEXT_UPDATED, wxCommandEventHandler (DCINameDialog::territory_changed), 0, this);
71         _rating->Connect (wxID_ANY, wxEVT_COMMAND_TEXT_UPDATED, wxCommandEventHandler (DCINameDialog::rating_changed), 0, this);
72         _studio->Connect (wxID_ANY, wxEVT_COMMAND_TEXT_UPDATED, wxCommandEventHandler (DCINameDialog::studio_changed), 0, this);
73         _facility->Connect (wxID_ANY, wxEVT_COMMAND_TEXT_UPDATED, wxCommandEventHandler (DCINameDialog::facility_changed), 0, this);
74         _package_type->Connect (wxID_ANY, wxEVT_COMMAND_TEXT_UPDATED, wxCommandEventHandler (DCINameDialog::package_type_changed), 0, this);
75
76         wxBoxSizer* overall_sizer = new wxBoxSizer (wxVERTICAL);
77         overall_sizer->Add (table, 1, wxEXPAND | wxALL, 6);
78         
79         wxSizer* buttons = CreateSeparatedButtonSizer (wxOK);
80         if (buttons) {
81                 overall_sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
82         }
83         
84         SetSizer (overall_sizer);
85         overall_sizer->Layout ();
86         overall_sizer->SetSizeHints (this);
87 }
88
89 void
90 DCINameDialog::audio_language_changed (wxCommandEvent &)
91 {
92         _film->set_audio_language (wx_to_std (_audio_language->GetValue ()));
93 }
94
95 void
96 DCINameDialog::subtitle_language_changed (wxCommandEvent &)
97 {
98         _film->set_subtitle_language (wx_to_std (_subtitle_language->GetValue ()));
99 }
100
101 void
102 DCINameDialog::territory_changed (wxCommandEvent &)
103 {
104         _film->set_territory (wx_to_std (_territory->GetValue ()));
105 }
106
107 void
108 DCINameDialog::rating_changed (wxCommandEvent &)
109 {
110         _film->set_rating (wx_to_std (_rating->GetValue ()));
111 }
112
113 void
114 DCINameDialog::studio_changed (wxCommandEvent &)
115 {
116         _film->set_studio (wx_to_std (_studio->GetValue ()));
117 }
118
119 void
120 DCINameDialog::facility_changed (wxCommandEvent &)
121 {
122         _film->set_facility (wx_to_std (_facility->GetValue ()));
123 }
124
125 void
126 DCINameDialog::package_type_changed (wxCommandEvent &)
127 {
128         _film->set_package_type (wx_to_std (_package_type->GetValue ()));
129 }