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.
tdebindings/qtjava/javalib/org/trinitydesktop/qt/TQContextMenuEvent.java

42 lines
1.5 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.trinitydesktop.qt;
import org.trinitydesktop.qt.Qt;
public class TQContextMenuEvent extends TQEvent {
protected TQContextMenuEvent(Class dummy){super((Class) null);}
public static final int Mouse = 0;
public static final int Keyboard = 1;
public static final int Other = 2;
public TQContextMenuEvent(int reason, TQPoint pos, TQPoint globalPos, int state) {
super((Class) null);
newTQContextMenuEvent(reason,pos,globalPos,state);
}
private native void newTQContextMenuEvent(int reason, TQPoint pos, TQPoint globalPos, int state);
public TQContextMenuEvent(int reason, TQPoint pos, int state) {
super((Class) null);
newTQContextMenuEvent(reason,pos,state);
}
private native void newTQContextMenuEvent(int reason, TQPoint pos, int state);
public native int x();
public native int y();
public native int globalX();
public native int globalY();
public native TQPoint pos();
public native TQPoint globalPos();
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();
}