summaryrefslogtreecommitdiffstats
path: root/sip/qt/qtabbar.sip
blob: 10e886d9eb5c2c45639dce8fbce4b735966319f8 (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
// This is the SIP interface definition for TQTab and TQTabBar.
//
// Copyright (c) 2007
// 	Riverbank Computing Limited <info@riverbankcomputing.co.uk>
// 
// This file is part of PyTQt.
// 
// This copy of PyTQt is free software; you can redistribute it and/or modify it
// under the terms of the GNU General Public License as published by the Free
// Software Foundation; either version 2, or (at your option) any later
// version.
// 
// PyTQt is supplied in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
// details.
// 
// You should have received a copy of the GNU General Public License along with
// PyTQt; see the file LICENSE.  If not, write to the Free Software Foundation,
// Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.


%ExportedDoc
<Sect2><Title>TQTab</Title>
<Para>
<Literal>TQTab</Literal> is fully implemented.
</Para>
</Sect2>

<Sect2><Title>TQTabBar</Title>
<FuncSynopsis>
        <FuncDef>TQPtrList&lt;TQTab&gt; <Function>tabList</Function></FuncDef>
        <ParamDef></ParamDef>
</FuncSynopsis>
<Para>
This returns a list of <Literal>TQTab</Literal> instances.
</Para>
</Sect2>
%End


class TQTab : TQt
{
%TypeHeaderCode
#include <tqtabbar.h>
%End

public:
	TQTab();
	TQTab(const TQString &);
	TQTab(const TQIconSet &,const TQString & = TQString::null);
	virtual ~TQTab();

	void setText(const TQString &);
	TQString text() const;
	void setIconSet(const TQIconSet &);
	TQIconSet *iconSet() const;
	void setRect(const TQRect &);
	TQRect rect() const;
	void setEnabled(bool);
	bool isEnabled() const;
	void setIdentifier(int);
	int identifier() const;
};

class TQTabBar : TQWidget
{
%TypeHeaderCode
#include <tqtabbar.h>
%End

public:
	TQTabBar(TQWidget * /TransferThis/ = 0,const char * = 0);

	enum Shape {
		RoundedAbove,
		RoundedBelow,
		TriangularAbove,
		TriangularBelow
	};

	Shape shape() const;
	virtual void setShape(Shape);

	void show();

	virtual int addTab(TQTab * /Transfer/);
	virtual int insertTab(TQTab * /Transfer/,int = -1);
	virtual void removeTab(TQTab *);

	virtual void setTabEnabled(int,bool);
	bool isTabEnabled(int) const;

	TQSize sizeHint() const;
	TQSize minimumSizeHint() const;
	TQSizePolicy sizePolicy() const;

	int currentTab() const;
	int keyboardFocusTab() const;

	TQTab *tab(int) const;
	TQTab *tabAt(int) const;
	int indexOf(int) const;
	int count() const;

	virtual void layoutTabs();
	virtual TQTab *selectTab(const TQPoint &) const;
 
	void removeToolTip(int);
	void setToolTip(int,const TQString &);
	TQString toolTip(int) const;

public slots:
	virtual void setCurrentTab(int);
	virtual void setCurrentTab(TQTab *);

signals:
	void selected(int);
	void layoutChanged();

protected:
	virtual void paint(TQPainter *,TQTab *,bool) const;
	virtual void paintLabel(TQPainter *,const TQRect &,TQTab *,bool) const;

	void focusInEvent(TQFocusEvent *);
	void focusOutEvent(TQFocusEvent *);

	void resizeEvent(TQResizeEvent *);
	void paintEvent(TQPaintEvent *);
	void mousePressEvent(TQMouseEvent *);
	void mouseMoveEvent(TQMouseEvent *);
	void mouseReleaseEvent(TQMouseEvent *);
	void keyPressEvent(TQKeyEvent *);
	void styleChange(TQStyle &);
	void fontChange(const TQFont &);

	bool event(TQEvent *);

	SIP_PYLIST tabList() [TQPtrList<TQTab> *()];
%MethodCode
		if ((sipRes = PyList_New(0)) == NULL)
			sipIsErr = 1;
		else
		{
			TQPtrList<TQTab> *tl;
			TQTab *tab;

			Py_BEGIN_ALLOW_THREADS
			tl = sipCpp -> sipProtect_tabList();
			Py_END_ALLOW_THREADS

			// Convert the list.
			for (TQPtrListIterator<TQTab> it(*tl); (tab = it.current()) != NULL; ++it)
			{
				PyObject *inst = sipBuildResult(&sipIsErr,"C",tab,sipClass_TQTab,NULL);

				if (sipIsErr)
					break;

				int rc = PyList_Append(sipRes,inst);

				Py_DECREF(inst);

				if (rc < 0)
				{
					sipIsErr = 1;
					break;
				}
			}

			if (sipIsErr)
            {
				Py_DECREF(sipRes);
            }
		}
%End

private:
	TQTabBar(const TQTabBar &);
};