summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqbutton.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-15 19:08:22 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-18 09:31:41 +0900
commita30f5359f03c3017fa19a6770fab32d25d22cb87 (patch)
treecb365dd7a1c3666e3f972c6cad04be7b8e846cba /doc/man/man3/tqbutton.3qt
parent25ad1267da6916e738a126ff5a9b41cd686adfc6 (diff)
downloadtqt-a30f5359f03c3017fa19a6770fab32d25d22cb87.tar.gz
tqt-a30f5359f03c3017fa19a6770fab32d25d22cb87.zip
Rename graphics class nt* related files to equivalent tq* (part 1)
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqbutton.3qt')
-rw-r--r--doc/man/man3/tqbutton.3qt12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/man/man3/tqbutton.3qt b/doc/man/man3/tqbutton.3qt
index 4899612ce..9d8a3cf92 100644
--- a/doc/man/man3/tqbutton.3qt
+++ b/doc/man/man3/tqbutton.3qt
@@ -156,13 +156,13 @@ Inherited by QCheckBox, QPushButton, QRadioButton, and TQToolButton.
.BI "virtual bool \fBhitButton\fR ( const QPoint & pos ) const"
.br
.ti -1c
-.BI "virtual void \fBdrawButton\fR ( QPainter * )"
+.BI "virtual void \fBdrawButton\fR ( TQPainter * )"
.br
.ti -1c
-.BI "virtual void \fBdrawButtonLabel\fR ( QPainter * )"
+.BI "virtual void \fBdrawButtonLabel\fR ( TQPainter * )"
.br
.ti -1c
-.BI "virtual void \fBpaintEvent\fR ( QPaintEvent * )"
+.BI "virtual void \fBpaintEvent\fR ( TQPaintEvent * )"
.br
.in -1c
.SH DESCRIPTION
@@ -278,13 +278,13 @@ See also pressed(), released(), toggled(), autoRepeat, and down.
.PP
Examples:
.)l chart/setdataform.cpp, listbox/listbox.cpp, network/clientserver/client/client.cpp, progressbar/progressbar.cpp, richtext/richtext.cpp, t2/main.cpp, and t4/main.cpp.
-.SH "void QButton::drawButton ( QPainter * )\fC [virtual protected]\fR"
+.SH "void QButton::drawButton ( TQPainter * )\fC [virtual protected]\fR"
Draws the button. The default implementation does nothing.
.PP
This virtual function is reimplemented by subclasses to draw real buttons. At some point, these reimplementations should call drawButtonLabel().
.PP
See also drawButtonLabel() and paintEvent().
-.SH "void QButton::drawButtonLabel ( QPainter * )\fC [virtual protected]\fR"
+.SH "void QButton::drawButtonLabel ( TQPainter * )\fC [virtual protected]\fR"
Draws the button text or pixmap.
.PP
This virtual function is reimplemented by subclasses to draw real buttons. It is invoked by drawButton().
@@ -308,7 +308,7 @@ Returns TRUE if the button is an exclusive toggle; otherwise returns FALSE. See
Returns TRUE if the button is toggled; otherwise returns FALSE. See the "on" property for details.
.SH "bool QButton::isToggleButton () const"
Returns TRUE if the button is a toggle button; otherwise returns FALSE. See the "toggleButton" property for details.
-.SH "void QButton::paintEvent ( QPaintEvent * )\fC [virtual protected]\fR"
+.SH "void QButton::paintEvent ( TQPaintEvent * )\fC [virtual protected]\fR"
Handles paint events for buttons. Small and typically complex buttons are painted double-buffered to reduce flicker. The actually drawing is done in the virtual functions drawButton() and drawButtonLabel().
.PP
See also drawButton() and drawButtonLabel().