summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KIntSpinBox.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/KIntSpinBox.java')
-rw-r--r--kdejava/koala/org/kde/koala/KIntSpinBox.java38
1 files changed, 19 insertions, 19 deletions
diff --git a/kdejava/koala/org/kde/koala/KIntSpinBox.java b/kdejava/koala/org/kde/koala/KIntSpinBox.java
index dd01b526..efbba247 100644
--- a/kdejava/koala/org/kde/koala/KIntSpinBox.java
+++ b/kdejava/koala/org/kde/koala/KIntSpinBox.java
@@ -2,23 +2,23 @@
package org.kde.koala;
import org.kde.qt.Qt;
-import org.kde.qt.QMetaObject;
+import org.kde.qt.TQMetaObject;
import org.kde.qt.QtSupport;
-import org.kde.qt.QWidget;
-import org.kde.qt.QSpinBox;
+import org.kde.qt.TQWidget;
+import org.kde.qt.TQSpinBox;
/**
- A QSpinBox with support for arbitrary base numbers
+ A TQSpinBox with support for arbitrary base numbers
(e.g. hexadecimal).
The class provides an easy interface to use other
numeric systems than the decimal.
- @short A QSpinBox with support for arbitrary base numbers.
+ @short A TQSpinBox with support for arbitrary base numbers.
*/
-public class KIntSpinBox extends QSpinBox {
+public class KIntSpinBox extends TQSpinBox {
protected KIntSpinBox(Class dummy){super((Class) null);}
- public native QMetaObject metaObject();
+ public native TQMetaObject metaObject();
public native String className();
/**
Constructor.
@@ -27,16 +27,16 @@ public class KIntSpinBox extends QSpinBox {
and initial value 0.
@short Constructor.
*/
- public KIntSpinBox(QWidget parent, String name) {
+ public KIntSpinBox(TQWidget parent, String name) {
super((Class) null);
newKIntSpinBox(parent,name);
}
- private native void newKIntSpinBox(QWidget parent, String name);
- public KIntSpinBox(QWidget parent) {
+ private native void newKIntSpinBox(TQWidget parent, String name);
+ public KIntSpinBox(TQWidget parent) {
super((Class) null);
newKIntSpinBox(parent);
}
- private native void newKIntSpinBox(QWidget parent);
+ private native void newKIntSpinBox(TQWidget parent);
public KIntSpinBox() {
super((Class) null);
newKIntSpinBox();
@@ -55,16 +55,16 @@ public class KIntSpinBox extends QSpinBox {
@param name The Name of the widget.
@short Constructor.
*/
- public KIntSpinBox(int lower, int upper, int step, int value, int base, QWidget parent, String name) {
+ public KIntSpinBox(int lower, int upper, int step, int value, int base, TQWidget parent, String name) {
super((Class) null);
newKIntSpinBox(lower,upper,step,value,base,parent,name);
}
- private native void newKIntSpinBox(int lower, int upper, int step, int value, int base, QWidget parent, String name);
- public KIntSpinBox(int lower, int upper, int step, int value, int base, QWidget parent) {
+ private native void newKIntSpinBox(int lower, int upper, int step, int value, int base, TQWidget parent, String name);
+ public KIntSpinBox(int lower, int upper, int step, int value, int base, TQWidget parent) {
super((Class) null);
newKIntSpinBox(lower,upper,step,value,base,parent);
}
- private native void newKIntSpinBox(int lower, int upper, int step, int value, int base, QWidget parent);
+ private native void newKIntSpinBox(int lower, int upper, int step, int value, int base, TQWidget parent);
public KIntSpinBox(int lower, int upper, int step, int value, int base) {
super((Class) null);
newKIntSpinBox(lower,upper,step,value,base);
@@ -92,15 +92,15 @@ public class KIntSpinBox extends QSpinBox {
*/
public native void setEditFocus(boolean mark);
/**
- Overloaded the method in QSpinBox
+ Overloaded the method in TQSpinBox
to make use of the base given in the constructor.
- @short Overloaded the method in QSpinBox to make use of the base given in the constructor.
+ @short Overloaded the method in TQSpinBox to make use of the base given in the constructor.
*/
protected native String mapValueToText(int arg1);
/**
- Overloaded the method in QSpinBox
+ Overloaded the method in TQSpinBox
to make use of the base given in the constructor.
- @short Overloaded the method in QSpinBox to make use of the base given in the constructor.
+ @short Overloaded the method in TQSpinBox to make use of the base given in the constructor.
*/
protected native int mapTextToValue(boolean[] arg1);
/** Deletes the wrapped C++ instance */