aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@seriouslyembedded.com>2015-08-14 16:24:05 +0200
committerJoel Bodenmann <joel@seriouslyembedded.com>2015-08-14 16:24:05 +0200
commit51633811777a0424d9bfe77143384a20f832c565 (patch)
treefd4f030c6bd461a46e7eddff056217a9134cf2f0 /src
parent898a42347957ae5f1205ff6543428d77811ea350 (diff)
downloaduGFX-51633811777a0424d9bfe77143384a20f832c565.tar.gz
uGFX-51633811777a0424d9bfe77143384a20f832c565.tar.bz2
uGFX-51633811777a0424d9bfe77143384a20f832c565.zip
Adding TextEdit rules
Diffstat (limited to 'src')
-rw-r--r--src/gwin/gwin_rules.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/gwin/gwin_rules.h b/src/gwin/gwin_rules.h
index 874c59b4..3426eb67 100644
--- a/src/gwin/gwin_rules.h
+++ b/src/gwin/gwin_rules.h
@@ -123,6 +123,14 @@
#error "GWIN: GDISP_NEED_TEXT is required if GWIN_NEED_CONSOLE is TRUE."
#endif
#endif
+ #if GWIN_NEED_TEXTEDIT
+ #if !GDISP_NEED_TEXT
+ #error "GWIN: GDISP_NEED_TEXT is required if GWIN_NEED_TEXTEDIT is TRUE."
+ #endif
+ #if !GINPUT_NEED_KEYBOARD
+ #error "GWIN: GINPUT_NEED_KEYBOARD is required if GWIN_NEED_TEXTEDIT is TRUE."
+ #endif
+ #endif
#endif
#endif /* _GWIN_RULES_H */