Various bits mostly related to colour conversions.
[dcpomatic.git] / src / wx / content_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 "lib/config.h"
23 #include "wx_util.h"
24 #include "content_colour_conversion_dialog.h"
25 #include "colour_conversion_editor.h"
26
27 using std::string;
28 using std::vector;
29 using std::cout;
30 using boost::optional;
31
32 ContentColourConversionDialog::ContentColourConversionDialog (wxWindow* parent)
33         : wxDialog (parent, wxID_ANY, _("Colour conversion"))
34         , _editor (new ColourConversionEditor (this))
35         , _setting (false)
36 {
37         wxBoxSizer* overall_sizer = new wxBoxSizer (wxVERTICAL);
38         SetSizer (overall_sizer);
39
40         wxFlexGridSizer* table = new wxFlexGridSizer (2, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
41         _preset_check = new wxCheckBox (this, wxID_ANY, _("Use preset"));
42         table->Add (_preset_check, 0, wxALIGN_CENTER_VERTICAL);
43         _preset_choice = new wxChoice (this, wxID_ANY);
44         table->Add (_preset_choice);
45
46         overall_sizer->Add (table, 1, wxEXPAND | wxALL, DCPOMATIC_DIALOG_BORDER);
47         overall_sizer->Add (new wxStaticLine (this, wxID_ANY));
48         overall_sizer->Add (_editor);
49
50         wxSizer* buttons = CreateSeparatedButtonSizer (wxOK);
51         if (buttons) {
52                 overall_sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
53         }
54
55         overall_sizer->Layout ();
56         overall_sizer->SetSizeHints (this);
57
58         _preset_check->Bind (wxEVT_COMMAND_CHECKBOX_CLICKED, boost::bind (&ContentColourConversionDialog::preset_check_clicked, this));
59         _preset_choice->Bind (wxEVT_COMMAND_CHOICE_SELECTED, boost::bind (&ContentColourConversionDialog::preset_choice_changed, this));
60
61         _editor->Changed.connect (boost::bind (&ContentColourConversionDialog::check_for_preset, this));
62
63         vector<PresetColourConversion> presets = Config::instance()->colour_conversions ();
64         for (vector<PresetColourConversion>::const_iterator i = presets.begin(); i != presets.end(); ++i) {
65                 _preset_choice->Append (std_to_wx (i->name));
66         }
67 }
68
69 ColourConversion
70 ContentColourConversionDialog::get () const
71 {
72         return _editor->get ();
73 }
74
75 void
76 ContentColourConversionDialog::set (ColourConversion c)
77 {
78         _setting = true;
79         _editor->set (c);
80         _setting = false;
81         
82         check_for_preset ();
83 }
84
85 void
86 ContentColourConversionDialog::check_for_preset ()
87 {
88         if (_setting) {
89                 return;
90         }
91         
92         optional<size_t> preset = _editor->get().preset ();
93
94         _preset_check->SetValue (preset);
95         _preset_choice->Enable (preset);
96         _preset_choice->SetSelection (preset.get_value_or (-1));
97 }
98
99 void
100 ContentColourConversionDialog::preset_check_clicked ()
101 {
102         if (_preset_check->GetValue ()) {
103                 _preset_choice->SetSelection (0);
104                 preset_choice_changed ();
105         } else {
106                 _preset_choice->SetSelection (-1);
107                 _preset_choice->Enable (false);
108         }
109 }
110
111 void
112 ContentColourConversionDialog::preset_choice_changed ()
113 {
114         vector<PresetColourConversion> presets = Config::instance()->colour_conversions ();
115         int const s = _preset_choice->GetSelection();
116         if (s != -1) {
117                 set (presets[s].conversion);
118         }
119 }
120
121