Supporters update.
[dcpomatic.git] / src / wx / content_colour_conversion_dialog.cc
1 /*
2     Copyright (C) 2013-2021 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21
22 #include "check_box.h"
23 #include "colour_conversion_editor.h"
24 #include "content_colour_conversion_dialog.h"
25 #include "wx_util.h"
26 #include "lib/colour_conversion.h"
27 #include "lib/config.h"
28 #include "lib/util.h"
29 #include <dcp/warnings.h>
30 LIBDCP_DISABLE_WARNINGS
31 #include <wx/statline.h>
32 LIBDCP_ENABLE_WARNINGS
33
34
35 using std::string;
36 using std::vector;
37 using boost::optional;
38
39
40 ContentColourConversionDialog::ContentColourConversionDialog (wxWindow* parent, bool yuv)
41         : wxDialog (parent, wxID_ANY, _("Colour conversion"))
42         , _editor (new ColourConversionEditor(this, yuv))
43         , _setting (false)
44 {
45         auto overall_sizer = new wxBoxSizer (wxVERTICAL);
46         SetSizer (overall_sizer);
47
48         auto table = new wxFlexGridSizer (2, DCPOMATIC_SIZER_Y_GAP - 2, DCPOMATIC_SIZER_X_GAP);
49         _preset_check = new CheckBox (this, _("Use preset"));
50         table->Add (_preset_check, 0, wxALIGN_CENTER_VERTICAL);
51         _preset_choice = new wxChoice (this, wxID_ANY);
52         table->Add (_preset_choice);
53
54         overall_sizer->Add (table, 1, wxEXPAND | wxALL, DCPOMATIC_DIALOG_BORDER);
55         overall_sizer->Add (new wxStaticLine (this, wxID_ANY), 0, wxEXPAND);
56         overall_sizer->Add (_editor);
57
58         auto buttons = CreateSeparatedButtonSizer (wxOK | wxCANCEL);
59         if (buttons) {
60                 overall_sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
61         }
62
63         overall_sizer->Layout ();
64         overall_sizer->SetSizeHints (this);
65
66         _preset_check->bind(&ContentColourConversionDialog::preset_check_clicked, this);
67         _preset_choice->Bind (wxEVT_CHOICE, boost::bind (&ContentColourConversionDialog::preset_choice_changed, this));
68
69         _editor_connection = _editor->Changed.connect (boost::bind (&ContentColourConversionDialog::check_for_preset, this));
70
71         for (auto const& i: PresetColourConversion::all ()) {
72                 _preset_choice->Append (std_to_wx (i.name));
73         }
74 }
75
76
77 ColourConversion
78 ContentColourConversionDialog::get () const
79 {
80         return _editor->get ();
81 }
82
83
84 void
85 ContentColourConversionDialog::set (ColourConversion c)
86 {
87         _setting = true;
88         _editor->set (c);
89         _setting = false;
90
91         check_for_preset ();
92 }
93
94
95 void
96 ContentColourConversionDialog::check_for_preset ()
97 {
98         if (_setting) {
99                 return;
100         }
101
102         auto preset = _editor->get().preset ();
103
104         _preset_check->SetValue (static_cast<bool>(preset));
105         _preset_choice->Enable (static_cast<bool>(preset));
106         if (preset) {
107                 _preset_choice->SetSelection (preset.get ());
108         } else {
109                 _preset_choice->SetSelection (-1);
110         }
111 }
112
113
114 void
115 ContentColourConversionDialog::preset_check_clicked ()
116 {
117         if (_preset_check->GetValue ()) {
118                 _preset_choice->SetSelection (0);
119                 preset_choice_changed ();
120         } else {
121                 _preset_choice->SetSelection (-1);
122                 _preset_choice->Enable (false);
123         }
124 }
125
126
127 void
128 ContentColourConversionDialog::preset_choice_changed ()
129 {
130         auto presets = PresetColourConversion::all ();
131         int const s = _preset_choice->GetCurrentSelection();
132         if (s != -1) {
133                 set (presets[s].conversion);
134         }
135 }