QPushButton¶
The
QPushButton
widget provides a command button. More…
Inherited by: QCommandLinkButton
Synopsis¶
Functions¶
def
autoDefault
()def
initStyleOption
(option)def
isDefault
()def
isFlat
()def
menu
()def
setAutoDefault
(arg__1)def
setDefault
(arg__1)def
setFlat
(arg__1)def
setMenu
(menu)
Detailed Description¶
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:
button = QPushButton("&Download", self)In this example the shortcut is Alt+D . See the
QShortcut
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 using
setText()
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 signal
clicked()
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 examplepressed()
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 with
setAutoDefault()
. 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:
Available or not (grayed out, disabled).
Standard push button, toggling push button or menu button.
On or off (only for toggling push buttons).
Default or normal. The default button in a dialog can generally be “clicked” using the Enter or Return key.
Auto-repeat or not.
Pressed down or not.
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 the
QFileDialog
) are not command buttons, but tool buttons. Qt provides a special class (QToolButton
) for these buttons.If you need toggle behavior (see
setCheckable()
) 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.Note
On macOS when a push 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 the
setMinimumSize()
function to prevent this behavior.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 method
setMenu()
to associate a popup menu with a push button.Other classes of buttons are option buttons (see
QRadioButton
) and check boxes (seeQCheckBox
).In Qt, the
QAbstractButton
base class provides most of the modes and other API, andQPushButton
provides GUI logic. SeeQAbstractButton
for more information about the API.
-
class
QPushButton
([parent=None])¶ QPushButton(icon, text[, parent=None])
QPushButton(text[, parent=None])
- param parent
- param icon
QIcon
- param text
unicode
Constructs a push button with no text and a
parent
.Constructs a push button with an
icon
and atext
, and aparent
.Note that you can also pass a
QPixmap
object as an icon (thanks to the implicit type conversion provided by C++).
-
PySide2.QtWidgets.QPushButton.
autoDefault
()¶ - Return type
bool
See also
-
PySide2.QtWidgets.QPushButton.
initStyleOption
(option)¶ - Parameters
option –
QStyleOptionButton
Initialize
option
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 also
-
PySide2.QtWidgets.QPushButton.
isDefault
()¶ - Return type
bool
-
PySide2.QtWidgets.QPushButton.
isFlat
()¶ - Return type
bool
- Return type
Returns the button’s associated popup menu or 0 if no popup menu has been set.
See also
-
PySide2.QtWidgets.QPushButton.
setAutoDefault
(arg__1)¶ - Parameters
arg__1 –
bool
See also
-
PySide2.QtWidgets.QPushButton.
setDefault
(arg__1)¶ - Parameters
arg__1 –
bool
See also
-
PySide2.QtWidgets.QPushButton.
setMenu
(menu)¶ - Parameters
menu –
QMenu
Associates the popup menu
menu
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 is not transferred to the push button.
A push button with popup menus shown in the Fusion widget style .
See also
-
PySide2.QtWidgets.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.
© 2018 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 the GNU 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.