summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/org/kde/qt/QCursor.java
diff options
context:
space:
mode:
Diffstat (limited to 'qtjava/javalib/org/kde/qt/QCursor.java')
-rw-r--r--qtjava/javalib/org/kde/qt/QCursor.java69
1 files changed, 69 insertions, 0 deletions
diff --git a/qtjava/javalib/org/kde/qt/QCursor.java b/qtjava/javalib/org/kde/qt/QCursor.java
new file mode 100644
index 00000000..ef789934
--- /dev/null
+++ b/qtjava/javalib/org/kde/qt/QCursor.java
@@ -0,0 +1,69 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.kde.qt;
+
+import org.kde.qt.Qt;
+
+public class QCursor extends Qt {
+ protected QCursor(Class dummy){super((Class) null);}
+ public QCursor() {
+ super((Class) null);
+ newQCursor();
+ }
+ private native void newQCursor();
+ public QCursor(int shape) {
+ super((Class) null);
+ newQCursor(shape);
+ }
+ private native void newQCursor(int shape);
+ public QCursor(QBitmap bitmap, QBitmap mask, int hotX, int hotY) {
+ super((Class) null);
+ newQCursor(bitmap,mask,hotX,hotY);
+ }
+ private native void newQCursor(QBitmap bitmap, QBitmap mask, int hotX, int hotY);
+ public QCursor(QBitmap bitmap, QBitmap mask, int hotX) {
+ super((Class) null);
+ newQCursor(bitmap,mask,hotX);
+ }
+ private native void newQCursor(QBitmap bitmap, QBitmap mask, int hotX);
+ public QCursor(QBitmap bitmap, QBitmap mask) {
+ super((Class) null);
+ newQCursor(bitmap,mask);
+ }
+ private native void newQCursor(QBitmap bitmap, QBitmap mask);
+ public QCursor(QPixmap pixmap, int hotX, int hotY) {
+ super((Class) null);
+ newQCursor(pixmap,hotX,hotY);
+ }
+ private native void newQCursor(QPixmap pixmap, int hotX, int hotY);
+ public QCursor(QPixmap pixmap, int hotX) {
+ super((Class) null);
+ newQCursor(pixmap,hotX);
+ }
+ private native void newQCursor(QPixmap pixmap, int hotX);
+ public QCursor(QPixmap pixmap) {
+ super((Class) null);
+ newQCursor(pixmap);
+ }
+ private native void newQCursor(QPixmap pixmap);
+ public QCursor(QCursor arg1) {
+ super((Class) null);
+ newQCursor(arg1);
+ }
+ private native void newQCursor(QCursor arg1);
+ public native int shape();
+ public native void setShape(int arg1);
+ public native QBitmap bitmap();
+ public native QBitmap mask();
+ public native QPoint hotSpot();
+ public static native QPoint pos();
+ public static native void setPos(int x, int y);
+ public static native void setPos(QPoint arg1);
+ public static native void initialize();
+ public static native void cleanup();
+ /** Deletes the wrapped C++ instance */
+ protected native void finalize() throws InternalError;
+ /** Delete the wrapped C++ instance ahead of finalize() */
+ public native void dispose();
+ /** Has the wrapped C++ instance been deleted? */
+ public native boolean isDisposed();
+}