diff options
Diffstat (limited to 'doc/man/man3/tqpaintevent.3qt')
-rw-r--r-- | doc/man/man3/tqpaintevent.3qt | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/man/man3/tqpaintevent.3qt b/doc/man/man3/tqpaintevent.3qt index c5b579715..a11ec003e 100644 --- a/doc/man/man3/tqpaintevent.3qt +++ b/doc/man/man3/tqpaintevent.3qt @@ -16,13 +16,13 @@ Inherits TQEvent. .SS "Public Members" .in +1c .ti -1c -.BI "\fBTQPaintEvent\fR ( const TQRegion & paintRegion, bool erased = TRUE )" +.BI "\fBTQPaintEvent\fR ( const TQRegion & paintRegion, bool erased = true )" .br .ti -1c -.BI "\fBTQPaintEvent\fR ( const TQRect & paintRect, bool erased = TRUE )" +.BI "\fBTQPaintEvent\fR ( const TQRect & paintRect, bool erased = true )" .br .ti -1c -.BI "\fBTQPaintEvent\fR ( const TQRegion & paintRegion, const TQRect & paintRect, bool erased = TRUE )" +.BI "\fBTQPaintEvent\fR ( const TQRegion & paintRegion, const TQRect & paintRect, bool erased = true )" .br .ti -1c .BI "const TQRect & \fBrect\fR () const" @@ -41,18 +41,18 @@ Paint events are sent to widgets that need to update themselves, for instance wh .PP The event contains a region() that needs to be updated, and a rect() that is the bounding rectangle of that region. Both are provided because many widgets can't make much use of region(), and rect() can be much faster than region().boundingRect(). Painting is clipped to region() during processing of a paint event. .PP -The erased() function returns TRUE if the region() has been cleared to the widget's background (see TQWidget::backgroundMode()), and FALSE if the region's contents are arbitrary. +The erased() function returns true if the region() has been cleared to the widget's background (see TQWidget::backgroundMode()), and false if the region's contents are arbitrary. .PP See also TQPainter, TQWidget::update(), TQWidget::repaint(), TQWidget::paintEvent(), TQWidget::backgroundMode, TQRegion, and Event Classes. .SH MEMBER FUNCTION DOCUMENTATION -.SH "TQPaintEvent::TQPaintEvent ( const TQRegion & paintRegion, bool erased = TRUE )" -Constructs a paint event object with the region that should be updated. The region is given by \fIpaintRegion\fR. If \fIerased\fR is TRUE the region will be cleared before repainting. -.SH "TQPaintEvent::TQPaintEvent ( const TQRect & paintRect, bool erased = TRUE )" -Constructs a paint event object with the rectangle that should be updated. The region is also given by \fIpaintRect\fR. If \fIerased\fR is TRUE the region will be cleared before repainting. -.SH "TQPaintEvent::TQPaintEvent ( const TQRegion & paintRegion, const TQRect & paintRect, bool erased = TRUE )" -Constructs a paint event object with the rectangle \fIpaintRect\fR that should be updated. The region is given by \fIpaintRegion\fR. If \fIerased\fR is TRUE the region will be cleared before repainting. +.SH "TQPaintEvent::TQPaintEvent ( const TQRegion & paintRegion, bool erased = true )" +Constructs a paint event object with the region that should be updated. The region is given by \fIpaintRegion\fR. If \fIerased\fR is true the region will be cleared before repainting. +.SH "TQPaintEvent::TQPaintEvent ( const TQRect & paintRect, bool erased = true )" +Constructs a paint event object with the rectangle that should be updated. The region is also given by \fIpaintRect\fR. If \fIerased\fR is true the region will be cleared before repainting. +.SH "TQPaintEvent::TQPaintEvent ( const TQRegion & paintRegion, const TQRect & paintRect, bool erased = true )" +Constructs a paint event object with the rectangle \fIpaintRect\fR that should be updated. The region is given by \fIpaintRegion\fR. If \fIerased\fR is true the region will be cleared before repainting. .SH "bool TQPaintEvent::erased () const" -Returns TRUE if the paint event region (or rectangle) has been erased with the widget's background; otherwise returns FALSE. +Returns true if the paint event region (or rectangle) has been erased with the widget's background; otherwise returns false. .SH "const TQRect & TQPaintEvent::rect () const" Returns the rectangle that should be updated. .PP |