diff options
Diffstat (limited to 'include/gwin/gwin.h')
| -rw-r--r-- | include/gwin/gwin.h | 14 | 
1 files changed, 14 insertions, 0 deletions
| diff --git a/include/gwin/gwin.h b/include/gwin/gwin.h index 21d465b2..4fb28bef 100644 --- a/include/gwin/gwin.h +++ b/include/gwin/gwin.h @@ -112,6 +112,13 @@ extern "C" {  	void gwinSetDefaultColor(color_t clr);  	/** +	 * @brief	Get the default foreground color for all new GWIN windows +	 * +	 * @api +	 */ +	color_t gwinGetDefaultColor(void); + +	/**  	 * @brief	Set the default background color for all new GWIN windows  	 *  	 * @param[in] bgclr	The background color @@ -120,6 +127,13 @@ extern "C" {  	 */  	void gwinSetDefaultBgColor(color_t bgclr); +	/** +	 * @brief	Get the default background color for all new GWIN windows +	 * +	 * @api +	 */ +	color_t gwinGetDefaultBgColor(void); +  	#if GDISP_NEED_TEXT || defined(__DOXYGEN__)  		/**  		 * @brief	Set the default font for all new GWIN windows | 
