summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqscrollview.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-09-04 11:53:23 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-09-04 13:56:43 +0900
commit0582c90a9ed4b965629267713f51c0da7c38b39d (patch)
treecae95e850081d0a7f2be6cef5837f43a28d53d2c /doc/man/man3/tqscrollview.3qt
parent39f8a475b4ec5c87a11a7e9300a30ef1c5b4a7e1 (diff)
downloadtqt-0582c90a9ed4b965629267713f51c0da7c38b39d.tar.gz
tqt-0582c90a9ed4b965629267713f51c0da7c38b39d.zip
Rename remaining ntq[m-r]* related files to equivalent tq* (except ntqmodules.h)
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqscrollview.3qt')
-rw-r--r--doc/man/man3/tqscrollview.3qt20
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/man/man3/tqscrollview.3qt b/doc/man/man3/tqscrollview.3qt
index d61bf9082..0c4c24fc4 100644
--- a/doc/man/man3/tqscrollview.3qt
+++ b/doc/man/man3/tqscrollview.3qt
@@ -246,16 +246,16 @@ Inherited by TQCanvasView, TQTable, TQGridView, TQIconView, TQListBox, TQListVie
.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 )"
+.BI "virtual void \fBcontentsMousePressEvent\fR ( TQMouseEvent * e )"
.br
.ti -1c
-.BI "virtual void \fBcontentsMouseReleaseEvent\fR ( QMouseEvent * e )"
+.BI "virtual void \fBcontentsMouseReleaseEvent\fR ( TQMouseEvent * e )"
.br
.ti -1c
-.BI "virtual void \fBcontentsMouseDoubleClickEvent\fR ( QMouseEvent * e )"
+.BI "virtual void \fBcontentsMouseDoubleClickEvent\fR ( TQMouseEvent * e )"
.br
.ti -1c
-.BI "virtual void \fBcontentsMouseMoveEvent\fR ( QMouseEvent * e )"
+.BI "virtual void \fBcontentsMouseMoveEvent\fR ( TQMouseEvent * e )"
.br
.ti -1c
.BI "virtual void \fBcontentsDragEnterEvent\fR ( TQDragEnterEvent * )"
@@ -279,7 +279,7 @@ Inherited by TQCanvasView, TQTable, TQGridView, TQIconView, TQListBox, TQListVie
.BI "virtual void \fBviewportPaintEvent\fR ( TQPaintEvent * pe )"
.br
.ti -1c
-.BI "virtual void \fBviewportResizeEvent\fR ( QResizeEvent * )"
+.BI "virtual void \fBviewportResizeEvent\fR ( TQResizeEvent * )"
.br
.ti -1c
.BI "virtual void \fBsetMargins\fR ( int left, int top, int right, int bottom )"
@@ -539,27 +539,27 @@ This event handler is called whenever the TQScrollView receives a dropEvent(): t
Reimplemented in TQTable.
.SH "int TQScrollView::contentsHeight () const"
Returns the height of the contents area. See the "contentsHeight" property for details.
-.SH "void TQScrollView::contentsMouseDoubleClickEvent ( QMouseEvent * e )\fC [virtual protected]\fR"
+.SH "void TQScrollView::contentsMouseDoubleClickEvent ( TQMouseEvent * e )\fC [virtual protected]\fR"
This event handler is called whenever the TQScrollView receives a mouseDoubleClickEvent(): the click position in \fIe\fR is translated to be a point on the contents.
.PP
The default implementation generates a normal mouse press event.
.PP
Reimplemented in TQListView.
-.SH "void TQScrollView::contentsMouseMoveEvent ( QMouseEvent * e )\fC [virtual protected]\fR"
+.SH "void TQScrollView::contentsMouseMoveEvent ( TQMouseEvent * e )\fC [virtual protected]\fR"
This event handler is called whenever the TQScrollView receives a mouseMoveEvent(): the mouse position in \fIe\fR is translated to be a point on the contents.
.PP
Examples:
.)l canvas/canvas.cpp and chart/canvasview.cpp.
.PP
Reimplemented in TQListView.
-.SH "void TQScrollView::contentsMousePressEvent ( QMouseEvent * e )\fC [virtual protected]\fR"
+.SH "void TQScrollView::contentsMousePressEvent ( TQMouseEvent * e )\fC [virtual protected]\fR"
This event handler is called whenever the TQScrollView receives a mousePressEvent(): the press position in \fIe\fR is translated to be a point on the contents.
.PP
Examples:
.)l canvas/canvas.cpp and chart/canvasview.cpp.
.PP
Reimplemented in TQListView.
-.SH "void TQScrollView::contentsMouseReleaseEvent ( QMouseEvent * e )\fC [virtual protected]\fR"
+.SH "void TQScrollView::contentsMouseReleaseEvent ( TQMouseEvent * e )\fC [virtual protected]\fR"
This event handler is called whenever the TQScrollView receives a mouseReleaseEvent(): the release position in \fIe\fR is translated to be a point on the contents.
.PP
Reimplemented in TQListView.
@@ -807,7 +807,7 @@ Examples:
.)l helpsystem/tooltip.cpp and scrollview/scrollview.cpp.
.SH "void TQScrollView::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 TQScrollView::viewportResizeEvent ( QResizeEvent * )\fC [virtual protected]\fR"
+.SH "void TQScrollView::viewportResizeEvent ( TQResizeEvent * )\fC [virtual protected]\fR"
To provide simple processing of events on the contents, this function receives all resize events sent to the viewport.
.PP
See also TQWidget::resizeEvent().