summaryrefslogtreecommitdiff
path: root/libjava/java/awt/AWTEvent.h
diff options
context:
space:
mode:
authorupstream source tree <ports@midipix.org>2015-03-15 20:14:05 -0400
committerupstream source tree <ports@midipix.org>2015-03-15 20:14:05 -0400
commit554fd8c5195424bdbcabf5de30fdc183aba391bd (patch)
tree976dc5ab7fddf506dadce60ae936f43f58787092 /libjava/java/awt/AWTEvent.h
downloadcbb-gcc-4.6.4-15d2061ac0796199866debe9ac87130894b0cdd3.tar.bz2
cbb-gcc-4.6.4-15d2061ac0796199866debe9ac87130894b0cdd3.tar.xz
obtained gcc-4.6.4.tar.bz2 from upstream website;upstream
verified gcc-4.6.4.tar.bz2.sig; imported gcc-4.6.4 source tree from verified upstream tarball. downloading a git-generated archive based on the 'upstream' tag should provide you with a source tree that is binary identical to the one extracted from the above tarball. if you have obtained the source via the command 'git clone', however, do note that line-endings of files in your working directory might differ from line-endings of the respective files in the upstream repository.
Diffstat (limited to 'libjava/java/awt/AWTEvent.h')
-rw-r--r--libjava/java/awt/AWTEvent.h75
1 files changed, 75 insertions, 0 deletions
diff --git a/libjava/java/awt/AWTEvent.h b/libjava/java/awt/AWTEvent.h
new file mode 100644
index 000000000..94d090a9f
--- /dev/null
+++ b/libjava/java/awt/AWTEvent.h
@@ -0,0 +1,75 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __java_awt_AWTEvent__
+#define __java_awt_AWTEvent__
+
+#pragma interface
+
+#include <java/util/EventObject.h>
+#include <gcj/array.h>
+
+extern "Java"
+{
+ namespace java
+ {
+ namespace awt
+ {
+ class AWTEvent;
+ class Event;
+ }
+ }
+}
+
+class java::awt::AWTEvent : public ::java::util::EventObject
+{
+
+public:
+ AWTEvent(::java::awt::Event *);
+ AWTEvent(::java::lang::Object *, jint);
+ virtual void setSource(::java::lang::Object *);
+ virtual jint getID();
+ virtual ::java::lang::String * toString();
+ virtual ::java::lang::String * paramString();
+public: // actually protected
+ virtual void consume();
+ virtual jboolean isConsumed();
+public: // actually package-private
+ static jlong eventIdToMask(jint);
+private:
+ static const jlong serialVersionUID = -1825314779160409405LL;
+public: // actually protected
+ jint __attribute__((aligned(__alignof__( ::java::util::EventObject)))) id;
+ jboolean consumed;
+public: // actually package-private
+ ::java::awt::AWTEvent * queueNext;
+ JArray< jbyte > * bdata;
+ jboolean isFocusManagerEvent;
+public:
+ static const jlong COMPONENT_EVENT_MASK = 1LL;
+ static const jlong CONTAINER_EVENT_MASK = 2LL;
+ static const jlong FOCUS_EVENT_MASK = 4LL;
+ static const jlong KEY_EVENT_MASK = 8LL;
+ static const jlong MOUSE_EVENT_MASK = 16LL;
+ static const jlong MOUSE_MOTION_EVENT_MASK = 32LL;
+ static const jlong WINDOW_EVENT_MASK = 64LL;
+ static const jlong ACTION_EVENT_MASK = 128LL;
+ static const jlong ADJUSTMENT_EVENT_MASK = 256LL;
+ static const jlong ITEM_EVENT_MASK = 512LL;
+ static const jlong TEXT_EVENT_MASK = 1024LL;
+ static const jlong INPUT_METHOD_EVENT_MASK = 2048LL;
+public: // actually package-private
+ static const jlong INPUT_ENABLED_EVENT_MASK = 4096LL;
+public:
+ static const jlong PAINT_EVENT_MASK = 8192LL;
+ static const jlong INVOCATION_EVENT_MASK = 16384LL;
+ static const jlong HIERARCHY_EVENT_MASK = 32768LL;
+ static const jlong HIERARCHY_BOUNDS_EVENT_MASK = 65536LL;
+ static const jlong MOUSE_WHEEL_EVENT_MASK = 131072LL;
+ static const jlong WINDOW_STATE_EVENT_MASK = 262144LL;
+ static const jlong WINDOW_FOCUS_EVENT_MASK = 524288LL;
+ static const jint RESERVED_ID_MAX = 1999;
+ static ::java::lang::Class class$;
+};
+
+#endif // __java_awt_AWTEvent__