rawTherapee/rtgui/paramsedited.h
natureh aff832f721 Batch editor's sliders behaves better and easier to code for the developper :
- if only one file is selected, all sliders are in SET mode
- if more than one file is selected, the ADD/SET mode depend on the preference

The range of the slider in ADD mode is now twice the range of the same slider in SET mode, so you'll be able to reach the total range for each image at each session. Overflows are correctly handled.

I've added more sliders in the preference window (the one that are not listed behave in SET mode, like before). It's also easier to code for the developper, as the Adjuster class now handle the "add" booleans, instead of each tools. But it's still spreaded all over the code :-/

Furthermore, when clicking on the reset button of a slider, it now reset to the system default value ; resetting to the value of the loaded profil can still be done with CTRL+click on the reset button. This behavior is available in the Editors and in the Batch Editor if only one file is selected.
2011-06-15 22:57:05 +02:00

369 lines
7.3 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 saturation;
bool shcompr;
bool hlcompr;
bool hlcomprthresh;
bool autoexp;
bool clip;
bool expcomp;
};
class LCurveParamsEdited {
public:
bool brightness;
bool contrast;
bool saturation;
bool avoidclip;
bool enable_saturationlimiter;
bool saturationlimit;
bool lcurve;
bool acurve;
bool bcurve;
};
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 DefringeParamsEdited {
public:
bool enabled;
bool radius;
bool threshold;
};
class ImpulseDenoiseParamsEdited {
public:
bool enabled;
bool thresh;
};
class DirPyrDenoiseParamsEdited {
public:
bool enabled;
bool luma;
bool chroma;
bool gamma;
};
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;
bool strength;
bool centerX;
bool centerY;
};
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 appliesTo;
bool method;
bool dataspec;
bool width;
bool height;
bool enabled;
};
class ColorManagementParamsEdited {
public:
bool input;
bool gammaOnInput;
bool working;
bool output;
bool gamma;
bool gampos;
bool slpos;
bool gamfree;
bool freegamma;
};
class EqualizerParamsEdited {
public:
bool enabled;
bool c[8];
};
class DirPyrEqualizerParamsEdited {
public:
bool enabled;
bool mult[8];
};
class HSVEqualizerParamsEdited {
public:
bool hcurve;
bool scurve;
bool vcurve;
};
class RAWParamsEdited {
public:
bool ccSteps;
bool dmethod;
bool dcbIterations;
bool dcbEnhance;
bool caCorrection;
bool caRed;
bool caBlue;
bool greenEq;
bool hotDeadPixel;
bool linenoise;
bool darkFrame;
bool dfAuto;
bool ff_file;
bool ff_AutoSelect;
bool ff_BlurRadius;
bool ff_BlurType;
bool exCorrection;
bool exPos;
bool exPreser;
bool exBlackzero;
bool exBlackone;
bool exBlacktwo;
bool exBlackthree;
bool exTwoGreen;
};
class ExifPairEdited {
public:
Glib::ustring field;
bool value;
};
class IPTCPairEdited {
public:
Glib::ustring field;
bool values;
};
class ParamsEdited {
public:
ToneCurveParamsEdited toneCurve;
LCurveParamsEdited labCurve;
SharpeningParamsEdited sharpening;
ColorBoostParamsEdited colorBoost;
WBParamsEdited wb;
ColorShiftParamsEdited colorShift;
LumaDenoiseParamsEdited lumaDenoise;
ColorDenoiseParamsEdited colorDenoise;
DefringeParamsEdited defringe;
DirPyrDenoiseParamsEdited dirpyrDenoise;
ImpulseDenoiseParamsEdited impulseDenoise;
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;
DirPyrEqualizerParamsEdited dirpyrequalizer;
HSVEqualizerParamsEdited hsvequalizer;
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 forceSet);
bool operator== (const ParamsEdited& other);
bool operator!= (const ParamsEdited& other);
};
#endif