summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqscrollview.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqscrollview.3qt')
-rw-r--r--doc/man/man3/tqscrollview.3qt18
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/man/man3/tqscrollview.3qt b/doc/man/man3/tqscrollview.3qt
index 10cb3f59..9d8520af 100644
--- a/doc/man/man3/tqscrollview.3qt
+++ b/doc/man/man3/tqscrollview.3qt
@@ -240,10 +240,10 @@ Inherited by TQCanvasView, QTable, QGridView, TQIconView, QListBox, QListView, a
.SS "Protected Members"
.in +1c
.ti -1c
-.BI "virtual void \fBdrawContents\fR ( QPainter * p, int clipx, int clipy, int clipw, int cliph )"
+.BI "virtual void \fBdrawContents\fR ( TQPainter * p, int clipx, int clipy, int clipw, int cliph )"
.br
.ti -1c
-.BI "virtual void \fBdrawContentsOffset\fR ( QPainter * p, int offsetx, int offsety, int clipx, int clipy, int clipw, int cliph )"
+.BI "virtual void \fBdrawContentsOffset\fR ( TQPainter * p, int offsetx, int offsety, int clipx, int clipy, int clipw, int cliph )"
.br
.ti -1c
.BI "virtual void \fBcontentsMousePressEvent\fR ( QMouseEvent * e )"
@@ -276,7 +276,7 @@ Inherited by TQCanvasView, QTable, QGridView, TQIconView, QListBox, QListView, a
.BI "virtual void \fBcontentsContextMenuEvent\fR ( QContextMenuEvent * e )"
.br
.ti -1c
-.BI "virtual void \fBviewportPaintEvent\fR ( QPaintEvent * pe )"
+.BI "virtual void \fBviewportPaintEvent\fR ( TQPaintEvent * pe )"
.br
.ti -1c
.BI "virtual void \fBviewportResizeEvent\fR ( QResizeEvent * )"
@@ -589,7 +589,7 @@ By default, no corner widget is present.
Example: scrollview/scrollview.cpp.
.SH "bool QScrollView::dragAutoScroll () const"
Returns TRUE if autoscrolling in drag move events is enabled; otherwise returns FALSE. See the "dragAutoScroll" property for details.
-.SH "void QScrollView::drawContents ( QPainter * p, int clipx, int clipy, int clipw, int cliph )\fC [virtual protected]\fR"
+.SH "void QScrollView::drawContents ( TQPainter * p, int clipx, int clipy, int clipw, int cliph )\fC [virtual protected]\fR"
Reimplement this function if you are viewing a drawing area rather than a widget.
.PP
The function should draw the rectangle (\fIclipx\fR, \fIclipy\fR, \fIclipw\fR, \fIcliph\fR) of the contents using painter \fIp\fR. The clip rectangle is in the scrollview's coordinates.
@@ -636,10 +636,10 @@ The clip rectangle and translation of the painter \fIp\fR is already set appropr
Example: tqdir/tqdir.cpp.
.PP
Reimplemented in TQCanvasView and QTable.
-.SH "void QScrollView::drawContentsOffset ( QPainter * p, int offsetx, int offsety, int clipx, int clipy, int clipw, int cliph )\fC [virtual protected]\fR"
-For backward-compatibility only. It is easier to use drawContents(QPainter*,int,int,int,int).
+.SH "void QScrollView::drawContentsOffset ( TQPainter * p, int offsetx, int offsety, int clipx, int clipy, int clipw, int cliph )\fC [virtual protected]\fR"
+For backward-compatibility only. It is easier to use drawContents(TQPainter*,int,int,int,int).
.PP
-The default implementation translates the painter appropriately and calls drawContents(QPainter*,int,int,int,int). See drawContents() for an explanation of the parameters \fIp\fR, \fIoffsetx\fR, \fIoffsety\fR, \fIclipx\fR, \fIclipy\fR, \fIclipw\fR and \fIcliph\fR.
+The default implementation translates the painter appropriately and calls drawContents(TQPainter*,int,int,int,int). See drawContents() for an explanation of the parameters \fIp\fR, \fIoffsetx\fR, \fIoffsety\fR, \fIclipx\fR, \fIclipy\fR, \fIclipw\fR and \fIcliph\fR.
.PP
Reimplemented in QListView.
.SH "void QScrollView::enableClipper ( bool y )"
@@ -805,8 +805,8 @@ Returns the viewport widget of the scrollview. This is the widget containing the
.PP
Examples:
.)l helpsystem/tooltip.cpp and scrollview/scrollview.cpp.
-.SH "void QScrollView::viewportPaintEvent ( QPaintEvent * pe )\fC [virtual protected]\fR"
-This is a low-level painting routine that draws the viewport contents. Reimplement this if drawContents() is too high-level (for example, if you don't want to open a QPainter on the viewport). The paint event is passed in \fIpe\fR.
+.SH "void QScrollView::viewportPaintEvent ( TQPaintEvent * pe )\fC [virtual protected]\fR"
+This is a low-level painting routine that draws the viewport contents. Reimplement this if drawContents() is too high-level (for example, if you don't want to open a TQPainter on the viewport). The paint event is passed in \fIpe\fR.
.SH "void QScrollView::viewportResizeEvent ( QResizeEvent * )\fC [virtual protected]\fR"
To provide simple processing of events on the contents, this function receives all resize events sent to the viewport.
.PP