summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/org/kde/qt/TQKeyEvent.java
diff options
context:
space:
mode:
Diffstat (limited to 'qtjava/javalib/org/kde/qt/TQKeyEvent.java')
-rw-r--r--qtjava/javalib/org/kde/qt/TQKeyEvent.java44
1 files changed, 0 insertions, 44 deletions
diff --git a/qtjava/javalib/org/kde/qt/TQKeyEvent.java b/qtjava/javalib/org/kde/qt/TQKeyEvent.java
deleted file mode 100644
index 50015bfc..00000000
--- a/qtjava/javalib/org/kde/qt/TQKeyEvent.java
+++ /dev/null
@@ -1,44 +0,0 @@
-//Auto-generated by kalyptus. DO NOT EDIT.
-package org.kde.qt;
-
-import org.kde.qt.Qt;
-
-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) {
- super((Class) null);
- newTQKeyEvent(type,key,ascii,state,text,autorep,count);
- }
- 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) {
- super((Class) null);
- newTQKeyEvent(type,key,ascii,state,text,autorep);
- }
- 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) {
- super((Class) null);
- newTQKeyEvent(type,key,ascii,state,text);
- }
- private native void newTQKeyEvent(int type, int key, int ascii, int state, String text);
- public TQKeyEvent(int type, int key, int ascii, int state) {
- super((Class) null);
- newTQKeyEvent(type,key,ascii,state);
- }
- private native void newTQKeyEvent(int type, int key, int ascii, int state);
- 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();
-}