aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/gwin/gwin.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/gwin/gwin.h b/include/gwin/gwin.h
index e7c164dc..7a6aba09 100644
--- a/include/gwin/gwin.h
+++ b/include/gwin/gwin.h
@@ -128,6 +128,22 @@ const char *gwinGetClassName(GHandle gh);
#define gwinGetHeight(gh) ((gh)->height)
/**
+ * @brief Set the default foreground color for all new GWIN windows
+ *
+ * @param[in] gh The window
+ * @param[in] clr The color to be set
+ */
+void gwinSetDefaultColor(color_t clr);
+
+/**
+ * @brief Set the default background color for all new GWIN windows
+ *
+ * @param[in] gh The window
+ * @param[in] bgclr The background color
+ */
+void gwinSetDefaultBgColor(color_t bgclr);
+
+/**
* @brief Set foreground color
* @details Set the color which will be used to draw
*