Qt wiki will be updated on October 12th 2023 starting at 11:30 AM (EEST) and the maintenance will last around 2-3 hours. During the maintenance the site will be unavailable.
Qt Buttons: Difference between revisions
Henri Vikki (talk | contribs) No edit summary |
(Cleanup) |
||
Line 1: | Line 1: | ||
{{LangSwitch}} | |||
[[Category:Developing_with_Qt::General]] | [[Category:Developing_with_Qt::General]] | ||
== Overview == | == Overview == | ||
As an advanced framework for creation of GUI Qt offers variety of buttons to satisfy different fancies. The classes that implement different types of buttons inherit | As an advanced framework for creation of GUI Qt offers variety of buttons to satisfy different fancies. The classes that implement different types of buttons inherit {{DocLink|QAbstractButton}}. QAbstractButton inherits {{DocLink|QWidget}} and it is the abstract base class of button widgets. | ||
== Signals == | == Signals == | ||
Line 16: | Line 9: | ||
QAbstractButton offers the following signals: | QAbstractButton offers the following signals: | ||
void clicked(bool checked=false) | |||
void pressed() | |||
void released() | |||
void toggled(bool checked) | |||
== Button Types == | == Button Types == | ||
Line 25: | Line 18: | ||
=== QPushButton === | === QPushButton === | ||
{{DocLink|QPushButton}} is a customizable widget for a command button. For more information and examples on how to use QPushButton please see the following article: [[How to Use QPushButton]]. | |||
=== QCheckBox === | === QCheckBox === | ||
{{DocLink|QCheckBox}} is a button that look like a checkbox with a text label next to it. | |||
=== QRadioButton === | === QRadioButton === | ||
{{DocLink|QRadioButton}} is a radio button with a text label. | |||
=== QToolButton === | === QToolButton === | ||
{{DocLink|QToolButton}} provides a quick-access button to options which are usually used inside a {{DocLink|QToolBar}}. | |||
== See also == | == See also == | ||
[ | * [[Basic Qt Programming Tutorial]] | ||
* [[How to Use QPushButton]] | |||
[ |
Latest revision as of 22:36, 27 June 2015
Overview
As an advanced framework for creation of GUI Qt offers variety of buttons to satisfy different fancies. The classes that implement different types of buttons inherit QAbstractButton. QAbstractButton inherits QWidget and it is the abstract base class of button widgets.
Signals
QAbstractButton offers the following signals:
void clicked(bool checked=false) void pressed() void released() void toggled(bool checked)
Button Types
QPushButton
QPushButton is a customizable widget for a command button. For more information and examples on how to use QPushButton please see the following article: How to Use QPushButton.
QCheckBox
QCheckBox is a button that look like a checkbox with a text label next to it.
QRadioButton
QRadioButton is a radio button with a text label.
QToolButton
QToolButton provides a quick-access button to options which are usually used inside a QToolBar.