rawTherapee/rtgui/paramsedited.h
ffsup2 eef14f76dd Added dark frame subtraction
Moved debayer and preprocessing parameters to class ProcParams for every single image.
Added tab RAW for changing those parameters.
Progress bar shows only load step (work to do)
2010-08-19 00:37:53 +02:00

293 lines
5.9 KiB
C++

/*
* This file is part of RawTherapee.
*
* Copyright (c) 2004-2010 Gabor Horvath <hgabor@rawtherapee.com>
*
* RawTherapee is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* RawTherapee is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with RawTherapee. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _PARAMEDITED_H_
#define _PARAMEDITED_H_
#include <glibmm.h>
#include <vector>
#include <rtengine.h>
#include <procparams.h>
class ToneCurveParamsEdited {
public:
bool curve;
bool brightness;
bool black;
bool contrast;
bool shcompr;
bool hlcompr;
bool autoexp;
bool clip;
bool expcomp;
};
class LCurveParamsEdited {
public:
bool brightness;
bool contrast;
bool curve;
};
class SharpeningParamsEdited {
public:
bool enabled;
bool radius;
bool amount;
bool threshold;
bool edgesonly;
bool edges_radius;
bool edges_tolerance;
bool halocontrol;
bool halocontrol_amount;
bool method;
bool deconvamount;
bool deconvradius;
bool deconviter;
bool deconvdamping;
};
class ColorBoostParamsEdited {
public:
bool amount;
bool avoidclip;
bool enable_saturationlimiter;
bool saturationlimit;
};
class WBParamsEdited {
public:
bool method;
bool temperature;
bool green;
};
class ColorShiftParamsEdited {
public:
bool a;
bool b;
};
class LumaDenoiseParamsEdited {
public:
bool enabled;
bool radius;
bool edgetolerance;
};
class ColorDenoiseParamsEdited {
public:
bool enabled;
bool amount;
};
class SHParamsEdited {
public:
bool enabled;
bool hq;
bool highlights;
bool htonalwidth;
bool shadows;
bool stonalwidth;
bool localcontrast;
bool radius;
};
class CropParamsEdited {
public:
bool enabled;
bool x;
bool y;
bool w;
bool h;
bool fixratio;
bool ratio;
bool orientation;
bool guide;
};
class CoarseTransformParamsEdited {
public:
bool rotate;
bool hflip;
bool vflip;
};
class CommonTransformParamsEdited {
public:
bool autofill;
};
class RotateParamsEdited {
public:
bool degree;
};
class DistortionParamsEdited {
public:
bool uselensfun;
bool amount;
};
class PerspectiveParamsEdited {
public:
bool horizontal;
bool vertical;
};
class VignettingParamsEdited {
public:
bool amount;
bool radius;
};
class ChannelMixerParamsEdited {
public:
bool red[3];
bool green[3];
bool blue[3];
};
class CACorrParamsEdited {
public:
bool red;
bool blue;
};
class HRecParamsEdited {
public:
bool enabled;
bool method;
};
class ResizeParamsEdited {
public:
bool scale;
bool method;
bool dataspec;
bool width;
bool height;
bool enabled;
};
class ColorManagementParamsEdited {
public:
bool input;
bool gammaOnInput;
bool working;
bool output;
};
class EqualizerParamsEdited {
public:
bool enabled;
bool c[8];
};
class RAWParamsEdited {
public:
bool ccSteps;
bool dmethod;
bool dcbIterations;
bool dcbEnhance;
bool caCorrection;
bool greenEq;
bool hotDeadPixel;
bool linenoise;
bool darkFrame;
bool dfAuto;
};
class ExifPairEdited {
public:
Glib::ustring field;
bool value;
};
class IPTCPairEdited {
public:
Glib::ustring field;
bool values;
};
class ParamsEdited {
public:
ToneCurveParamsEdited toneCurve;
LCurveParamsEdited lumaCurve;
SharpeningParamsEdited sharpening;
ColorBoostParamsEdited colorBoost;
WBParamsEdited wb;
ColorShiftParamsEdited colorShift;
LumaDenoiseParamsEdited lumaDenoise;
ColorDenoiseParamsEdited colorDenoise;
SHParamsEdited sh;
CropParamsEdited crop;
CoarseTransformParamsEdited coarse;
CommonTransformParamsEdited commonTrans;
RotateParamsEdited rotate;
DistortionParamsEdited distortion;
PerspectiveParamsEdited perspective;
CACorrParamsEdited cacorrection;
VignettingParamsEdited vignetting;
ChannelMixerParamsEdited chmixer;
HRecParamsEdited hlrecovery;
ResizeParamsEdited resize;
ColorManagementParamsEdited icm;
EqualizerParamsEdited equalizer;
RAWParamsEdited raw;
std::vector<ExifPairEdited> exif;
std::vector<IPTCPairEdited> iptc;
ParamsEdited ();
void set (bool v);
void initFrom (const std::vector<rtengine::procparams::ProcParams>& src);
void combine (rtengine::procparams::ProcParams& toEdit, const rtengine::procparams::ProcParams& mods);
bool operator== (const ParamsEdited& other);
bool operator!= (const ParamsEdited& other);
};
#endif