summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqcanvaspolygonalitem.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-20 20:15:52 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-21 23:04:19 +0900
commit1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3 (patch)
tree5f1bb482f68ee0f95843fbf375cd2274acdabf25 /doc/man/man3/tqcanvaspolygonalitem.3qt
parent14c414378d96f7463b989384f4a0e5dd76632b6d (diff)
downloadtqt3-1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3.tar.gz
tqt3-1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3.zip
Rename graphics class nt* related files to equivalent tq* (part 2)
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqcanvaspolygonalitem.3qt')
-rw-r--r--doc/man/man3/tqcanvaspolygonalitem.3qt26
1 files changed, 13 insertions, 13 deletions
diff --git a/doc/man/man3/tqcanvaspolygonalitem.3qt b/doc/man/man3/tqcanvaspolygonalitem.3qt
index ec5d22ad..cdb562cb 100644
--- a/doc/man/man3/tqcanvaspolygonalitem.3qt
+++ b/doc/man/man3/tqcanvaspolygonalitem.3qt
@@ -24,25 +24,25 @@ Inherited by TQCanvasRectangle, TQCanvasPolygon, TQCanvasLine, and TQCanvasEllip
.BI "virtual \fB~TQCanvasPolygonalItem\fR ()"
.br
.ti -1c
-.BI "virtual void \fBsetPen\fR ( QPen p )"
+.BI "virtual void \fBsetPen\fR ( TQPen p )"
.br
.ti -1c
.BI "virtual void \fBsetBrush\fR ( TQBrush b )"
.br
.ti -1c
-.BI "QPen \fBpen\fR () const"
+.BI "TQPen \fBpen\fR () const"
.br
.ti -1c
.BI "TQBrush \fBbrush\fR () const"
.br
.ti -1c
-.BI "virtual QPointArray \fBareaPoints\fR () const = 0"
+.BI "virtual TQPointArray \fBareaPoints\fR () const = 0"
.br
.ti -1c
-.BI "virtual QPointArray \fBareaPointsAdvanced\fR () const"
+.BI "virtual TQPointArray \fBareaPointsAdvanced\fR () const"
.br
.ti -1c
-.BI "virtual QRect \fBboundingRect\fR () const"
+.BI "virtual TQRect \fBboundingRect\fR () const"
.br
.ti -1c
.BI "virtual int \fBrtti\fR () const"
@@ -84,7 +84,7 @@ The bounding rectangle is available using boundingRect(). The points bounding th
.PP
If the shape of the polygonal item is about to change while the item is visible, call invalidate() before updating with a different result from areaPoints().
.PP
-By default, TQCanvasPolygonalItem objects have a black pen and no brush (the default QPen and TQBrush constructors). You can change this with setPen() and setBrush(), but note that some TQCanvasPolygonalItem subclasses only use the brush, ignoring the pen setting.
+By default, TQCanvasPolygonalItem objects have a black pen and no brush (the default TQPen and TQBrush constructors). You can change this with setPen() and setBrush(), but note that some TQCanvasPolygonalItem subclasses only use the brush, ignoring the pen setting.
.PP
The polygonal item can be drawn on a painter with draw(). Subclasses must reimplement drawShape() to draw themselves.
.PP
@@ -96,13 +96,13 @@ See also Graphics Classes and Image Processing Classes.
Constructs a TQCanvasPolygonalItem on the canvas \fIcanvas\fR.
.SH "TQCanvasPolygonalItem::~TQCanvasPolygonalItem ()\fC [virtual]\fR"
Note that all subclasses \fImust\fR call hide() in their destructor since hide() needs to be able to access areaPoints().
-.SH "QPointArray TQCanvasPolygonalItem::areaPoints () const\fC [pure virtual]\fR"
+.SH "TQPointArray TQCanvasPolygonalItem::areaPoints () const\fC [pure virtual]\fR"
This function must be reimplemented by subclasses. It \fImust\fR return the points bounding (i.e. outside and not touching) the shape or drawing errors will occur.
.PP
Reimplemented in TQCanvasPolygon.
-.SH "QPointArray TQCanvasPolygonalItem::areaPointsAdvanced () const\fC [virtual]\fR"
+.SH "TQPointArray TQCanvasPolygonalItem::areaPointsAdvanced () const\fC [virtual]\fR"
Returns the points the polygonal item \fIwill\fR have after TQCanvasItem::advance(1) is called, i.e. what the points are when advanced by the current xVelocity() and yVelocity().
-.SH "QRect TQCanvasPolygonalItem::boundingRect () const\fC [virtual]\fR"
+.SH "TQRect TQCanvasPolygonalItem::boundingRect () const\fC [virtual]\fR"
Returns the bounding rectangle of the polygonal item, based on areaPoints().
.PP
Reimplemented from TQCanvasItem.
@@ -128,8 +128,8 @@ Invalidates all information about the area covered by the canvas item. The item
Returns TRUE if the polygonal item's area information has not been invalidated; otherwise returns FALSE.
.PP
See also invalidate().
-.SH "QPen TQCanvasPolygonalItem::pen () const"
-Returns the QPen used to draw the outline of the item, if any.
+.SH "TQPen TQCanvasPolygonalItem::pen () const"
+Returns the TQPen used to draw the outline of the item, if any.
.PP
See also setPen().
.SH "int TQCanvasPolygonalItem::rtti () const\fC [virtual]\fR"
@@ -147,8 +147,8 @@ See also setPen(), brush(), and drawShape().
.PP
Examples:
.)l canvas/canvas.cpp and chart/chartform_canvas.cpp.
-.SH "void TQCanvasPolygonalItem::setPen ( QPen p )\fC [virtual]\fR"
-Sets the QPen used when drawing the item to the pen \fIp\fR. Note that many TQCanvasPolygonalItems do not use the pen value.
+.SH "void TQCanvasPolygonalItem::setPen ( TQPen p )\fC [virtual]\fR"
+Sets the TQPen used when drawing the item to the pen \fIp\fR. Note that many TQCanvasPolygonalItems do not use the pen value.
.PP
See also setBrush(), pen(), and drawShape().
.PP