diff options
author | inmarket <andrewh@inmarket.com.au> | 2015-10-13 01:00:48 +1000 |
---|---|---|
committer | inmarket <andrewh@inmarket.com.au> | 2015-10-13 01:00:48 +1000 |
commit | 9d3fc8b36cb57fa23c0b838a54a8bc67328f9672 (patch) | |
tree | fee15031006a070adb49279540067e90aa6be934 /src/gwin/gwin_options.h | |
parent | 92b000291826ca78c30f205c104ac330484b82c9 (diff) | |
parent | 10c7471149453cea6686aa6f61ec6dac0525c47b (diff) | |
download | uGFX-9d3fc8b36cb57fa23c0b838a54a8bc67328f9672.tar.gz uGFX-9d3fc8b36cb57fa23c0b838a54a8bc67328f9672.tar.bz2 uGFX-9d3fc8b36cb57fa23c0b838a54a8bc67328f9672.zip |
Merge branch 'master' into Keil
Diffstat (limited to 'src/gwin/gwin_options.h')
-rw-r--r-- | src/gwin/gwin_options.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/gwin/gwin_options.h b/src/gwin/gwin_options.h index b69796c3..45dfcd36 100644 --- a/src/gwin/gwin_options.h +++ b/src/gwin/gwin_options.h @@ -45,6 +45,13 @@ #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 */ @@ -142,6 +149,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 /** * @} * |