diff options
Diffstat (limited to 'qtjava/javalib/org/kde/qt/QDragMoveEvent.java')
-rw-r--r-- | qtjava/javalib/org/kde/qt/QDragMoveEvent.java | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/qtjava/javalib/org/kde/qt/QDragMoveEvent.java b/qtjava/javalib/org/kde/qt/QDragMoveEvent.java new file mode 100644 index 00000000..b4a54c7e --- /dev/null +++ b/qtjava/javalib/org/kde/qt/QDragMoveEvent.java @@ -0,0 +1,30 @@ +//Auto-generated by kalyptus. DO NOT EDIT. +package org.kde.qt; + +import org.kde.qt.Qt; + +public class QDragMoveEvent extends QDropEvent { + protected QDragMoveEvent(Class dummy){super((Class) null);} + public QDragMoveEvent(QPoint pos, int typ) { + super((Class) null); + newQDragMoveEvent(pos,typ); + } + private native void newQDragMoveEvent(QPoint pos, int typ); + public QDragMoveEvent(QPoint pos) { + super((Class) null); + newQDragMoveEvent(pos); + } + private native void newQDragMoveEvent(QPoint pos); + public native QRect answerRect(); + public native void accept(boolean y); + public native void accept(); + public native void accept(QRect r); + public native void ignore(QRect r); + public native void ignore(); + /** 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(); +} |