summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KMultiTabBarButton.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/KMultiTabBarButton.java')
-rw-r--r--kdejava/koala/org/kde/koala/KMultiTabBarButton.java64
1 files changed, 64 insertions, 0 deletions
diff --git a/kdejava/koala/org/kde/koala/KMultiTabBarButton.java b/kdejava/koala/org/kde/koala/KMultiTabBarButton.java
new file mode 100644
index 00000000..58121632
--- /dev/null
+++ b/kdejava/koala/org/kde/koala/KMultiTabBarButton.java
@@ -0,0 +1,64 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.kde.koala;
+
+import org.kde.qt.Qt;
+import org.kde.qt.QHideEvent;
+import org.kde.qt.QMetaObject;
+import org.kde.qt.QtSupport;
+import org.kde.qt.QPopupMenu;
+import org.kde.qt.QPixmap;
+import org.kde.qt.QSize;
+import org.kde.qt.QShowEvent;
+import org.kde.qt.QWidget;
+import org.kde.qt.QPushButton;
+
+/**
+
+ This class should never be created except with the appendButton call of KMultiTabBar
+ See {@link KMultiTabBarButtonSignals} for signals emitted by KMultiTabBarButton
+ @short This class should never be created except with the appendButton call of KMultiTabBar
+
+*/
+public class KMultiTabBarButton extends QPushButton {
+ protected KMultiTabBarButton(Class dummy){super((Class) null);}
+ public native QMetaObject metaObject();
+ public native String className();
+ public KMultiTabBarButton(QPixmap pic, String arg2, QPopupMenu popup, int id, QWidget parent, int pos, int style) {
+ super((Class) null);
+ newKMultiTabBarButton(pic,arg2,popup,id,parent,pos,style);
+ }
+ private native void newKMultiTabBarButton(QPixmap pic, String arg2, QPopupMenu popup, int id, QWidget parent, int pos, int style);
+ public KMultiTabBarButton(String arg1, QPopupMenu popup, int id, QWidget parent, int pos, int style) {
+ super((Class) null);
+ newKMultiTabBarButton(arg1,popup,id,parent,pos,style);
+ }
+ private native void newKMultiTabBarButton(String arg1, QPopupMenu popup, int id, QWidget parent, int pos, int style);
+ public native int id();
+ /**
+ this is used internaly, but can be used by the user, if (s)he wants to
+ It the according call of KMultiTabBar is invoked though this modifications will be overwritten
+ @short this is used internaly, but can be used by the user, if (s)he wants to It the according call of KMultiTabBar is invoked though this modifications will be overwritten
+ */
+ public native void setPosition(int arg1);
+ /**
+ this is used internaly, but can be used by the user, if (s)he wants to
+ It the according call of KMultiTabBar is invoked though this modifications will be overwritten
+ @short this is used internaly, but can be used by the user, if (s)he wants to It the according call of KMultiTabBar is invoked though this modifications will be overwritten
+ */
+ public native void setStyle(int arg1);
+ /**
+ modify the text of the button
+ @short modify the text of the button
+ */
+ public native void setText(String arg1);
+ public native QSize sizeHint();
+ protected native void hideEvent(QHideEvent arg1);
+ public native void showEvent(QShowEvent arg1);
+ protected native void slotClicked();
+ /** 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();
+}