Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'intern/ghost/GHOST_Types.h')
-rw-r--r--intern/ghost/GHOST_Types.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/intern/ghost/GHOST_Types.h b/intern/ghost/GHOST_Types.h
index 69513ec514c..faba5bb996a 100644
--- a/intern/ghost/GHOST_Types.h
+++ b/intern/ghost/GHOST_Types.h
@@ -367,10 +367,14 @@ typedef enum {
} GHOST_TKey;
typedef enum {
- GHOST_kGrabDisable = 0, /* grab not set */
- GHOST_kGrabNormal, /* no cursor adjustments */
- GHOST_kGrabWrap, /* wrap the mouse location to prevent limiting screen bounds */
- GHOST_kGrabHide, /* hide the mouse while grabbing and restore the original location on release (numbuts) */
+ /** Grab not set. */
+ GHOST_kGrabDisable = 0,
+ /** No cursor adjustments. */
+ GHOST_kGrabNormal,
+ /** Wrap the mouse location to prevent limiting screen bounds. */
+ GHOST_kGrabWrap,
+ /** Hide the mouse while grabbing and restore the original location on release (numbuts). */
+ GHOST_kGrabHide,
} GHOST_TGrabCursorMode;
typedef void *GHOST_TEventDataPtr;