mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
35 lines
931 B
C++
35 lines
931 B
C++
#pragma once
|
|
|
|
// STL includes
|
|
#include <QString>
|
|
|
|
// Utils includes
|
|
#include <utils/RgbChannelAdjustment.h>
|
|
#include <utils/RgbTransform.h>
|
|
|
|
class ColorAdjustment
|
|
{
|
|
public:
|
|
/// Unique identifier for this color transform
|
|
QString _id;
|
|
|
|
/// The BLACK (RGB-Channel) adjustment
|
|
RgbChannelAdjustment _rgbBlackAdjustment;
|
|
/// The WHITE (RGB-Channel) adjustment
|
|
RgbChannelAdjustment _rgbWhiteAdjustment;
|
|
/// The RED (RGB-Channel) adjustment
|
|
RgbChannelAdjustment _rgbRedAdjustment;
|
|
/// The GREEN (RGB-Channel) adjustment
|
|
RgbChannelAdjustment _rgbGreenAdjustment;
|
|
/// The BLUE (RGB-Channel) adjustment
|
|
RgbChannelAdjustment _rgbBlueAdjustment;
|
|
/// The CYAN (RGB-Channel) adjustment
|
|
RgbChannelAdjustment _rgbCyanAdjustment;
|
|
/// The MAGENTA (RGB-Channel) adjustment
|
|
RgbChannelAdjustment _rgbMagentaAdjustment;
|
|
/// The YELLOW (RGB-Channel) adjustment
|
|
RgbChannelAdjustment _rgbYellowAdjustment;
|
|
|
|
RgbTransform _rgbTransform;
|
|
};
|