You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.4 KiB
42 lines
1.4 KiB
15 years ago
|
//Auto-generated by kalyptus. DO NOT EDIT.
|
||
|
package org.kde.qt;
|
||
|
|
||
|
import org.kde.qt.Qt;
|
||
|
|
||
13 years ago
|
public class TQContextMenuEvent extends TQEvent {
|
||
|
protected TQContextMenuEvent(Class dummy){super((Class) null);}
|
||
15 years ago
|
public static final int Mouse = 0;
|
||
|
public static final int Keyboard = 1;
|
||
|
public static final int Other = 2;
|
||
|
|
||
13 years ago
|
public TQContextMenuEvent(int reason, TQPoint pos, TQPoint globalPos, int state) {
|
||
15 years ago
|
super((Class) null);
|
||
13 years ago
|
newTQContextMenuEvent(reason,pos,globalPos,state);
|
||
15 years ago
|
}
|
||
13 years ago
|
private native void newTQContextMenuEvent(int reason, TQPoint pos, TQPoint globalPos, int state);
|
||
|
public TQContextMenuEvent(int reason, TQPoint pos, int state) {
|
||
15 years ago
|
super((Class) null);
|
||
13 years ago
|
newTQContextMenuEvent(reason,pos,state);
|
||
15 years ago
|
}
|
||
13 years ago
|
private native void newTQContextMenuEvent(int reason, TQPoint pos, int state);
|
||
15 years ago
|
public native int x();
|
||
|
public native int y();
|
||
|
public native int globalX();
|
||
|
public native int globalY();
|
||
13 years ago
|
public native TQPoint pos();
|
||
|
public native TQPoint globalPos();
|
||
15 years ago
|
public native int state();
|
||
|
public native boolean isAccepted();
|
||
|
public native boolean isConsumed();
|
||
|
public native void consume();
|
||
|
public native void accept();
|
||
|
public native void ignore();
|
||
|
public native int reason();
|
||
|
/** 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();
|
||
|
}
|