
We bake cookies in your browser for a better experience. Using this site means that you consent.Read More
TheQPushButton widget provides a command button.More...
| Header: | #include <QPushButton> |
| Inherits: | QAbstractButton |
| Inherited By: |
| QPushButton(QWidget * parent = 0) | |
| QPushButton(const QString & text, QWidget * parent = 0) | |
| QPushButton(const QIcon & icon, const QString & text, QWidget * parent = 0) | |
| ~QPushButton() | |
| bool | autoDefault() const |
| bool | isDefault() const |
| bool | isFlat() const |
| QMenu * | menu() const |
| void | setAutoDefault(bool) |
| void | setDefault(bool) |
| void | setFlat(bool) |
| void | setMenu(QMenu * menu) |
| virtual QSize | minimumSizeHint() const |
| virtual QSize | sizeHint() const |
| void | showMenu() |
| void | initStyleOption(QStyleOptionButton * option) const |
| virtual bool | event(QEvent * e) |
| virtual void | focusInEvent(QFocusEvent * e) |
| virtual void | focusOutEvent(QFocusEvent * e) |
| virtual bool | hitButton(const QPoint & pos) const |
| virtual void | keyPressEvent(QKeyEvent * e) |
| virtual void | paintEvent(QPaintEvent *) |
TheQPushButton widget provides a command button.
The push button, or command button, is perhaps the most commonly used widget in any graphical user interface. Push (click) a button to command the computer to perform some action, or to answer a question. Typical buttons are OK, Apply, Cancel, Close, Yes, No and Help.
A command button is rectangular and typically displays a text label describing its action. A shortcut key can be specified by preceding the preferred character with an ampersand in the text. For example:
QPushButton*button=newQPushButton("&Download",this);
In this example the shortcut isAlt+D. See theQShortcut documentation for details (to display an actual ampersand, use '&&').
Push buttons display a textual label, and optionally a small icon. These can be set using the constructors and changed later usingsetText() andsetIcon(). If the button is disabled the appearance of the text and icon will be manipulated with respect to the GUI style to make the button look "disabled".
A push button emits the signalclicked() when it is activated by the mouse, the Spacebar or by a keyboard shortcut. Connect to this signal to perform the button's action. Push buttons also provide less commonly used signals, for example,pressed() andreleased().
Command buttons in dialogs are by default auto-default buttons, i.e. they become the default push button automatically when they receive the keyboard input focus. A default button is a push button that is activated when the user presses the Enter or Return key in a dialog. You can change this withsetAutoDefault(). Note that auto-default buttons reserve a little extra space which is necessary to draw a default-button indicator. If you do not want this space around your buttons, callsetAutoDefault(false).
Being so central, the button widget has grown to accommodate a great many variations in the past decade. The Microsoft style guide now shows about ten different states of Windows push buttons and the text implies that there are dozens more when all the combinations of features are taken into consideration.
The most important modes or states are:
As a general rule, use a push button when the application or dialog window performs an action when the user clicks on it (such as Apply, Cancel, Close and Help)and when the widget is supposed to have a wide, rectangular shape with a text label. Small, typically square buttons that change the state of the window rather than performing an action (such as the buttons in the top-right corner of theQFileDialog) are not command buttons, but tool buttons. Qt provides a special class (QToolButton) for these buttons.
If you need toggle behavior (seesetCheckable()) or a button that auto-repeats the activation signal when being pushed down like the arrows in a scroll bar (seesetAutoRepeat()), a command button is probably not what you want. When in doubt, use a tool button.
A variation of a command button is a menu button. These provide not just one command, but several, since when they are clicked they pop up a menu of options. Use the methodsetMenu() to associate a popup menu with a push button.
Other classes of buttons are option buttons (seeQRadioButton) and check boxes (seeQCheckBox).
![]() | A push button shown in theMacintosh widget style. Note that when a button's width becomes smaller than 50 or its height becomes smaller than 30, the button's corners are changed from round to square. Use thesetMinimumSize() function to prevent this behavior. |
![]() | A push button shown in theWindows XP widget style. |
![]() | A push button shown in thePlastique widget style. |
In Qt, theQAbstractButton base class provides most of the modes and other API, andQPushButton provides GUI logic. SeeQAbstractButton for more information about the API.
See alsoQToolButton,QRadioButton,QCheckBox, andGUI Design Handbook: Push Button.
This property holds whether the push button is an auto default button.
If this property is set to true then the push button is an auto default button.
In some GUI styles a default button is drawn with an extra frame around it, up to 3 pixels or more. Qt automatically keeps this space free around auto-default buttons, i.e. auto-default buttons may have a slightly larger size hint.
This property's default is true for buttons that have aQDialog parent; otherwise it defaults to false.
See thedefault property for details of howdefault and auto-default interact.
Access functions:
| bool | autoDefault() const |
| void | setAutoDefault(bool) |
This property holds whether the push button is the default button.
Default and autodefault buttons decide what happens when the user presses enter in a dialog.
A button with this property set to true (i.e., the dialog'sdefault button,) will automatically be pressed when the user presses enter, with one exception: if anautoDefault button currently has focus, theautoDefault button is pressed. When the dialog hasautoDefault buttons but no default button, pressing enter will press either theautoDefault button that currently has focus, or if no button has focus, the nextautoDefault button in the focus chain.
In a dialog, only one push button at a time can be the default button. This button is then displayed with an additional frame (depending on the GUI style).
The default button behavior is provided only in dialogs. Buttons can always be clicked from the keyboard by pressing Spacebar when the button has focus.
If the default property is set to false on the current default button while the dialog is visible, a new default will automatically be assigned the next time a pushbutton in the dialog receives focus.
This property's default is false.
Access functions:
| bool | isDefault() const |
| void | setDefault(bool) |
This property holds whether the button border is raised.
This property's default is false. If this property is set, most styles will not paint the button background unless the button is being pressed.setAutoFillBackground() can be used to ensure that the background is filled using theQPalette::Button brush.
Access functions:
| bool | isFlat() const |
| void | setFlat(bool) |
Constructs a push button with no text and aparent.
Constructs a push button with the parentparent and the texttext.
Constructs a push button with anicon and atext, and aparent.
Note that you can also pass aQPixmap object as an icon (thanks to the implicit type conversion provided by C++).
Destroys the push button.
[virtual protected]bool QPushButton::event(QEvent * e)Reimplemented fromQObject::event().
[virtual protected]void QPushButton::focusInEvent(QFocusEvent * e)Reimplemented fromQWidget::focusInEvent().
[virtual protected]void QPushButton::focusOutEvent(QFocusEvent * e)Reimplemented fromQWidget::focusOutEvent().
[virtual protected]bool QPushButton::hitButton(constQPoint & pos) constReimplemented fromQAbstractButton::hitButton().
[protected]void QPushButton::initStyleOption(QStyleOptionButton * option) constInitializeoption with the values from thisQPushButton. This method is useful for subclasses when they need aQStyleOptionButton, but don't want to fill in all the information themselves.
See alsoQStyleOption::initFrom().
[virtual protected]void QPushButton::keyPressEvent(QKeyEvent * e)Reimplemented fromQWidget::keyPressEvent().
Returns the button's associated popup menu or 0 if no popup menu has been set.
See alsosetMenu().
[virtual]QSize QPushButton::minimumSizeHint() constReimplemented fromQWidget::minimumSizeHint().
[virtual protected]void QPushButton::paintEvent(QPaintEvent *)Reimplemented fromQWidget::paintEvent().
Associates the popup menumenu with this push button. This turns the button into a menu button, which in some styles will produce a small triangle to the right of the button's text.
Ownership of the menu isnot transferred to the push button.
![]() | ![]() | Push buttons with popup menus shown in thePlastique widget style (left) andCleanlooks widget style (right). |
See alsomenu().
[slot]void QPushButton::showMenu()Shows (pops up) the associated popup menu. If there is no such menu, this function does nothing. This function does not return until the popup menu has been closed by the user.
[virtual]QSize QPushButton::sizeHint() constReimplemented fromQWidget::sizeHint().
© 2016 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of theGNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.