51 #if LE_LINE_WIDGET_ENABLED == 1 59 typedef struct leLineWidget leLineWidget;
72 typedef struct leLineWidget leLineWidget;
74 #define LE_LINEWIDGET_VTABLE(THIS_TYPE) \ 75 LE_WIDGET_VTABLE(THIS_TYPE) \ 77 leResult (*getStartPoint)(const THIS_TYPE* _this, lePoint* pnt); \ 78 leResult (*setStartPoint)(THIS_TYPE* _this, int32_t x, int32_t y); \ 79 leResult (*getEndPoint)(const THIS_TYPE* _this, lePoint* pnt); \ 80 leResult (*setEndPoint)(THIS_TYPE* _this, int32_t x, int32_t y); \ 82 typedef struct leLineWidgetVTable
84 LE_LINEWIDGET_VTABLE(leLineWidget)
100 typedef struct leLineWidget
104 const leLineWidgetVTable* fn;
129 leLineWidget* leLineWidget_New(
void);
141 void leLineWidget_Constructor(leLineWidget* wgt);
144 #define THIS_TYPE struct leWidget 156 virtual lePoint getStartPoint(
const leLineWidget* _this);
173 virtual leResult setStartPoint(leLineWidget* _this,
188 virtual lePoint getEndPoint(
const leLineWidget* _this);
206 virtual leResult setEndPoint(leLineWidget* _this,
217 #endif // LE_LINE_WIDGET_ENABLED Common macros and definitions used by Legato.
leResult
This enum represents function call results.
Definition: legato_common.h:123
This structure represents a integer Cartesian point.
Definition: legato_common.h:346