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/TQTabBar.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/TQTabBar.java')
-rw-r--r-- | qtjava/javalib/org/kde/qt/TQTabBar.java | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/qtjava/javalib/org/kde/qt/TQTabBar.java b/qtjava/javalib/org/kde/qt/TQTabBar.java new file mode 100644 index 00000000..b4b283d1 --- /dev/null +++ b/qtjava/javalib/org/kde/qt/TQTabBar.java @@ -0,0 +1,79 @@ +//Auto-generated by kalyptus. DO NOT EDIT. +package org.kde.qt; + +import org.kde.qt.Qt; + +/** + See {@link TQTabBarSignals} for signals emitted by TQTabBar +*/ +public class TQTabBar extends TQWidget { + protected TQTabBar(Class dummy){super((Class) null);} + public static final int RoundedAbove = 0; + public static final int RoundedBelow = 1; + public static final int TriangularAbove = 2; + public static final int TriangularBelow = 3; + + public native TQMetaObject metaObject(); + public native String className(); + public TQTabBar(TQWidget parent, String name) { + super((Class) null); + newTQTabBar(parent,name); + } + private native void newTQTabBar(TQWidget parent, String name); + public TQTabBar(TQWidget parent) { + super((Class) null); + newTQTabBar(parent); + } + private native void newTQTabBar(TQWidget parent); + public TQTabBar() { + super((Class) null); + newTQTabBar(); + } + private native void newTQTabBar(); + public native int shape(); + public native void setShape(int arg1); + public native void show(); + public native int addTab(TQTab arg1); + public native int insertTab(TQTab arg1, int index); + public native int insertTab(TQTab arg1); + public native void removeTab(TQTab arg1); + public native void setTabEnabled(int arg1, boolean arg2); + public native boolean isTabEnabled(int arg1); + public native TQSize sizeHint(); + public native TQSize minimumSizeHint(); + public native int currentTab(); + public native int keyboardFocusTab(); + public native TQTab tab(int arg1); + public native TQTab tabAt(int arg1); + public native int indexOf(int arg1); + public native int count(); + public native void layoutTabs(); + public native TQTab selectTab(TQPoint p); + public native void removeToolTip(int index); + public native void setToolTip(int index, String tip); + public native String toolTip(int index); + public native void setCurrentTab(int arg1); + public native void setCurrentTab(TQTab arg1); + public static native String tr(String arg1, String arg2); + public static native String tr(String arg1); + protected native void paint(TQPainter arg1, TQTab arg2, boolean arg3); + protected native void paintLabel(TQPainter arg1, TQRect arg2, TQTab arg3, boolean arg4); + protected native void focusInEvent(TQFocusEvent e); + protected native void focusOutEvent(TQFocusEvent e); + protected native void resizeEvent(TQResizeEvent arg1); + protected native void paintEvent(TQPaintEvent arg1); + protected native void mousePressEvent(TQMouseEvent arg1); + protected native void mouseMoveEvent(TQMouseEvent arg1); + protected native void mouseReleaseEvent(TQMouseEvent arg1); + protected native void keyPressEvent(TQKeyEvent arg1); + public native void styleChange(TQStyle arg1); + protected native void fontChange(TQFont arg1); + public native boolean event(TQEvent e); + // TQPtrList<TQTab>* tabList(); >>>> NOT CONVERTED + /** 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(); +} |