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