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/TQWheelEvent.java

47 lines
1.7 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.trinitydesktop.qt;
import org.trinitydesktop.qt.Qt;
public class TQWheelEvent extends TQEvent {
protected TQWheelEvent(Class dummy){super((Class) null);}
public TQWheelEvent(TQPoint pos, int delta, int state, int orient) {
super((Class) null);
newTQWheelEvent(pos,delta,state,orient);
}
private native void newTQWheelEvent(TQPoint pos, int delta, int state, int orient);
public TQWheelEvent(TQPoint pos, int delta, int state) {
super((Class) null);
newTQWheelEvent(pos,delta,state);
}
private native void newTQWheelEvent(TQPoint pos, int delta, int state);
public TQWheelEvent(TQPoint pos, TQPoint globalPos, int delta, int state, int orient) {
super((Class) null);
newTQWheelEvent(pos,globalPos,delta,state,orient);
}
private native void newTQWheelEvent(TQPoint pos, TQPoint globalPos, int delta, int state, int orient);
public TQWheelEvent(TQPoint pos, TQPoint globalPos, int delta, int state) {
super((Class) null);
newTQWheelEvent(pos,globalPos,delta,state);
}
private native void newTQWheelEvent(TQPoint pos, TQPoint globalPos, int delta, int state);
public native int delta();
public native TQPoint pos();
public native TQPoint globalPos();
public native int x();
public native int y();
public native int globalX();
public native int globalY();
public native int state();
public native int orientation();
public native boolean isAccepted();
public native void accept();
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();
}