summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KMultiTabBarTab.java
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commit90825e2392b2d70e43c7a25b8a3752299a933894 (patch)
treee33aa27f02b74604afbfd0ea4f1cfca8833d882a /kdejava/koala/org/kde/koala/KMultiTabBarTab.java
downloadtdebindings-90825e2392b2d70e43c7a25b8a3752299a933894.tar.gz
tdebindings-90825e2392b2d70e43c7a25b8a3752299a933894.zip
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebindings@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdejava/koala/org/kde/koala/KMultiTabBarTab.java')
-rw-r--r--kdejava/koala/org/kde/koala/KMultiTabBarTab.java56
1 files changed, 56 insertions, 0 deletions
diff --git a/kdejava/koala/org/kde/koala/KMultiTabBarTab.java b/kdejava/koala/org/kde/koala/KMultiTabBarTab.java
new file mode 100644
index 00000000..d80304cc
--- /dev/null
+++ b/kdejava/koala/org/kde/koala/KMultiTabBarTab.java
@@ -0,0 +1,56 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.kde.koala;
+
+import org.kde.qt.Qt;
+import org.kde.qt.QMetaObject;
+import org.kde.qt.QtSupport;
+import org.kde.qt.QPixmap;
+import org.kde.qt.QPainter;
+import org.kde.qt.QWidget;
+
+/**
+
+ This class should never be created except with the appendTab call of KMultiTabBar
+ @short This class should never be created except with the appendTab call of KMultiTabBar
+
+*/
+public class KMultiTabBarTab extends KMultiTabBarButton {
+ protected KMultiTabBarTab(Class dummy){super((Class) null);}
+ public native QMetaObject metaObject();
+ public native String className();
+ public KMultiTabBarTab(QPixmap pic, String arg2, int id, QWidget parent, int pos, int style) {
+ super((Class) null);
+ newKMultiTabBarTab(pic,arg2,id,parent,pos,style);
+ }
+ private native void newKMultiTabBarTab(QPixmap pic, String arg2, int id, QWidget parent, int pos, int style);
+ /**
+ set the active state of the tab
+ @param state true==active false==not active
+ @short set the active state of the tab
+ */
+ public native void setState(boolean state);
+ /**
+ choose if the text should always be displayed
+ this is only used in classic mode if at all
+ @short choose if the text should always be displayed this is only used in classic mode if at all
+ */
+ public native void showActiveTabText(boolean show);
+ public native void resize();
+ public native void setIcon(String arg1);
+ public native void setIcon(QPixmap arg1);
+ protected native void setSize(int arg1);
+ protected native int neededSize();
+ protected native void updateState();
+ protected native void drawButton(QPainter arg1);
+ protected native void drawButtonLabel(QPainter arg1);
+ protected native void drawButtonStyled(QPainter arg1);
+ protected native void drawButtonClassic(QPainter arg1);
+ protected native void slotClicked();
+ protected native void setTabsPosition(int 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();
+}