Move de-fish to distortion

This commit is contained in:
Alexander Brock
2023-03-22 00:19:26 +01:00
parent 45b7251073
commit f9e2e934df
12 changed files with 96 additions and 57 deletions

View File

@@ -33,10 +33,19 @@ class Distortion final :
protected:
Gtk::Button* autoDistor;
Adjuster* distor;
Adjuster* focal_length;
sigc::connection idConn;
LensGeomListener * rlistener;
Gtk::CheckButton* defish;
public:
rtengine::ProcEvent EvDistortionDefish;
rtengine::ProcEvent EvDistortionDefishVoid;
rtengine::ProcEvent* event_distortion_defish;
rtengine::ProcEvent EvDistortionFocalLength;
rtengine::ProcEvent EvDistortionFocalLengthVoid;
rtengine::ProcEvent* event_distortion_focal_length;
Distortion ();
@@ -53,4 +62,6 @@ public:
{
rlistener = l;
}
void defishChanged (void);
void focalLengthChanged(Adjuster* a, double const newval);
};