blob: b4a54c7ee2835a24fa08c7fa41977e94cb41d99a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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();
}
|