summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqcanvasview.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-07-15 19:08:22 +0900
committerMichele Calgaro <[email protected]>2024-07-18 09:31:41 +0900
commita30f5359f03c3017fa19a6770fab32d25d22cb87 (patch)
treecb365dd7a1c3666e3f972c6cad04be7b8e846cba /doc/man/man3/tqcanvasview.3qt
parent25ad1267da6916e738a126ff5a9b41cd686adfc6 (diff)
downloadtqt3-a30f5359f03c3017fa19a6770fab32d25d22cb87.tar.gz
tqt3-a30f5359f03c3017fa19a6770fab32d25d22cb87.zip
Rename graphics class nt* related files to equivalent tq* (part 1)
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/man/man3/tqcanvasview.3qt')
-rw-r--r--doc/man/man3/tqcanvasview.3qt6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/man/man3/tqcanvasview.3qt b/doc/man/man3/tqcanvasview.3qt
index 0046c0623..afb8ae8a4 100644
--- a/doc/man/man3/tqcanvasview.3qt
+++ b/doc/man/man3/tqcanvasview.3qt
@@ -43,7 +43,7 @@ Inherits QScrollView.
.SS "Protected Members"
.in +1c
.ti -1c
-.BI "virtual void \fBdrawContents\fR ( QPainter * p, int cx, int cy, int cw, int ch )"
+.BI "virtual void \fBdrawContents\fR ( TQPainter * p, int cx, int cy, int cw, int ch )"
.br
.ti -1c
.BI "virtual TQSize \fBsizeHint\fR () const"
@@ -116,7 +116,7 @@ The following code finds the part of the canvas that is visible in this view, i.
.br
.fi
.PP
-See also QWMatrix, QPainter::setWorldMatrix(), Graphics Classes, and Image Processing Classes.
+See also QWMatrix, TQPainter::setWorldMatrix(), Graphics Classes, and Image Processing Classes.
.PP
.SH MEMBER FUNCTION DOCUMENTATION
.SH "TQCanvasView::TQCanvasView ( TQWidget * parent = 0, const char * name = 0, WFlags f = 0 )"
@@ -129,7 +129,7 @@ Constructs a TQCanvasView which views canvas \fIcanvas\fR, with parent \fIparent
Destroys the canvas view. The associated canvas is \fInot\fR deleted.
.SH "TQCanvas * TQCanvasView::canvas () const"
Returns a pointer to the canvas which the TQCanvasView is currently showing.
-.SH "void TQCanvasView::drawContents ( QPainter * p, int cx, int cy, int cw, int ch )\fC [virtual protected]\fR"
+.SH "void TQCanvasView::drawContents ( TQPainter * p, int cx, int cy, int cw, int ch )\fC [virtual protected]\fR"
Repaints part of the TQCanvas that the canvas view is showing starting at \fIcx\fR by \fIcy\fR, with a width of \fIcw\fR and a height of \fIch\fR using the painter \fIp\fR.
.PP
\fBWarning:\fR When double buffering is enabled, drawContents() will not respect the current settings of the painter when setting up the painter for the double buffer (e.g., viewport() and window()). Also, be aware that TQCanvas::update() bypasses drawContents(), which means any reimplementation of drawContents() is not called.