summaryrefslogtreecommitdiffstats
path: root/tdejava/koala/org/trinitydesktop/koala/KMultiTabBarButton.java
blob: 28166c2b63ab97bc7667d7aa7b034ce23f746468 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
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();
}