summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqradiobutton.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-07-20 20:15:52 +0900
committerMichele Calgaro <[email protected]>2024-07-21 23:04:19 +0900
commit1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3 (patch)
tree5f1bb482f68ee0f95843fbf375cd2274acdabf25 /doc/man/man3/tqradiobutton.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 <[email protected]>
Diffstat (limited to 'doc/man/man3/tqradiobutton.3qt')
-rw-r--r--doc/man/man3/tqradiobutton.3qt10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/man/man3/tqradiobutton.3qt b/doc/man/man3/tqradiobutton.3qt
index a06b81f42..3bd8f0833 100644
--- a/doc/man/man3/tqradiobutton.3qt
+++ b/doc/man/man3/tqradiobutton.3qt
@@ -40,10 +40,10 @@ Inherits QButton.
.BI "virtual void \fBsetText\fR ( const TQString & )"
.br
.ti -1c
-.BI "const QPixmap * \fBpixmap\fR () const"
+.BI "const TQPixmap * \fBpixmap\fR () const"
.br
.ti -1c
-.BI "virtual void \fBsetPixmap\fR ( const QPixmap & )"
+.BI "virtual void \fBsetPixmap\fR ( const TQPixmap & )"
.br
.ti -1c
.BI "QKeySequence \fBaccel\fR () const"
@@ -165,7 +165,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 "const QPixmap * QButton::pixmap () const"
+.SH "const TQPixmap * QButton::pixmap () const"
Returns the pixmap shown on the button. See the "pixmap" property for details.
.SH "void QButton::pressed ()\fC [signal]\fR"
This signal is emitted when the button is pressed down.
@@ -186,7 +186,7 @@ Sets whether autoRepeat is enabled. See the "autoRepeat" property for details.
Sets whether the radio button is checked to \fIcheck\fR. See the "checked" property for details.
.SH "void QButton::setDown ( bool )\fC [virtual]\fR"
Sets whether the button is pressed. See the "down" property for details.
-.SH "void QButton::setPixmap ( const QPixmap & )\fC [virtual]\fR"
+.SH "void QButton::setPixmap ( const TQPixmap & )\fC [virtual]\fR"
Sets the pixmap shown on the button. See the "pixmap" property for details.
.SH "void QButton::setText ( const TQString & )\fC [virtual]\fR"
Sets the text shown on the button. See the "text" property for details.
@@ -235,7 +235,7 @@ This property holds whether the radio button is checked.
This property will not effect any other radio buttons unless they have been placed in the same QButtonGroup. The default value is FALSE (unchecked).
.PP
Set this property's value with setChecked() and get this property's value with isChecked().
-.SH "QPixmap pixmap"
+.SH "TQPixmap pixmap"
This property holds the pixmap shown on the button.
.PP
If the pixmap is monochrome (i.e. it is a TQBitmap or its depth is 1) and it does not have a mask, this property will set the pixmap to be its own mask. The purpose of this is to draw transparent bitmaps which are important for toggle buttons, for example.