b7467a70a1341ba7f66dd11047abfae68396bfec
[dcpomatic.git] / src / wx / colour_conversion_editor.h
1 /*
2     Copyright (C) 2013-2014 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 #ifndef DCPOMATIC_COLOUR_CONVERSION_EDITOR_H
21 #define DCPOMATIC_COLOUR_CONVERSION_EDITOR_H
22
23 #include <boost/signals2.hpp>
24 #include <wx/wx.h>
25
26 class wxSpinCtrlDouble;
27 class ColourConversion;
28
29 class ColourConversionEditor : public wxPanel
30 {
31 public:
32         ColourConversionEditor (wxWindow *);
33
34         void set (ColourConversion);
35         ColourConversion get () const;
36
37         boost::signals2::signal<void ()> Changed;
38
39 private:
40         void changed ();
41         void changed (wxSpinCtrlDouble *);
42         void chromaticity_changed ();
43         void adjusted_white_changed ();
44         void update_rgb_to_xyz ();
45         void update_bradford ();
46         void subhead (wxGridBagSizer* sizer, wxWindow* parent, wxString text, int& row) const;
47
48         void set_text_ctrl (wxTextCtrl *, double);
49         void set_spin_ctrl (wxSpinCtrlDouble *, double);
50
51         std::map<wxSpinCtrlDouble*, double> _last_spin_ctrl_value;
52         
53         wxSpinCtrlDouble* _input_gamma;
54         wxSpinCtrlDouble* _input_power;
55         wxTextCtrl* _input_threshold;
56         wxTextCtrl* _input_A;
57         wxTextCtrl* _input_B;
58         wxCheckBox* _input_gamma_linearised;
59         wxChoice* _yuv_to_rgb;
60         wxTextCtrl* _red_x;
61         wxTextCtrl* _red_y;
62         wxTextCtrl* _green_x;
63         wxTextCtrl* _green_y;
64         wxTextCtrl* _blue_x;
65         wxTextCtrl* _blue_y;
66         wxTextCtrl* _white_x;
67         wxTextCtrl* _white_y;
68         wxCheckBox* _adjust_white;
69         wxTextCtrl* _adjusted_white_x;
70         wxTextCtrl* _adjusted_white_y;
71         wxStaticText* _rgb_to_xyz[3][3];
72         wxStaticText* _bradford[3][3];
73         wxSpinCtrlDouble* _output_gamma;
74 };
75
76 #endif