diff options
Diffstat (limited to 'tdejava/koala/org/trinitydesktop/koala/KMultiTabBarButton.java')
-rw-r--r-- | tdejava/koala/org/trinitydesktop/koala/KMultiTabBarButton.java | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/tdejava/koala/org/trinitydesktop/koala/KMultiTabBarButton.java b/tdejava/koala/org/trinitydesktop/koala/KMultiTabBarButton.java new file mode 100644 index 00000000..28166c2b --- /dev/null +++ b/tdejava/koala/org/trinitydesktop/koala/KMultiTabBarButton.java @@ -0,0 +1,64 @@ +//Auto-generated by kalyptus. DO NOT EDIT. +package org.trinitydesktop.koala; + +import org.trinitydesktop.qt.Qt; +import org.trinitydesktop.qt.TQHideEvent; +import org.trinitydesktop.qt.TQMetaObject; +import org.trinitydesktop.qt.QtSupport; +import org.trinitydesktop.qt.TQPopupMenu; +import org.trinitydesktop.qt.TQPixmap; +import org.trinitydesktop.qt.TQSize; +import org.trinitydesktop.qt.TQShowEvent; +import org.trinitydesktop.qt.TQWidget; +import org.trinitydesktop.qt.TQPushButton; + +/** + + 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 TQPushButton { + protected KMultiTabBarButton(Class dummy){super((Class) null);} + public native TQMetaObject metaObject(); + public native String className(); + public KMultiTabBarButton(TQPixmap pic, String arg2, TQPopupMenu popup, int id, TQWidget parent, int pos, int style) { + super((Class) null); + newKMultiTabBarButton(pic,arg2,popup,id,parent,pos,style); + } + private native void newKMultiTabBarButton(TQPixmap pic, String arg2, TQPopupMenu popup, int id, TQWidget parent, int pos, int style); + public KMultiTabBarButton(String arg1, TQPopupMenu popup, int id, TQWidget parent, int pos, int style) { + super((Class) null); + newKMultiTabBarButton(arg1,popup,id,parent,pos,style); + } + private native void newKMultiTabBarButton(String arg1, TQPopupMenu popup, int id, TQWidget 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 TQSize sizeHint(); + protected native void hideEvent(TQHideEvent arg1); + public native void showEvent(TQShowEvent 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(); +} |