ce6897ecdb63cc70d292ff731dee8048f283c6fa
[dcpomatic.git] / src / wx / preset_colour_conversion_dialog.cc
1 /*
2     Copyright (C) 2013 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/statline.h>
21 #include "lib/colour_conversion.h"
22 #include "wx_util.h"
23 #include "preset_colour_conversion_dialog.h"
24 #include "colour_conversion_editor.h"
25
26 using std::string;
27 using std::cout;
28
29 PresetColourConversionDialog::PresetColourConversionDialog (wxWindow* parent)
30         : wxDialog (parent, wxID_ANY, _("Colour conversion"))
31         , _editor (new ColourConversionEditor (this))
32 {
33         wxBoxSizer* overall_sizer = new wxBoxSizer (wxVERTICAL);
34         SetSizer (overall_sizer);
35
36         wxFlexGridSizer* table = new wxFlexGridSizer (2, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
37         table->AddGrowableCol (1, 1);
38         add_label_to_sizer (table, this, _("Name"), true);
39         _name = new wxTextCtrl (this, wxID_ANY, wxT (""));
40         table->Add (_name, 1, wxEXPAND | wxALL);
41
42         overall_sizer->Add (table, 1, wxEXPAND | wxALL, DCPOMATIC_DIALOG_BORDER);
43         overall_sizer->Add (new wxStaticLine (this, wxID_ANY), 0, wxEXPAND);
44         overall_sizer->Add (_editor);
45
46         wxSizer* buttons = CreateSeparatedButtonSizer (wxOK);
47         if (buttons) {
48                 overall_sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
49         }
50
51         overall_sizer->Layout ();
52         overall_sizer->SetSizeHints (this);
53 }
54
55 PresetColourConversion
56 PresetColourConversionDialog::get () const
57 {
58         PresetColourConversion pc;
59         pc.name = wx_to_std (_name->GetValue ());
60         pc.conversion = _editor->get ();
61         return pc;
62 }
63
64 void
65 PresetColourConversionDialog::set (PresetColourConversion c)
66 {
67         _name->SetValue (std_to_wx (c.name));
68         _editor->set (c.conversion);
69 }