Home | All Classes | Main Classes | Annotated | Grouped Classes | Functions | ![]() |
The QRadioButton widget provides a radio button with a text or pixmap label. More...
#include <QRadioButton>
Inherits QAbstractButton.
The QRadioButton widget provides a radio button with a text or pixmap label.
A QRadioButton is an option button that can be switched on (checked) or off (unchecked). Radio buttons typically present the user with a "one of many" choice. In a group of radio buttons only one radio button at a time can be checked; if the user selects another button, the previously selected button is switched off.
The easiest way to implement a "one of many" choice is simply to put the radio buttons into a QButtonGroup.
Whenever a button is switched on or off it emits the toggled() signal. Connect to this signal if you want to trigger an action each time the button changes state. Otherwise, use isChecked() to see if a particular button is selected.
Just like QPushButton, a radio button can display text or a pixmap. The text can be set in the constructor or with setText(); the pixmap is set with setPixmap().
Important inherited members: text(), setText(), text(), setDown(), isDown(), autoRepeat(), group(), setAutoRepeat(), toggle(), pressed(), released(), clicked(), and toggled().
GUI Design Handbook: Radio Button
See also QPushButton, QToolButton, and QCheckBox.
This property holds whether the radio button is automatically exclusive.
If the radio button is exclusive, it will be deselected if another in the same group is enabled. Similarly, if it is selected, other exclusive buttons in the same group will be deselected.
The default is true.
This property holds whether the radio button is automatically masked.
See also QWidget::setAutoMask().
Constructs a radio button with the given parent, but with no text or pixmap.
The parent argument is passed on to the QAbstractButton constructor.
Constructs a radio button with the given parent and a text string.
The parent argument is passed on to the QAbstractButton constructor.
Draws the radio button bevel on painter p. Called from paintEvent().
See also drawLabel().
Draws the radio button label on painter p. Called from paintEvent().
See also drawBevel().
Paints the button in response to the paint event, by first calling drawBevel() and then drawLabel(). If you reimplement paintEvent() just to draw a different label, you can call drawBevel() from your own code. For example:
QPainter p(this); drawBevel(&p); // ... your label drawing code
Reimplemented from QWidget.
Copyright © 2004 Trolltech. | Trademarks | Qt 4.0.0-tp1 |