diff options
author | Sven Gothel <[email protected]> | 2008-06-25 05:50:55 +0000 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2008-06-25 05:50:55 +0000 |
commit | b02adebb3213e19aecfe84e6966e52976e5c09cf (patch) | |
tree | 6435fdac5e3ccad90ae1e96b684e56d79fb57bcf /src/native/newt/MouseEvent.h | |
parent | 800c7da4656277810d579e76b74558434bb6467c (diff) |
Native Compilation: Partitioning and X11 clean
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/branches/JOGL_2_SANDBOX@1680 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'src/native/newt/MouseEvent.h')
-rw-r--r-- | src/native/newt/MouseEvent.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/native/newt/MouseEvent.h b/src/native/newt/MouseEvent.h new file mode 100644 index 000000000..13e805028 --- /dev/null +++ b/src/native/newt/MouseEvent.h @@ -0,0 +1,13 @@ + +#ifndef _MOUSE_EVENT_H_ +#define _MOUSE_EVENT_H_ + +// Generated by Java: EVENT_MOUSE_CLICKED +#define EVENT_MOUSE_ENTERED (1 << 1) +#define EVENT_MOUSE_EXITED (1 << 2) +#define EVENT_MOUSE_PRESSED (1 << 3) +#define EVENT_MOUSE_RELEASED (1 << 4) +#define EVENT_MOUSE_MOVED (1 << 5) +// Generated by Java: EVENT_MOUSE_DRAGGED (1 << 6) + +#endif |