aboutsummaryrefslogtreecommitdiffstats
path: root/include/gwin/gwin.h
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2014-01-18 20:28:28 +0100
committerJoel Bodenmann <joel@unormal.org>2014-01-18 20:28:28 +0100
commit3a08f65cfcd884b454e835e6319d949e51e0b428 (patch)
treef722f8dcec5f9bff6a00b6ea79122473578eaf38 /include/gwin/gwin.h
parentac690d1d295ec27f4c01064bd692d521c7f8b363 (diff)
downloaduGFX-3a08f65cfcd884b454e835e6319d949e51e0b428.tar.gz
uGFX-3a08f65cfcd884b454e835e6319d949e51e0b428.tar.bz2
uGFX-3a08f65cfcd884b454e835e6319d949e51e0b428.zip
initial work on GGroup
Diffstat (limited to 'include/gwin/gwin.h')
-rw-r--r--include/gwin/gwin.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/include/gwin/gwin.h b/include/gwin/gwin.h
index e74927ae..8e570229 100644
--- a/include/gwin/gwin.h
+++ b/include/gwin/gwin.h
@@ -55,7 +55,7 @@ typedef struct GWindowObject {
GHandle child; // @< The child widget
#endif
} GWindowObject, * GHandle;
-/* @} */
+/** @} */
/**
* @brief The structure to initialise a GWIN.
@@ -70,7 +70,7 @@ typedef struct GWindowInit {
coord_t width, height; // @< The initial dimension
bool_t show; // @< Should the window be visible initially
} GWindowInit;
-/* @} */
+/** @} */
/**
* @brief A window's minimized, maximized or normal size
@@ -906,6 +906,11 @@ extern "C" {
* Additional functionality
*-------------------------------------------------*/
+ /* Include groups */
+ #if GWIN_NEED_GROUPS || defined(__DOXYGEN__)
+ #include "gwin/ggroup.h"
+ #endif
+
/* Include widgets */
#if GWIN_NEED_WIDGET || defined(__DOXYGEN__)
#include "gwin/gwidget.h"