From 46ba0420c342eaed1e4365c7e4cb65c0263bc7eb Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Wed, 12 Aug 2015 19:36:14 +0200 Subject: Adding TextEdit dummy widget (not implemented yet) --- src/gwin/gwin_options.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/gwin/gwin_options.h') diff --git a/src/gwin/gwin_options.h b/src/gwin/gwin_options.h index b69796c3..46bd92e7 100644 --- a/src/gwin/gwin_options.h +++ b/src/gwin/gwin_options.h @@ -142,6 +142,13 @@ #ifndef GWIN_NEED_KEYBOARD #define GWIN_NEED_KEYBOARD FALSE #endif + /** + * @brief Should the textedit widget be included. + * @details Defaults to FALSE + */ + #ifndef GWIN_NEED_TEXTEDIT + #define GWIN_NEED_TEXTEDIT FALSE + #endif /** * @} * -- cgit v1.2.3 From 058a873e9e425207db8b99be083e87cf956b9827 Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Sun, 16 Aug 2015 14:37:12 +0200 Subject: Adding GWIN_FOCUS_HIGHLIGHT_WIDTH --- src/gwin/gwin_options.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/gwin/gwin_options.h') diff --git a/src/gwin/gwin_options.h b/src/gwin/gwin_options.h index 46bd92e7..45dfcd36 100644 --- a/src/gwin/gwin_options.h +++ b/src/gwin/gwin_options.h @@ -44,6 +44,13 @@ #ifndef GWIN_NEED_WIDGET #define GWIN_NEED_WIDGET FALSE #endif + /** + * @brief The width of the rectangle that highlights a widget that is focused + * @details Defaults to 1 + */ + #ifndef GWIN_FOCUS_HIGHLIGHT_WIDTH + #define GWIN_FOCUS_HIGHLIGHT_WIDTH 1 + #endif /** * @brief Should the simple container be included. * @details Defaults to FALSE -- cgit v1.2.3