|
| Point () |
| Default constructor.
|
|
| Point (int _x, int _y) |
| Construct point at x,y coordinates.
|
|
| Point (const gui_point_t &pt) |
| Construct point at same position as pt.
|
|
| operator cv::Point () const |
| Conversion operator to cv::Point.
|
|
bool | operator== (const Point &b) |
| Checks if 2 points are equal.
|
|
bool | operator!= (const Point &b) |
| Checks if 2 points are different.
|
|
virtual void | setPosition (gui_point_t position) |
| Move point widget.
|
|
void | paint (const cv::Mat &) |
| Overlay the point widget on an image.
|
|
void | onMouseMove (const gui_point_t &) |
| The user moved the mouse pointer over the widget.
|
|
void | onMouseDown (const gui_point_t &) |
| The user pressed the left mouse button over the widget.
|
|
void | onMouseUp (const gui_point_t &) |
| The user released the left mouse button over the widget.
|
|
virtual void | addChild (Widget &, bool readOnly=true) |
| Add a child widget.
|
|
virtual void | render (const cv::Mat &) |
| Display widget in input mode (with OK/Cancel buttons)
|
|
virtual bool | contains (const gui_point_t &) |
| Check if point is inside the widget.
|
|
void | startDragging () |
| Signal that the user started dragging the widget.
|
|
void | stopDragging () |
| Signal that the user stopped dragging the widget.
|
|
bool | isDragging () |
| Check if the user is dragging the widget.
|
|
virtual void | setMouseOver (bool mouseOver) |
| Signal that the user placed the mouse pointer over the widget.
|
|
virtual bool | isMouseOver () |
| Check if the mouse pointer is over the widget.
|
|
virtual bool | isReadOnly () |
| Check if Widget is read-only.
|
|
virtual gui_point_t | position () |
| Get the current position.
|
|
bool | isMouseOverButton (gui_point_t mousePosition, gui_point_t buttonPosition) |
| Check if the mouse pointer is over a button.
|
|
void | hide () |
| Make it disappear from an Image.
|
|
Widget that represents a point.