summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/org/trinitydesktop/qt/TQVGroupBox.java
diff options
context:
space:
mode:
authorDarrell Anderson <[email protected]>2014-01-08 20:06:00 +0100
committerSlávek Banko <[email protected]>2014-01-08 20:06:00 +0100
commit636f509299122d02087c6fd62e1e4a46dbd22026 (patch)
tree70e43efceeb5b00e7f19cdac8da44928bd2fb459 /qtjava/javalib/org/trinitydesktop/qt/TQVGroupBox.java
parent719b61750c08343f530068ed4127623aeac71cf0 (diff)
downloadtdebindings-636f509299122d02087c6fd62e1e4a46dbd22026.tar.gz
tdebindings-636f509299122d02087c6fd62e1e4a46dbd22026.zip
Rename many classes to avoid conflicts with KDE
Diffstat (limited to 'qtjava/javalib/org/trinitydesktop/qt/TQVGroupBox.java')
-rw-r--r--qtjava/javalib/org/trinitydesktop/qt/TQVGroupBox.java48
1 files changed, 48 insertions, 0 deletions
diff --git a/qtjava/javalib/org/trinitydesktop/qt/TQVGroupBox.java b/qtjava/javalib/org/trinitydesktop/qt/TQVGroupBox.java
new file mode 100644
index 00000000..fb792a6f
--- /dev/null
+++ b/qtjava/javalib/org/trinitydesktop/qt/TQVGroupBox.java
@@ -0,0 +1,48 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.trinitydesktop.qt;
+
+import org.trinitydesktop.qt.Qt;
+
+public class TQVGroupBox extends TQGroupBox {
+ protected TQVGroupBox(Class dummy){super((Class) null);}
+ public native TQMetaObject metaObject();
+ public native String className();
+ public TQVGroupBox(TQWidget parent, String name) {
+ super((Class) null);
+ newTQVGroupBox(parent,name);
+ }
+ private native void newTQVGroupBox(TQWidget parent, String name);
+ public TQVGroupBox(TQWidget parent) {
+ super((Class) null);
+ newTQVGroupBox(parent);
+ }
+ private native void newTQVGroupBox(TQWidget parent);
+ public TQVGroupBox() {
+ super((Class) null);
+ newTQVGroupBox();
+ }
+ private native void newTQVGroupBox();
+ public TQVGroupBox(String title, TQWidget parent, String name) {
+ super((Class) null);
+ newTQVGroupBox(title,parent,name);
+ }
+ private native void newTQVGroupBox(String title, TQWidget parent, String name);
+ public TQVGroupBox(String title, TQWidget parent) {
+ super((Class) null);
+ newTQVGroupBox(title,parent);
+ }
+ private native void newTQVGroupBox(String title, TQWidget parent);
+ public TQVGroupBox(String title) {
+ super((Class) null);
+ newTQVGroupBox(title);
+ }
+ private native void newTQVGroupBox(String title);
+ public static native String tr(String arg1, String arg2);
+ public static native String tr(String 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();
+}