Engauge Digitizer  2
CallbackAxesCheckerFromAxesPoints.h
1 #ifndef CALLBACK_AXES_CHECKER_FROM_AXES_POINTS_H
2 #define CALLBACK_AXES_CHECKER_FROM_AXES_POINTS_H
3 
4 #include "CallbackSearchReturn.h"
5 #include "Point.h"
6 #include "Points.h"
7 #include <QString>
8 #include <QList>
9 
12 {
13 public:
16 
18  CallbackSearchReturn callback (const QString &curveName,
19  const Point &point);
20 
22  Points points () const;
23 
24 private:
25 
26  Points m_points;
27 };
28 
29 #endif // CALLBACK_AXES_CHECKER_FROM_AXES_POINTS_H
CallbackSearchReturn callback(const QString &curveName, const Point &point)
Callback method.
Class that represents one digitized point. The screen-to-graph coordinate transformation is always ex...
Definition: Point.h:17
CallbackSearchReturn
Return values for search callback methods.
Callback for positioning the axes indicator according to the axes points.
Points points() const
Return the collected points as a polygon, in screen coordinates.