From 1fe4bcde39507769255080b5e98c1c09119902f2 Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Fri, 11 Jul 2014 20:41:50 +0200 Subject: Added gwinDrawThickLine() wrapper for corresponding GDISP call --- src/gwin/sys_defs.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'src/gwin/sys_defs.h') diff --git a/src/gwin/sys_defs.h b/src/gwin/sys_defs.h index 830827b2..169b4498 100644 --- a/src/gwin/sys_defs.h +++ b/src/gwin/sys_defs.h @@ -600,6 +600,24 @@ extern "C" { */ void gwinDrawLine(GHandle gh, coord_t x0, coord_t y0, coord_t x1, coord_t y1); + /** + * @brief Draw a thick line in the window + * @details The line thickness is specified in pixels. The line ends can + * be selected to be either flat or round. + * @note Uses gdispGFillConvexPoly() internally to perform the drawing. + * @note Uses the current foreground color to draw the line + * + * @param[in] gh The window handle + * @param[in] x0,y0 The start position + * @param[in] x1,y1 The end position + * @param[in] color The color to use + * @param[in] width The width of the line + * @param[in] round Use round ends for the line + * + * @api + */ + void gwinDrawThickLine(GHandle gh, coord_t x0, coord_t y0, coord_t x1, coord_t y1, coord_t width, bool_t round); + /** * @brief Draw a box in the window * @note Uses the current foreground color to draw the box -- cgit v1.2.3