diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-23 12:42:20 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-23 12:42:20 +0900 |
commit | b35e0845dc9b3c8b9a5e52a682c769f383933fae (patch) | |
tree | e4eeca8f6fe0ca87e774be98eabf89b4c7fca347 /doc/man/man3/tqradiobutton.3qt | |
parent | 1ba13366a7a377d50b9e8df9044ce11d8209f98c (diff) | |
download | tqt3-b35e0845dc9b3c8b9a5e52a682c769f383933fae.tar.gz tqt3-b35e0845dc9b3c8b9a5e52a682c769f383933fae.zip |
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqradiobutton.3qt')
-rw-r--r-- | doc/man/man3/tqradiobutton.3qt | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/doc/man/man3/tqradiobutton.3qt b/doc/man/man3/tqradiobutton.3qt index bb27ca8c5..826ea8285 100644 --- a/doc/man/man3/tqradiobutton.3qt +++ b/doc/man/man3/tqradiobutton.3qt @@ -16,10 +16,10 @@ Inherits QButton. .SS "Public Members" .in +1c .ti -1c -.BI "\fBQRadioButton\fR ( QWidget * parent, const char * name = 0 )" +.BI "\fBQRadioButton\fR ( TQWidget * parent, const char * name = 0 )" .br .ti -1c -.BI "\fBQRadioButton\fR ( const QString & text, QWidget * parent, const char * name = 0 )" +.BI "\fBQRadioButton\fR ( const TQString & text, TQWidget * parent, const char * name = 0 )" .br .ti -1c .BI "bool \fBisChecked\fR () const" @@ -34,10 +34,10 @@ Inherits QButton. .SS "Important Inherited Members" .in +1c .ti -1c -.BI "QString \fBtext\fR () const" +.BI "TQString \fBtext\fR () const" .br .ti -1c -.BI "virtual void \fBsetText\fR ( const QString & )" +.BI "virtual void \fBsetText\fR ( const TQString & )" .br .ti -1c .BI "const QPixmap * \fBpixmap\fR () const" @@ -126,14 +126,14 @@ Just like QPushButton, a radio button can display text or a pixmap. The text can .PP See also QPushButton, QToolButton, GUI Design Handbook: Radio Button, and Basic Widgets. .SH MEMBER FUNCTION DOCUMENTATION -.SH "QRadioButton::QRadioButton ( QWidget * parent, const char * name = 0 )" +.SH "QRadioButton::QRadioButton ( TQWidget * parent, const char * name = 0 )" Constructs a radio button with no text. .PP -The \fIparent\fR and \fIname\fR arguments are sent on to the QWidget constructor. -.SH "QRadioButton::QRadioButton ( const QString & text, QWidget * parent, const char * name = 0 )" +The \fIparent\fR and \fIname\fR arguments are sent on to the TQWidget constructor. +.SH "QRadioButton::QRadioButton ( const TQString & text, TQWidget * parent, const char * name = 0 )" Constructs a radio button with the text \fItext\fR. .PP -The \fIparent\fR and \fIname\fR arguments are sent on to the QWidget constructor. +The \fIparent\fR and \fIname\fR arguments are sent on to the TQWidget constructor. .SH "QKeySequence QButton::accel () const" Returns the accelerator associated with the button. See the "accel" property for details. .SH "bool QButton::autoRepeat () const" @@ -188,7 +188,7 @@ Sets whether the radio button is checked to \fIcheck\fR. See the "checked" prope Sets whether the button is pressed. See the "down" property for details. .SH "void QButton::setPixmap ( const QPixmap & )\fC [virtual]\fR" Sets the pixmap shown on the button. See the "pixmap" property for details. -.SH "void QButton::setText ( const QString & )\fC [virtual]\fR" +.SH "void QButton::setText ( const TQString & )\fC [virtual]\fR" Sets the text shown on the button. See the "text" property for details. .SH "ToggleState QButton::state () const" Returns the state of the toggle button. See the "toggleState" property for details. @@ -198,7 +198,7 @@ This signal is emitted whenever a toggle button changes state. \fIstate\fR is On This may be the result of a user action, toggle() slot activation, setState(), or because setOn() was called. .PP See also clicked() and QButton::ToggleState. -.SH "QString QButton::text () const" +.SH "TQString QButton::text () const" Returns the text shown on the button. See the "text" property for details. .SH "void QButton::toggle ()\fC [slot]\fR" Toggles the state of a toggle button. @@ -222,7 +222,7 @@ Set this property's value with setAccel() and get this property's value with acc .SH "bool autoMask" This property holds whether the radio button is automatically masked. .PP -See also QWidget::autoMask. +See also TQWidget::autoMask. .SH "bool autoRepeat" This property holds whether autoRepeat is enabled. .PP @@ -243,10 +243,10 @@ If the pixmap is monochrome (i.e. it is a QBitmap or its depth is 1) and it does pixmap() returns 0 if no pixmap was set. .PP Set this property's value with setPixmap() and get this property's value with pixmap(). -.SH "QString text" +.SH "TQString text" This property holds the text shown on the button. .PP -This property will return a QString::null if the button has no text. If the text has an ampersand (&) in it, then an accelerator is automatically created for it using the character that follows the '&' as the accelerator key. Any previous accelerator will be overwritten, or cleared if no accelerator is defined by the text. +This property will return a TQString::null if the button has no text. If the text has an ampersand (&) in it, then an accelerator is automatically created for it using the character that follows the '&' as the accelerator key. Any previous accelerator will be overwritten, or cleared if no accelerator is defined by the text. .PP There is no default text. .PP |