From eae98a50d9f6f5c94c918ea77c4adde146c790c1 Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Wed, 30 Apr 2014 20:55:45 +0200 Subject: Added gwinEnable() and gwinDisable() --- src/gwin/sys_defs.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'src') diff --git a/src/gwin/sys_defs.h b/src/gwin/sys_defs.h index ac2c98c7..f4e1c2f7 100644 --- a/src/gwin/sys_defs.h +++ b/src/gwin/sys_defs.h @@ -336,6 +336,24 @@ extern "C" { */ void gwinSetEnabled(GHandle gh, bool_t enabled); + /** + * @brief Enables a widget + * + * @param[in] gh The window handle + * + * @api + */ + #define gwinEnable(gh) gwinSetEnabled(gh, TRUE); + + /** + * @brief Disables a widget + * + * @param[in] gh The window handle + * + * @api + */ + #define gwinDisable(gh) gwinSetEnabled(gh, FALSE); + /** * @brief Gets the enabled state of a window * @return TRUE if enabled -- cgit v1.2.3