summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqbrush.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/tqbrush.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/tqbrush.3qt')
-rw-r--r--doc/man/man3/tqbrush.3qt20
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/man/man3/tqbrush.3qt b/doc/man/man3/tqbrush.3qt
index 06fb189f..0b1b1093 100644
--- a/doc/man/man3/tqbrush.3qt
+++ b/doc/man/man3/tqbrush.3qt
@@ -25,7 +25,7 @@ Inherits Qt.
.BI "\fBTQBrush\fR ( const TQColor & color, BrushStyle style = SolidPattern )"
.br
.ti -1c
-.BI "\fBTQBrush\fR ( const TQColor & color, const QPixmap & pixmap )"
+.BI "\fBTQBrush\fR ( const TQColor & color, const TQPixmap & pixmap )"
.br
.ti -1c
.BI "\fBTQBrush\fR ( const TQBrush & b )"
@@ -49,10 +49,10 @@ Inherits Qt.
.BI "void \fBsetColor\fR ( const TQColor & c )"
.br
.ti -1c
-.BI "QPixmap * \fBpixmap\fR () const"
+.BI "TQPixmap * \fBpixmap\fR () const"
.br
.ti -1c
-.BI "void \fBsetPixmap\fR ( const QPixmap & pixmap )"
+.BI "void \fBsetPixmap\fR ( const TQPixmap & pixmap )"
.br
.ti -1c
.BI "bool \fBoperator==\fR ( const TQBrush & b ) const"
@@ -73,13 +73,13 @@ Inherits Qt.
.SH DESCRIPTION
The TQBrush class defines the fill pattern of shapes drawn by a TQPainter.
.PP
-A brush has a style and a color. One of the brush styles is a custom pattern, which is defined by a QPixmap.
+A brush has a style and a color. One of the brush styles is a custom pattern, which is defined by a TQPixmap.
.PP
The brush style defines the fill pattern. The default brush style is NoBrush (depending on how you construct a brush). This style tells the painter to not fill shapes. The standard style for filling is SolidPattern.
.PP
The brush color defines the color of the fill pattern. The TQColor documentation lists the predefined colors.
.PP
-Use the QPen class for specifying line/outline styles.
+Use the TQPen class for specifying line/outline styles.
.PP
Example:
.PP
@@ -127,10 +127,10 @@ See also setStyle().
Constructs a brush with the color \fIcolor\fR and the style \fIstyle\fR.
.PP
See also setColor() and setStyle().
-.SH "TQBrush::TQBrush ( const TQColor & color, const QPixmap & pixmap )"
+.SH "TQBrush::TQBrush ( const TQColor & color, const TQPixmap & pixmap )"
Constructs a brush with the color \fIcolor\fR and a custom pattern stored in \fIpixmap\fR.
.PP
-The color will only have an effect for monochrome pixmaps, i.e. for QPixmap::depth() == 1.
+The color will only have an effect for monochrome pixmaps, i.e. for TQPixmap::depth() == 1.
.PP
Pixmap brushes are currently not supported when printing on X11.
.PP
@@ -157,7 +157,7 @@ Returns TRUE if the brush is equal to \fIb\fR; otherwise returns FALSE.
Two brushes are equal if they have equal styles, colors and pixmaps.
.PP
See also operator!=().
-.SH "QPixmap * TQBrush::pixmap () const"
+.SH "TQPixmap * TQBrush::pixmap () const"
Returns a pointer to the custom brush pattern, or 0 if no custom brush pattern has been set.
.PP
See also setPixmap().
@@ -169,10 +169,10 @@ Sets the brush color to \fIc\fR.
See also color() and setStyle().
.PP
Example: picture/picture.cpp.
-.SH "void TQBrush::setPixmap ( const QPixmap & pixmap )"
+.SH "void TQBrush::setPixmap ( const TQPixmap & pixmap )"
Sets the brush pixmap to \fIpixmap\fR. The style is set to CustomPattern.
.PP
-The current brush color will only have an effect for monochrome pixmaps, i.e. for QPixmap::depth() == 1.
+The current brush color will only have an effect for monochrome pixmaps, i.e. for TQPixmap::depth() == 1.
.PP
Pixmap brushes are currently not supported when printing on X11.
.PP