summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/org/kde/qt/TQButton.java
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-05 21:06:26 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-05 21:06:26 -0600
commite1a0e352b6ead69ed6f55476272ace842fbbdf74 (patch)
treef3052eff3deddf34c2297517f59cc178c130feda /qtjava/javalib/org/kde/qt/TQButton.java
parentbf9353f84ee5920dec2872f63de9f07508e7b4a8 (diff)
downloadtdebindings-e1a0e352b6ead69ed6f55476272ace842fbbdf74.tar.gz
tdebindings-e1a0e352b6ead69ed6f55476272ace842fbbdf74.zip
Rename java files to TQ
Diffstat (limited to 'qtjava/javalib/org/kde/qt/TQButton.java')
-rw-r--r--qtjava/javalib/org/kde/qt/TQButton.java85
1 files changed, 85 insertions, 0 deletions
diff --git a/qtjava/javalib/org/kde/qt/TQButton.java b/qtjava/javalib/org/kde/qt/TQButton.java
new file mode 100644
index 00000000..cf03c64d
--- /dev/null
+++ b/qtjava/javalib/org/kde/qt/TQButton.java
@@ -0,0 +1,85 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.kde.qt;
+
+import org.kde.qt.Qt;
+
+/**
+ See {@link TQButtonSignals} for signals emitted by TQButton
+*/
+public class TQButton extends TQWidget {
+ protected TQButton(Class dummy){super((Class) null);}
+ public static final int SingleShot = 0;
+ public static final int Toggle = 1;
+ public static final int Tristate = 2;
+
+ public static final int Off = 0;
+ public static final int NoChange = 1;
+ public static final int On = 2;
+
+ public native TQMetaObject metaObject();
+ public native String className();
+ public TQButton(TQWidget parent, String name, int f) {
+ super((Class) null);
+ newTQButton(parent,name,f);
+ }
+ private native void newTQButton(TQWidget parent, String name, int f);
+ public TQButton(TQWidget parent, String name) {
+ super((Class) null);
+ newTQButton(parent,name);
+ }
+ private native void newTQButton(TQWidget parent, String name);
+ public TQButton(TQWidget parent) {
+ super((Class) null);
+ newTQButton(parent);
+ }
+ private native void newTQButton(TQWidget parent);
+ public TQButton() {
+ super((Class) null);
+ newTQButton();
+ }
+ private native void newTQButton();
+ public native String text();
+ public native void setText(String arg1);
+ public native TQPixmap pixmap();
+ public native void setPixmap(TQPixmap arg1);
+ public native TQKeySequence accel();
+ public native void setAccel(TQKeySequence arg1);
+ public native boolean isToggleButton();
+ public native int toggleType();
+ public native void setDown(boolean arg1);
+ public native boolean isDown();
+ public native boolean isOn();
+ public native int state();
+ public native boolean autoResize();
+ public native void setAutoResize(boolean arg1);
+ public native boolean autoRepeat();
+ public native void setAutoRepeat(boolean arg1);
+ public native boolean isExclusiveToggle();
+ public native TQButtonGroup group();
+ public native void animateClick();
+ public native void toggle();
+ public static native String tr(String arg1, String arg2);
+ public static native String tr(String arg1);
+ protected native void setToggleButton(boolean arg1);
+ protected native void setToggleType(int arg1);
+ protected native void setOn(boolean arg1);
+ public native void setState(int arg1);
+ protected native boolean hitButton(TQPoint pos);
+ protected native void drawButton(TQPainter arg1);
+ protected native void drawButtonLabel(TQPainter arg1);
+ protected native void keyPressEvent(TQKeyEvent arg1);
+ protected native void keyReleaseEvent(TQKeyEvent arg1);
+ protected native void mousePressEvent(TQMouseEvent arg1);
+ protected native void mouseReleaseEvent(TQMouseEvent arg1);
+ protected native void mouseMoveEvent(TQMouseEvent arg1);
+ protected native void paintEvent(TQPaintEvent arg1);
+ protected native void focusInEvent(TQFocusEvent arg1);
+ protected native void focusOutEvent(TQFocusEvent arg1);
+ protected native void enabledChange(boolean arg1);
+ /** 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();
+}