summaryrefslogtreecommitdiffstats
path: root/sip/tqt/tqscrollview.sip
blob: 91a4a16680afdf2ea1e98236a707c02e4643be38 (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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
// This is the SIP interface definition for TQScrollView.
//
// 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>TQScrollView</Title>
<FuncSynopsis>
	<FuncDef>void <Function>contentsToViewport</Function></FuncDef>
	<ParamDef>int <Parameter>x</Parameter></ParamDef>
	<ParamDef>int <Parameter>y</Parameter></ParamDef>
	<ParamDef>int &<Parameter>vx</Parameter></ParamDef>
	<ParamDef>int &<Parameter>vy</Parameter></ParamDef>
</FuncSynopsis>
<Para>
This takes the <Literal>x</Literal> and <Literal>y</Literal> parameters and
returns a tuple containing the <Literal>vx</Literal> and <Literal>vy</Literal>
values. (TQt v2+)
</Para>

<FuncSynopsis>
	<FuncDef>void <Function>viewportToContents</Function></FuncDef>
	<ParamDef>int <Parameter>vx</Parameter></ParamDef>
	<ParamDef>int <Parameter>vy</Parameter></ParamDef>
	<ParamDef>int &<Parameter>x</Parameter></ParamDef>
	<ParamDef>int &<Parameter>y</Parameter></ParamDef>
</FuncSynopsis>
<Para>
This takes the <Literal>vx</Literal> and <Literal>vy</Literal> parameters and
returns a tuple containing the <Literal>x</Literal> and <Literal>y</Literal>
values. (TQt v2+)
</Para>
</Sect2>
%End


class TQScrollView : TQFrame
{
%TypeHeaderCode
#include <tqscrollview.h>
%End

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

	enum ResizePolicy {
		Default,
		Manual,
		AutoOne,
		AutoOneFit,
	};

	virtual void setResizePolicy(ResizePolicy);
	ResizePolicy resizePolicy() const;

	void styleChange(TQStyle &);
	// The child was reparented when it was added, and it stays that way,
	// so we don't transfer it back here.
	void removeChild(TQWidget *);
	virtual void addChild(TQWidget * /Transfer/,int = 0,int = 0);
	virtual void moveChild(TQWidget *,int,int);
	int childX(TQWidget *);
	int childY(TQWidget *);

	enum ScrollBarMode {
		Auto,
		AlwaysOff,
		AlwaysOn
	};

	ScrollBarMode vScrollBarMode() const;
	virtual void setVScrollBarMode(ScrollBarMode);

	ScrollBarMode hScrollBarMode() const;
	virtual void setHScrollBarMode(ScrollBarMode);

	TQWidget *cornerWidget() const;
	virtual void setCornerWidget(TQWidget * /Transfer/);

	TQScrollBar *horizontalScrollBar() const;
	TQScrollBar *verticalScrollBar() const;
	TQWidget *viewport() const;
	TQWidget *clipper() const;

	int visibleWidth() const;
	int visibleHeight() const;

	int contentsWidth() const;
	int contentsHeight() const;
	int contentsX() const;
	int contentsY() const;

	void resize(int,int);
	void resize(const TQSize &);
	void show();

	void updateContents(int,int,int,int);
	void updateContents(const TQRect &);
	void updateContents();
	void repaintContents(int,int,int,int,bool = 1);
	void repaintContents(const TQRect &,bool = 1);
	void repaintContents(bool = 1);

	// Note that this wasn't actually const until TQt v3.0.0.
	void contentsToViewport(int,int,int &,int &) const;

	// Note that this wasn't actually const until TQt v3.0.0.
	void viewportToContents(int,int,int &,int &) const;

	TQPoint contentsToViewport(const TQPoint &) const;
	TQPoint viewportToContents(const TQPoint &) const;
	void enableClipper(bool);

	void setStaticBackground(bool);
	bool hasStaticBackground() const;

	TQSize viewportSize(int,int) const;
	TQSize sizeHint() const;
	TQSize minimumSizeHint() const;

	void removeChild(TQObject * /TransferBack/);

	bool isHorizontalSliderPressed();
	bool isVerticalSliderPressed();

%If (TQt_DRAGANDDROP)
	virtual void setDragAutoScroll(bool);
	bool dragAutoScroll() const;
%End

signals:
	void contentsMoving(int,int);
	void horizontalSliderPressed();
	void horizontalSliderReleased();
	void verticalSliderPressed();
	void verticalSliderReleased();

public slots:
	virtual void resizeContents(int,int);
	void scrollBy(int,int);
	virtual void setContentsPos(int,int);
	void ensureVisible(int,int);
	void ensureVisible(int,int,int,int);
	void center(int,int);
	void center(int,int,float,float);

	void updateScrollBars();
	void setEnabled(bool);

protected:
	virtual void drawContents(TQPainter *,int,int,int,int);
	virtual void drawContentsOffset(TQPainter *,int,int,int,int,int,int);

	virtual void contentsMousePressEvent(TQMouseEvent *);
	virtual void contentsMouseReleaseEvent(TQMouseEvent *);
	virtual void contentsMouseDoubleClickEvent(TQMouseEvent *);
	virtual void contentsMouseMoveEvent(TQMouseEvent *);
%If (TQt_DRAGANDDROP)
	virtual void contentsDragEnterEvent(TQDragEnterEvent *);
	virtual void contentsDragMoveEvent(TQDragMoveEvent *);
	virtual void contentsDragLeaveEvent(TQDragLeaveEvent *);
	virtual void contentsDropEvent(TQDropEvent *);
%End
	virtual void contentsWheelEvent(TQWheelEvent *);
	virtual void contentsContextMenuEvent(TQContextMenuEvent *);

	virtual void viewportPaintEvent(TQPaintEvent *);
	virtual void viewportResizeEvent(TQResizeEvent *);
	virtual void viewportMousePressEvent(TQMouseEvent *);
	virtual void viewportMouseReleaseEvent(TQMouseEvent *);
	virtual void viewportMouseDoubleClickEvent(TQMouseEvent *);
	virtual void viewportMouseMoveEvent(TQMouseEvent *);
%If (TQt_DRAGANDDROP)
	virtual void viewportDragEnterEvent(TQDragEnterEvent *);
	virtual void viewportDragMoveEvent(TQDragMoveEvent *);
	virtual void viewportDragLeaveEvent(TQDragLeaveEvent *);
	virtual void viewportDropEvent(TQDropEvent *);
%End
	virtual void viewportWheelEvent(TQWheelEvent *);
	virtual void viewportContextMenuEvent(TQContextMenuEvent *);

	void frameChanged();

	virtual void setMargins(int,int,int,int);
	int leftMargin() const;
	int topMargin() const;
	int rightMargin() const;
	int bottomMargin() const;

	bool focusNextPrevChild(bool);

	virtual void setHBarGeometry(TQScrollBar &,int,int,int,int);
	virtual void setVBarGeometry(TQScrollBar &,int,int,int,int);

	void resizeEvent(TQResizeEvent *);
	void mousePressEvent(TQMouseEvent *);
	void mouseReleaseEvent(TQMouseEvent *);
	void mouseDoubleClickEvent(TQMouseEvent *);
	void mouseMoveEvent(TQMouseEvent *);
	void wheelEvent(TQWheelEvent *);
	void contextMenuEvent(TQContextMenuEvent *);
	bool eventFilter(TQObject *,TQEvent *);

	void setCachedSizeHint(const TQSize &) const;
	TQSize cachedSizeHint() const;
	void fontChange(const TQFont &);

private:
	TQScrollView(const TQScrollView &);

public:
	void disableSizeHintCaching();
};