diff options
author | Joel Bodenmann <joel@unormal.org> | 2014-01-04 04:41:32 +0100 |
---|---|---|
committer | Joel Bodenmann <joel@unormal.org> | 2014-01-04 04:41:32 +0100 |
commit | abe6a47c1f59941faac719770aa654d2c79cacef (patch) | |
tree | bae98fd4e90b4e1467523a26fbd1263dc78b0777 /include/gwin/options.h | |
parent | 07869da90938e375e71081d30757cc767596b431 (diff) | |
download | uGFX-abe6a47c1f59941faac719770aa654d2c79cacef.tar.gz uGFX-abe6a47c1f59941faac719770aa654d2c79cacef.tar.bz2 uGFX-abe6a47c1f59941faac719770aa654d2c79cacef.zip |
basic implementation of parent/child (no flag handling done yet)
Diffstat (limited to 'include/gwin/options.h')
-rw-r--r-- | include/gwin/options.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/gwin/options.h b/include/gwin/options.h index e6d2a81e..83aaee2c 100644 --- a/include/gwin/options.h +++ b/include/gwin/options.h @@ -30,6 +30,13 @@ #define GWIN_NEED_WIDGET FALSE #endif /** + * @brief Should the widget hierarchy be included. This provides parent-child features. + * @details Defaults to FALSE + */ + #ifndef GWIN_NEED_HIERARCHY + #define GWIN_NEED_HIERARCHY FALSE + #endif + /** * @brief Should widget functions be included. Needed for any widget (eg Buttons, Sliders etc) * @details Defaults to FALSE */ |