< prev index next >

src/java.desktop/windows/native/libawt/windows/awt_MouseEvent.h

Print this page




  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 /************************************************************************
  27  * AwtMouseEvent class
  28  */
  29 
  30 #ifndef AWT_MOUSEEVENT_H
  31 #define AWT_MOUSEEVENT_H
  32 
  33 #include <jni.h>
  34 #include <jni_util.h>
  35 
  36 class AwtMouseEvent {
  37 public:
  38 
  39     /* java.awt.MouseEvent field ids */
  40     static jfieldID xID;
  41     static jfieldID yID;

  42     static jfieldID buttonID;
  43 
  44 };
  45 
  46 #endif // AWT_MOUSEEVENT_H


  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 /************************************************************************
  27  * AwtMouseEvent class
  28  */
  29 
  30 #ifndef AWT_MOUSEEVENT_H
  31 #define AWT_MOUSEEVENT_H
  32 
  33 #include <jni.h>
  34 #include <jni_util.h>
  35 
  36 class AwtMouseEvent {
  37 public:
  38 
  39     /* java.awt.MouseEvent field ids */
  40     static jfieldID xID;
  41     static jfieldID yID;
  42     static jfieldID causedByTouchEventID;
  43     static jfieldID buttonID;
  44 
  45 };
  46 
  47 #endif // AWT_MOUSEEVENT_H
< prev index next >