From efcbd94ea40dd4fb532707765535bd1af1639a03 Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Fri, 30 May 2008 08:54:41 +0000 Subject: Completing com.sun.javafx.newt.* package, WIP, compile clean, but untested. - Input Event Handling: Mouse and Keyboard. - X11 port - Using the VisualID to construct the native window. git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/branches/JOGL_2_SANDBOX@1651 232f8b59-042b-4e1e-8c03-345bb8c30851 --- src/native/jogl/KeyEvent.h | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/native/jogl/KeyEvent.h (limited to 'src/native/jogl/KeyEvent.h') diff --git a/src/native/jogl/KeyEvent.h b/src/native/jogl/KeyEvent.h new file mode 100644 index 000000000..fed4636b1 --- /dev/null +++ b/src/native/jogl/KeyEvent.h @@ -0,0 +1,10 @@ + +#ifndef _KEY_EVENT_H_ +#define _KEY_EVENT_H_ + +#define EVENT_KEY_PRESSED (1 << 0) +#define EVENT_KEY_RELEASED (1 << 1) +// Send by Java: EVENT_KEY_TYPED (1 << 2) + +#endif + -- cgit v1.2.3