diff options
author | Joel Bodenmann <joel@unormal.org> | 2012-12-18 23:15:47 +0100 |
---|---|---|
committer | Joel Bodenmann <joel@unormal.org> | 2012-12-18 23:15:47 +0100 |
commit | a520a32209cc6057b985bde5d0ad21a8f4186bf2 (patch) | |
tree | ea0aad71d6370c9ef1840607ed69680dd7f6a159 /include/ginput | |
parent | a75653f7a1dbe7fc8317fcc3d8d2331855d3a036 (diff) | |
download | uGFX-a520a32209cc6057b985bde5d0ad21a8f4186bf2.tar.gz uGFX-a520a32209cc6057b985bde5d0ad21a8f4186bf2.tar.bz2 uGFX-a520a32209cc6057b985bde5d0ad21a8f4186bf2.zip |
more doxygen
Diffstat (limited to 'include/ginput')
-rw-r--r-- | include/ginput/dial.h | 2 | ||||
-rw-r--r-- | include/ginput/ginput.h | 6 | ||||
-rw-r--r-- | include/ginput/keyboard.h | 3 | ||||
-rw-r--r-- | include/ginput/lld/mouse.h | 4 | ||||
-rw-r--r-- | include/ginput/lld/toggle.h | 4 | ||||
-rw-r--r-- | include/ginput/mouse.h | 3 | ||||
-rw-r--r-- | include/ginput/toggle.h | 2 |
7 files changed, 18 insertions, 6 deletions
diff --git a/include/ginput/dial.h b/include/ginput/dial.h index a765f7f2..5679685e 100644 --- a/include/ginput/dial.h +++ b/include/ginput/dial.h @@ -21,7 +21,7 @@ * @file include/ginput/dial.h
* @brief GINPUT GFX User Input subsystem header file.
*
- * @defgroup Dial
+ * @defgroup Dial Dial
* @ingroup GINPUT
*
* @details A dial provides a powerful way to navigate through menus
diff --git a/include/ginput/ginput.h b/include/ginput/ginput.h index ec8acca7..59f7640c 100644 --- a/include/ginput/ginput.h +++ b/include/ginput/ginput.h @@ -22,6 +22,12 @@ * @brief GINPUT GFX User Input subsystem header file.
*
* @addtogroup GINPUT
+ *
+ * @details GINPUT provides an easy and common interface to use different input devices
+ * such as touchscreens and mices.
+ *
+ * @pre GFX_USE_GINPUT must be set to TRUE in your gfxconf.h
+ *
* @{
*/
#ifndef _GINPUT_H
diff --git a/include/ginput/keyboard.h b/include/ginput/keyboard.h index 756b78e4..9f5df32e 100644 --- a/include/ginput/keyboard.h +++ b/include/ginput/keyboard.h @@ -21,10 +21,11 @@ * @file include/ginput/keyboard.h
* @brief GINPUT GFX User Input subsystem header file.
*
- * @defgroup Keyboard
+ * @defgroup Keyboard Keyboard
* @ingroup GINPUT
* @{
*/
+
#ifndef _GINPUT_KEYBOARD_H
#define _GINPUT_KEYBOARD_H
diff --git a/include/ginput/lld/mouse.h b/include/ginput/lld/mouse.h index 1b956c78..5f4ba52c 100644 --- a/include/ginput/lld/mouse.h +++ b/include/ginput/lld/mouse.h @@ -21,10 +21,11 @@ * @file include/ginput/lld/mouse.h
* @brief GINPUT LLD header file for mouse/touch drivers.
*
- * @defgroup Mouse
+ * @defgroup Mouse Mouse
* @ingroup GINPUT
* @{
*/
+
#ifndef _LLD_GINPUT_MOUSE_H
#define _LLD_GINPUT_MOUSE_H
@@ -117,3 +118,4 @@ extern "C" { #endif /* _LLD_GINPUT_MOUSE_H */
/** @} */
+
diff --git a/include/ginput/lld/toggle.h b/include/ginput/lld/toggle.h index 77f6b346..a75a670f 100644 --- a/include/ginput/lld/toggle.h +++ b/include/ginput/lld/toggle.h @@ -21,10 +21,11 @@ * @file include/ginput/lld/toggle.h
* @brief GINPUT header file for toggle drivers.
*
- * @defgroup Toggle
+ * @defgroup Toggle Toggle
* @ingroup GINPUT
* @{
*/
+
#ifndef _LLD_GINPUT_TOGGLE_H
#define _LLD_GINPUT_TOGGLE_H
@@ -69,3 +70,4 @@ extern "C" { #endif /* _LLD_GINPUT_TOGGLE_H */
/** @} */
+
diff --git a/include/ginput/mouse.h b/include/ginput/mouse.h index bb4bb547..5385ff17 100644 --- a/include/ginput/mouse.h +++ b/include/ginput/mouse.h @@ -21,7 +21,7 @@ * @file include/ginput/mouse.h
* @brief GINPUT GFX User Input subsystem header file for mouse and touch.
*
- * @defgroup Mouse
+ * @defgroup Mouse Mouse
* @ingroup GINPUT
*
* @details GINPUT allows it to easily interface touchscreens and mices to
@@ -32,6 +32,7 @@ *
* @{
*/
+
#ifndef _GINPUT_MOUSE_H
#define _GINPUT_MOUSE_H
diff --git a/include/ginput/toggle.h b/include/ginput/toggle.h index 078aa92a..bec4ed32 100644 --- a/include/ginput/toggle.h +++ b/include/ginput/toggle.h @@ -21,7 +21,7 @@ * @file include/ginput/toggle.h
* @brief GINPUT GFX User Input subsystem header file.
*
- * @defgroup Toggle
+ * @defgroup Toggle Toggle
* @ingroup GINPUT
*
* @details GINPUT allows it to interface toggle buttons easily to your
|