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.
45 lines
1.8 KiB
45 lines
1.8 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 TQKeyEvent extends TQEvent {
|
||
|
protected TQKeyEvent(Class dummy){super((Class) null);}
|
||
|
public TQKeyEvent(int type, int key, int ascii, int state, String text, boolean autorep, short count) {
|
||
15 years ago
|
super((Class) null);
|
||
13 years ago
|
newTQKeyEvent(type,key,ascii,state,text,autorep,count);
|
||
15 years ago
|
}
|
||
13 years ago
|
private native void newTQKeyEvent(int type, int key, int ascii, int state, String text, boolean autorep, short count);
|
||
|
public TQKeyEvent(int type, int key, int ascii, int state, String text, boolean autorep) {
|
||
15 years ago
|
super((Class) null);
|
||
13 years ago
|
newTQKeyEvent(type,key,ascii,state,text,autorep);
|
||
15 years ago
|
}
|
||
13 years ago
|
private native void newTQKeyEvent(int type, int key, int ascii, int state, String text, boolean autorep);
|
||
|
public TQKeyEvent(int type, int key, int ascii, int state, String text) {
|
||
15 years ago
|
super((Class) null);
|
||
13 years ago
|
newTQKeyEvent(type,key,ascii,state,text);
|
||
15 years ago
|
}
|
||
13 years ago
|
private native void newTQKeyEvent(int type, int key, int ascii, int state, String text);
|
||
|
public TQKeyEvent(int type, int key, int ascii, int state) {
|
||
15 years ago
|
super((Class) null);
|
||
13 years ago
|
newTQKeyEvent(type,key,ascii,state);
|
||
15 years ago
|
}
|
||
13 years ago
|
private native void newTQKeyEvent(int type, int key, int ascii, int state);
|
||
15 years ago
|
public native int key();
|
||
|
public native int ascii();
|
||
|
public native int state();
|
||
|
public native int stateAfter();
|
||
|
public native boolean isAccepted();
|
||
|
public native String text();
|
||
|
public native boolean isAutoRepeat();
|
||
|
public native int count();
|
||
|
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();
|
||
|
}
|