diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-12-14 16:14:41 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-12-14 16:14:41 +0000 |
| commit | 5bcb8526fa49b5b180c0239ae47045818469c54c (patch) | |
| tree | 1251b4c7c8b385e9f0a12db62333e4c351039aea /src/wx/colour_conversion_editor.h | |
| parent | 9a8a53ba467c275af7759adbca797a97b86cc4c6 (diff) | |
Add tentative support for the S-Gamut3/S-Log3 colourspace.
Diffstat (limited to 'src/wx/colour_conversion_editor.h')
| -rw-r--r-- | src/wx/colour_conversion_editor.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/wx/colour_conversion_editor.h b/src/wx/colour_conversion_editor.h index 34fcf2cb2..787b615d5 100644 --- a/src/wx/colour_conversion_editor.h +++ b/src/wx/colour_conversion_editor.h @@ -49,15 +49,19 @@ private: void set_text_ctrl (wxTextCtrl *, double); void set_spin_ctrl (wxSpinCtrlDouble *, double); + static int const INPUT_GAMMA; + static int const INPUT_GAMMA_LINEARISED; + static int const INPUT_SGAMUT3; + std::map<wxSpinCtrlDouble*, double> _last_spin_ctrl_value; bool _ignore_chromaticity_changed; + wxChoice* _input; wxSpinCtrlDouble* _input_gamma; wxSpinCtrlDouble* _input_power; wxTextCtrl* _input_threshold; wxTextCtrl* _input_A; wxTextCtrl* _input_B; - wxCheckBox* _input_gamma_linearised; wxChoice* _yuv_to_rgb; wxTextCtrl* _red_x; wxTextCtrl* _red_y; @@ -70,6 +74,7 @@ private: wxCheckBox* _adjust_white; wxTextCtrl* _adjusted_white_x; wxTextCtrl* _adjusted_white_y; + wxCheckBox* _output; wxStaticText* _rgb_to_xyz[3][3]; wxStaticText* _bradford[3][3]; }; |
