summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqpaintdevice.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-09-23 12:42:20 +0900
committerMichele Calgaro <[email protected]>2023-09-24 20:14:25 +0900
commitd73937a9f779e2aafa6c392f94c9c29aa32b78fd (patch)
treee2c52ad435e8cca696acae34b1f451e934675a64 /doc/man/man3/tqpaintdevice.3qt
parenteb42871e999672a8fad5793733c58be05928c8ea (diff)
downloadtqt3-d73937a9f779e2aafa6c392f94c9c29aa32b78fd.tar.gz
tqt3-d73937a9f779e2aafa6c392f94c9c29aa32b78fd.zip
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* versionr14.1.1
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit b35e0845dc9b3c8b9a5e52a682c769f383933fae)
Diffstat (limited to 'doc/man/man3/tqpaintdevice.3qt')
-rw-r--r--doc/man/man3/tqpaintdevice.3qt6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/man/man3/tqpaintdevice.3qt b/doc/man/man3/tqpaintdevice.3qt
index 3121f1810..67ecf00f7 100644
--- a/doc/man/man3/tqpaintdevice.3qt
+++ b/doc/man/man3/tqpaintdevice.3qt
@@ -11,7 +11,7 @@ QPaintDevice \- The base class of objects that can be painted
.SH SYNOPSIS
\fC#include <ntqpaintdevice.h>\fR
.PP
-Inherited by QWidget, QPixmap, QPicture, and QPrinter.
+Inherited by TQWidget, QPixmap, QPicture, and QPrinter.
.PP
.SS "Public Members"
.in +1c
@@ -151,7 +151,7 @@ Inherited by QWidget, QPixmap, QPicture, and QPrinter.
.SH DESCRIPTION
The QPaintDevice class is the base class of objects that can be painted.
.PP
-A paint device is an abstraction of a two-dimensional space that can be drawn using a QPainter. The drawing capabilities are implemented by the subclasses QWidget, QPixmap, QPicture and QPrinter.
+A paint device is an abstraction of a two-dimensional space that can be drawn using a QPainter. The drawing capabilities are implemented by the subclasses TQWidget, QPixmap, QPicture and QPrinter.
.PP
The default coordinate system of a paint device has its origin located at the top-left position. X increases to the right and Y increases downward. The unit is one pixel. There are several ways to set up a user-defined coordinate system using the painter, for example, using QPainter::setWorldMatrix().
.PP
@@ -349,7 +349,7 @@ If \fIignoreMask\fR is FALSE (the default) and \fIsrc\fR is a masked QPixmap, th
.PP
If \fIsrc\fR, \fIdst\fR, \fIsw\fR or \fIsh\fR is 0, bitBlt() does nothing. If \fIsw\fR or \fIsh\fR is negative bitBlt() copies starting at \fIsx\fR (and respectively, \fIsy\fR) and ending at the right end (respectively, bottom) of \fIsrc\fR.
.PP
-\fIsrc\fR must be a QWidget or QPixmap. You cannot blit from a QPrinter, for example. bitBlt() does nothing if you attempt to blit from an unsupported device.
+\fIsrc\fR must be a TQWidget or QPixmap. You cannot blit from a QPrinter, for example. bitBlt() does nothing if you attempt to blit from an unsupported device.
.PP
bitBlt() does nothing if \fIsrc\fR has a greater depth than \fIdst\fR. If you need to for example, draw a 24-bit pixmap on an 8-bit widget, you must use drawPixmap().
.SH "void bitBlt ( QPaintDevice * dst, const QPoint & dp, const QPaintDevice * src, const QRect & sr, RasterOp rop )"