Moved wavelet to its own tab

This commit is contained in:
Ingo
2015-06-08 16:22:33 +02:00
commit d5fba1ea48
1741 changed files with 437841 additions and 0 deletions

33
rtgui/pcvignette.h Normal file
View File

@@ -0,0 +1,33 @@
/*
* This file is part of RawTherapee.
*/
#ifndef _PCVIGNETTE_H_
#define _PCVIGNETTE_H_
#include <gtkmm.h>
#include "adjuster.h"
#include "toolpanel.h"
class PCVignette : public ToolParamBlock, public AdjusterListener, public FoldableToolPanel {
protected:
Adjuster* strength;
Adjuster* feather;
Adjuster* roundness;
public:
PCVignette ();
void read (const rtengine::procparams::ProcParams* pp, const ParamsEdited* pedited=NULL);
void write (rtengine::procparams::ProcParams* pp, ParamsEdited* pedited=NULL);
void setDefaults (const rtengine::procparams::ProcParams* defParams, const ParamsEdited* pedited=NULL);
void setBatchMode (bool batchMode);
void adjusterChanged (Adjuster* a, double newval);
void enabledChanged ();
void setAdjusterBehavior (bool strengthadd, bool featheradd, bool roundnessadd);
void trimValues (rtengine::procparams::ProcParams* pp);
};
#endif