Qt Buttons: Difference between revisions
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
[[Category:Developing_with_Qt::General]] | |||
= | [toc align_right="yes" depth="3"] | ||
'''English''' [[Qt_Buttons_Bulgarian|Български]] [[Qt_Buttons_Spanish|Spanish]] [[Qt_Buttons_SimplifiedChinese|简体中文]] | |||
= Qt Buttons = | |||
==Signals== | == 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":http://doc.qt.nokia.com/4.7/qabstractbutton.html. QAbstractButton inherits "QWidget":http://doc.qt.nokia.com/4.7/qwidget.html and it is the abstract base class of button widgets. | |||
== Signals == | |||
QAbstractButton offers the following signals: | QAbstractButton offers the following signals: | ||
Line 16: | Line 20: | ||
* void toggled ( bool checked ) | * void toggled ( bool checked ) | ||
==Button Types== | == Button Types == | ||
=== QPushButton === | |||
"QPushButton":http://doc.qt.nokia.com/4.7/qpushbutton.html is a customizable widget for a command button. For "more information and example how to use QPushButton please read the following article":http://developer.qt.nokia.com/wiki/How_to_Use_QPushButton | |||
[http://doc.qt.nokia.com/4.7/ | [[Image:http://doc.qt.nokia.com/4.7/images/windowsxp-pushbutton.png|push button]] | ||
=== QCheckBox === | |||
"QCheckBox":http://doc.qt.nokia.com/4.7/qcheckbox.html is a button that look like a checkbox with a text label next to it. | |||
[http://doc.qt.nokia.com/4.7/ | [[Image:http://doc.qt.nokia.com/4.7/images/windows-checkbox.png|checkbox]] | ||
=== QRadioButton === | |||
"QRadioButton":http://doc.qt.nokia.com/4.7/qradiobutton.html is a radio button with a text label. | |||
[http://doc.qt.nokia.com/4.7/ | [[Image:http://doc.qt.nokia.com/4.7/images/windows-radiobutton.png|radio button]] | ||
=== QToolButton === | |||
"QToolButton":http://doc.qt.nokia.com/4.7/qtoolbutton.html provides a quick-access button to options which are usually used inside a "QToolBar":http://doc.qt.nokia.com/4.7/qtoolbar.html | |||
[http:// | [[Image:http://doc.qt.nokia.com/4.7/images/assistant-toolbar.png|button inside toolbar]] | ||
== | == See also == | ||
"Basic Qt Programming Tutorial&quot;:http://developer.qt.nokia.com/wiki/Basic_Qt_Programming_Tutorial<br />"How to Use QPushButton&quot;:http://developer.qt.nokia.com/wiki/How_to_Use_QPushButton | |||
Revision as of 14:26, 23 February 2015
[toc align_right="yes" depth="3"]
English Български Spanish 简体中文
Qt Buttons
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":http://doc.qt.nokia.com/4.7/qabstractbutton.html. QAbstractButton inherits "QWidget":http://doc.qt.nokia.com/4.7/qwidget.html 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":http://doc.qt.nokia.com/4.7/qpushbutton.html is a customizable widget for a command button. For "more information and example how to use QPushButton please read the following article":http://developer.qt.nokia.com/wiki/How_to_Use_QPushButton
QCheckBox
"QCheckBox":http://doc.qt.nokia.com/4.7/qcheckbox.html is a button that look like a checkbox with a text label next to it.
QRadioButton
"QRadioButton":http://doc.qt.nokia.com/4.7/qradiobutton.html is a radio button with a text label.
QToolButton
"QToolButton":http://doc.qt.nokia.com/4.7/qtoolbutton.html provides a quick-access button to options which are usually used inside a "QToolBar":http://doc.qt.nokia.com/4.7/qtoolbar.html
See also
"Basic Qt Programming Tutorial":http://developer.qt.nokia.com/wiki/Basic_Qt_Programming_Tutorial
"How to Use QPushButton":http://developer.qt.nokia.com/wiki/How_to_Use_QPushButton