Flat field: Show auto calculated clip control value in ui

This commit is contained in:
heckflosse
2018-10-24 00:49:51 +02:00
parent 8ed760c639
commit ac700502db
10 changed files with 46 additions and 8 deletions

View File

@@ -35,7 +35,7 @@ public:
// add other info here
};
class FlatField : public ToolParamBlock, public AdjusterListener, public FoldableToolPanel
class FlatField : public ToolParamBlock, public AdjusterListener, public FoldableToolPanel, public rtengine::FlatFieldAutoClipListener
{
protected:
@@ -58,6 +58,7 @@ protected:
bool b_filter_asCurrent;
bool israw;
IdleRegister idle_register;
public:
FlatField ();
@@ -80,6 +81,7 @@ public:
{
ffp = p;
};
void flatFieldAutoClipValueChanged(int n = 0);
};
#endif