diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-05 21:06:26 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-05 21:06:26 -0600 |
commit | e1a0e352b6ead69ed6f55476272ace842fbbdf74 (patch) | |
tree | f3052eff3deddf34c2297517f59cc178c130feda /qtjava/javalib/org/kde/qt/TQHBoxLayout.java | |
parent | bf9353f84ee5920dec2872f63de9f07508e7b4a8 (diff) | |
download | tdebindings-e1a0e352b6ead69ed6f55476272ace842fbbdf74.tar.gz tdebindings-e1a0e352b6ead69ed6f55476272ace842fbbdf74.zip |
Rename java files to TQ
Diffstat (limited to 'qtjava/javalib/org/kde/qt/TQHBoxLayout.java')
-rw-r--r-- | qtjava/javalib/org/kde/qt/TQHBoxLayout.java | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/qtjava/javalib/org/kde/qt/TQHBoxLayout.java b/qtjava/javalib/org/kde/qt/TQHBoxLayout.java new file mode 100644 index 00000000..89ed5fc1 --- /dev/null +++ b/qtjava/javalib/org/kde/qt/TQHBoxLayout.java @@ -0,0 +1,68 @@ +//Auto-generated by kalyptus. DO NOT EDIT. +package org.kde.qt; + +import org.kde.qt.Qt; + +public class TQHBoxLayout extends TQBoxLayout { + protected TQHBoxLayout(Class dummy){super((Class) null);} + public native TQMetaObject metaObject(); + public native String className(); + public TQHBoxLayout(TQWidget parent, int border, int spacing, String name) { + super((Class) null); + newTQHBoxLayout(parent,border,spacing,name); + } + private native void newTQHBoxLayout(TQWidget parent, int border, int spacing, String name); + public TQHBoxLayout(TQWidget parent, int border, int spacing) { + super((Class) null); + newTQHBoxLayout(parent,border,spacing); + } + private native void newTQHBoxLayout(TQWidget parent, int border, int spacing); + public TQHBoxLayout(TQWidget parent, int border) { + super((Class) null); + newTQHBoxLayout(parent,border); + } + private native void newTQHBoxLayout(TQWidget parent, int border); + public TQHBoxLayout(TQWidget parent) { + super((Class) null); + newTQHBoxLayout(parent); + } + private native void newTQHBoxLayout(TQWidget parent); + public TQHBoxLayout(TQLayout parentLayout, int spacing, String name) { + super((Class) null); + newTQHBoxLayout(parentLayout,spacing,name); + } + private native void newTQHBoxLayout(TQLayout parentLayout, int spacing, String name); + public TQHBoxLayout(TQLayout parentLayout, int spacing) { + super((Class) null); + newTQHBoxLayout(parentLayout,spacing); + } + private native void newTQHBoxLayout(TQLayout parentLayout, int spacing); + public TQHBoxLayout(TQLayout parentLayout) { + super((Class) null); + newTQHBoxLayout(parentLayout); + } + private native void newTQHBoxLayout(TQLayout parentLayout); + public TQHBoxLayout(int spacing, String name) { + super((Class) null); + newTQHBoxLayout(spacing,name); + } + private native void newTQHBoxLayout(int spacing, String name); + public TQHBoxLayout(int spacing) { + super((Class) null); + newTQHBoxLayout(spacing); + } + private native void newTQHBoxLayout(int spacing); + public TQHBoxLayout() { + super((Class) null); + newTQHBoxLayout(); + } + private native void newTQHBoxLayout(); + 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(); +} |