diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-18 15:42:48 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-19 23:33:47 +0900 |
commit | 089d5266f0fbf9be6612e9c5f92a3f008f29241c (patch) | |
tree | e2c5625c37ba83b0848bbb212a45995ceec84139 /doc/man/man3/tqpen.3qt | |
parent | d21227053cca7f565e2473a3fc0f8f8a07b298c2 (diff) | |
download | tqt3-089d5266f0fbf9be6612e9c5f92a3f008f29241c.tar.gz tqt3-089d5266f0fbf9be6612e9c5f92a3f008f29241c.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqpen.3qt')
-rw-r--r-- | doc/man/man3/tqpen.3qt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/man/man3/tqpen.3qt b/doc/man/man3/tqpen.3qt index 50ec2848e..9ce81f70a 100644 --- a/doc/man/man3/tqpen.3qt +++ b/doc/man/man3/tqpen.3qt @@ -87,7 +87,7 @@ The QPen class defines how a QPainter should draw lines and outlines of shapes. .PP A pen has a style, width, color, cap style and join style. .PP -The pen style defines the line type. The default pen style is Qt::SolidLine. Setting the style to NoPen tells the painter to not draw lines or outlines. +The pen style defines the line type. The default pen style is TQt::SolidLine. Setting the style to NoPen tells the painter to not draw lines or outlines. .PP When drawing 1 pixel wide diagonal lines you can either use a very fast algorithm (specified by a line width of 0, which is the default), or a slower but more accurate algorithm (specified by a line width of 1). For horizontal and vertical lines a line width of 0 is the same as a line width of 1. The cap and join style have no effect on 0-width lines. .PP @@ -119,7 +119,7 @@ Example: .br .fi .PP -See the Qt::PenStyle enum type for a complete list of pen styles. +See the TQt::PenStyle enum type for a complete list of pen styles. .PP With reference to the end points of lines, for wide (non-0-width) pens it depends on the cap style whether the end point is drawn or not. QPainter will try to make sure that the end point is drawn for 0-width pens, but this cannot be absolutely guaranteed because the underlying drawing engine is free to use any (typically accelerated) algorithm for drawing 0-width lines. On all tested systems, however, the end point of at least all non-diagonal lines are drawn. .PP @@ -223,7 +223,7 @@ Example: themes/wood.cpp. .SH "void QPen::setStyle ( PenStyle s )" Sets the pen style to \fIs\fR. .PP -See the Qt::PenStyle documentation for a list of all the styles. +See the TQt::PenStyle documentation for a list of all the styles. .PP \fBWarning:\fR On Mac OS X the style setting (other than NoPen and SolidLine) have no effect as they are not implemented by the underlying system. .PP |