diff options
Diffstat (limited to 'include/gwin/gwin.h')
-rw-r--r-- | include/gwin/gwin.h | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/include/gwin/gwin.h b/include/gwin/gwin.h index 9d3d1dbc..ded401d0 100644 --- a/include/gwin/gwin.h +++ b/include/gwin/gwin.h @@ -42,7 +42,7 @@ typedef struct GWindowObject { #endif const struct gwinVMT *vmt; // @< The VMT for this GWIN GDisplay * display; // @< The display this window is on. - coord_t x, y; // @< Screen relative position + coord_t x, y; // @< Position relative to parent coord_t width, height; // @< Dimensions of this window color_t color, bgcolor; // @< The current drawing colors uint16_t flags; // @< Window flags (the meaning is private to the GWIN class) @@ -337,17 +337,6 @@ extern "C" { bool_t gwinGetEnabled(GHandle gh); /** - * @brief Get absolute coordinates of a window - * - * @param[in] gh The window - * @param[out] x The absolut x coordinate - * @param[out] y The absolut y coordinate - * - * @api - */ - void gwinGetAbsoluteCoordinates(GHandle gh, coord_t *x, coord_t *y); - - /** * @brief Move a window * * @param[in] gh The window |