aboutsummaryrefslogtreecommitdiffstats
path: root/include/gwin/options.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/gwin/options.h')
-rw-r--r--include/gwin/options.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/include/gwin/options.h b/include/gwin/options.h
index 8d78a751..683a6e55 100644
--- a/include/gwin/options.h
+++ b/include/gwin/options.h
@@ -59,9 +59,27 @@
* @name GWIN Optional Parameters
* @{
*/
+ /**
+ * @brief Buttons should not insist the mouse is over the button on mouse release
+ * @details Defaults to FALSE
+ */
#ifndef GWIN_BUTTON_LAZY_RELEASE
#define GWIN_BUTTON_LAZY_RELEASE FALSE
#endif
+ /**
+ * @brief Console Windows need floating point support in @p gwinPrintf
+ * @details Defaults to FALSE
+ */
+ #ifndef GWIN_CONSOLE_USE_FLOAT
+ #define GWIN_CONSOLE_USE_FLOAT FALSE
+ #endif
+ /**
+ * @brief Console Windows need BaseStreamSequential support (ChibiOS only)
+ * @details Defaults to FALSE
+ */
+ #ifndef GWIN_CONSOLE_USE_BASESTREAM
+ #define GWIN_CONSOLE_USE_BASESTREAM FALSE
+ #endif
/** @} */
#endif /* _GWIN_OPTIONS_H */