Basic adaptations for changes to libdcp1 colour conversion handling.
[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
43         void set_text_ctrl (wxTextCtrl *, double);
44         void set_spin_ctrl (wxSpinCtrlDouble *, double);
45
46         std::map<wxSpinCtrlDouble*, double> _last_spin_ctrl_value;
47         
48         wxSpinCtrlDouble* _input_gamma;
49         wxSpinCtrlDouble* _input_power;
50         wxTextCtrl* _input_threshold;
51         wxTextCtrl* _input_A;
52         wxTextCtrl* _input_B;
53         wxCheckBox* _input_gamma_linearised;
54         wxTextCtrl* _matrix[3][3];
55         wxSpinCtrlDouble* _output_gamma;
56 };
57
58 #endif