aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--docs/releases.txt1
-rw-r--r--src/gwin/sys_defs.h18
2 files changed, 19 insertions, 0 deletions
diff --git a/docs/releases.txt b/docs/releases.txt
index ce6b3c9e..859c7edd 100644
--- a/docs/releases.txt
+++ b/docs/releases.txt
@@ -32,6 +32,7 @@ FEATURE: Update GADC audio recording driver to new GAUDIO format
FEATURE: Added vs1053 audio play driver
FEATURE: Added GAUDIO wave-play demo
FEATURE: Added many GWIN simple demo's and updated the combined widget demo
+FEATURE: Added gwinEnable() and gwinDisable()
*** changes after 1.9 ***
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
@@ -337,6 +337,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
*