QToolButtonclass provides a quick-access button to commands or options, usually used inside aQToolBar. 更多 …
def
arrowType
()
def
autoRaise
()
def
defaultAction
()
def
initStyleOption
(option)
def
menu
()
def
popupMode
()
def
setArrowType
(type)
def
setAutoRaise
(enable)
def
setMenu
(menu)
def
setPopupMode
(mode)
def
toolButtonStyle
()
def
setDefaultAction
(arg__1)
def
setToolButtonStyle
(style)
def
showMenu
()
A tool button is a special button that provides quick-access to specific commands or options. As opposed to a normal command button, a tool button usually doesn’t show a text label, but shows an icon instead.
Tool buttons are normally created when new
QActioninstances are created withaddAction()or existing actions are added to a toolbar withaddAction(). It is also possible to construct tool buttons in the same way as any other widget, and arrange them alongside other widgets in layouts.One classic use of a tool button is to select tools; for example, the “pen” tool in a drawing program. This would be implemented by using a
QToolButtonas a toggle button (seesetCheckable()).
QToolButtonsupports auto-raising. In auto-raise mode, the button draws a 3D frame only when the mouse points at it. The feature is automatically turned on when a button is used inside aQToolBar. Change it withsetAutoRaise().A tool button’s icon is set as
QIcon. This makes it possible to specify different pixmaps for the disabled and active state. The disabled pixmap is used when the button’s functionality is not available. The active pixmap is displayed when the button is auto-raised because the mouse pointer is hovering over it.The button’s look and dimension is adjustable with
setToolButtonStyle()andsetIconSize(). When used inside aQToolBar在QMainWindow, the button automatically adjusts toQMainWindow‘s settings (seesetToolButtonStyle()andsetIconSize()). Instead of an icon, a tool button can also display an arrow symbol, specified witharrowType.A tool button can offer additional choices in a popup menu. The popup menu can be set using
setMenu()。使用setPopupMode()to configure the different modes available for tool buttons with a menu set. The default mode is DelayedPopupMode which is sometimes used with the “Back” button in a web browser. After pressing and holding the button down for a while, a menu pops up showing a list of possible pages to jump to. The timeout is style dependent, seeSH_ToolButton_PopupDelay.
![]()
Qt Assistant’s toolbar contains tool buttons that are associated with actions used in other parts of the main window.
QToolButton
(
[
parent=None
]
)
¶
- param parent
Constructs an empty tool button with parent
parent
.
PySide2.QtWidgets.QToolButton.
ToolButtonPopupMode
¶
Describes how a menu should be popped up for tool buttons that has a menu set or contains a list of actions.
|
常量 |
描述 |
|---|---|
|
QToolButton.DelayedPopup |
After pressing and holding the tool button down for a certain amount of time (the timeout is style dependent, see
|
|
QToolButton.MenuButtonPopup |
In this mode the tool button displays a special arrow to indicate that a menu is present. The menu is displayed when the arrow part of the button is pressed. |
|
QToolButton.InstantPopup |
The menu is displayed, without delay, when the tool button is pressed. In this mode, the button’s own action is not triggered. |
PySide2.QtWidgets.QToolButton.
arrowType
(
)
¶
ArrowType
另请参阅
PySide2.QtWidgets.QToolButton.
autoRaise
(
)
¶
bool
另请参阅
PySide2.QtWidgets.QToolButton.
defaultAction
(
)
¶
Returns the default action.
另请参阅
PySide2.QtWidgets.QToolButton.
initStyleOption
(
option
)
¶
option
–
QStyleOptionToolButton
初始化
option
采用值来自此
QToolButton
。此方法对子类是有用的,当需要
QStyleOptionToolButton
, but don’t want to fill in all the information themselves.
另请参阅
PySide2.QtWidgets.QToolButton.
popupMode
(
)
¶
另请参阅
PySide2.QtWidgets.QToolButton.
setArrowType
(
type
)
¶
type
–
ArrowType
另请参阅
PySide2.QtWidgets.QToolButton.
setAutoRaise
(
enable
)
¶
enable
–
bool
另请参阅
PySide2.QtWidgets.QToolButton.
setDefaultAction
(
arg__1
)
¶
arg__1
–
QAction
Sets the default action to
action
.
If a tool button has a default action, the action defines the following properties of the button:
checkable
checked
enabled
popupMode
(assuming the action has a menu)
Other properties, such as
autoRepeat
, are not affected by actions.
另请参阅
PySide2.QtWidgets.QToolButton.
setMenu
(
menu
)
¶
menu
–
QMenu
Associates the given
menu
with this tool button.
The menu will be shown according to the button’s
popupMode
.
Ownership of the menu is not transferred to the tool button.
另请参阅
PySide2.QtWidgets.QToolButton.
setPopupMode
(
mode
)
¶
mode
–
ToolButtonPopupMode
另请参阅
PySide2.QtWidgets.QToolButton.
setToolButtonStyle
(
style
)
¶
style
–
ToolButtonStyle
另请参阅
PySide2.QtWidgets.QToolButton.
showMenu
(
)
¶
展示 (弹出) 关联的弹出菜单。若没有这样的菜单,此函数什么都不做。此函数直到用户关闭弹出菜单后才返回。
PySide2.QtWidgets.QToolButton.
toolButtonStyle
(
)
¶
ToolButtonStyle
另请参阅