QStyleOptionButton 类是用于绘制按钮的描述参数。 更多...
头: | #include <QStyleOptionButton> |
qmake: | QT += widgets |
继承: | QStyleOption |
enum | ButtonFeature { None, Flat, HasMenu, DefaultButton, AutoDefaultButton, CommandLinkButton } |
flags | ButtonFeatures |
enum | StyleOptionType { Type } |
enum | StyleOptionVersion { Version } |
QStyleOptionButton (const QStyleOptionButton & other ) | |
QStyleOptionButton () |
QStyleOptionButton::ButtonFeatures | features |
QIcon | icon |
QSize | iconSize |
QString | text |
QStyleOptionButton 包含所有信息当 QStyle 函数需要绘制图形元素像 QPushButton , QCheckBox ,和 QRadioButton .
For performance reasons, the access to the member variables is direct (i.e., using the
.
or
->
operator). This low-level feel makes the structures straightforward to use and emphasizes that these are simply parameters used by the style functions.
对于可以如何使用样式选项的演示范例,见 样式 范例。
另请参阅 QStyleOption and QStyleOptionToolButton .
此枚举描述按钮可以拥有的不同特征类型。
常量 | 值 | 描述 |
---|---|---|
QStyleOptionButton::None
|
0x00
|
表示正常的按钮。 |
QStyleOptionButton::Flat
|
0x01
|
表示扁平按钮。 |
QStyleOptionButton::HasMenu
|
0x02
|
指示按钮拥有下拉菜单。 |
QStyleOptionButton::DefaultButton
|
0x04
|
指示按钮是默认按钮。 |
QStyleOptionButton::AutoDefaultButton
|
0x08
|
指示按钮是自动默认按钮。 |
QStyleOptionButton::CommandLinkButton
|
0x10
|
指示按钮是 Windows Vista 类型命令链接。 |
The ButtonFeatures type is a typedef for QFlags <ButtonFeature>. It stores an OR combination of ButtonFeature values.
另请参阅 features .
This enum is used to hold information about the type of the style option, and is defined for each QStyleOption 子类。
常量 | 值 | 描述 |
---|---|---|
QStyleOptionButton::Type
|
SO_Button
|
提供样式选项的类型 ( SO_Button 对于此类)。 |
类型内部使用通过 QStyleOption ,其子类,和 qstyleoption_cast () to determine the type of style option. In general you do not need to worry about this unless you want to create your own QStyleOption subclass and your own styles.
另请参阅 StyleOptionVersion .
This enum is used to hold information about the version of the style option, and is defined for each QStyleOption 子类。
常量 | 值 | 描述 |
---|---|---|
QStyleOptionButton::Version
|
1
|
1 |
版本的使用通过 QStyleOption 子类以实现扩展在不破坏兼容性的情况下。若使用 qstyleoption_cast (),通常不需要校验它。
另请参阅 StyleOptionType .
构造副本为 other 样式选项。
构造 QStyleOptionButton,将成员变量初始化成其默认值。
此变量保持描述该按钮特征的按位 OR (或)
另请参阅 ButtonFeature .
此变量保持按钮的图标
默认值为空图标 (即:图标既没有像素图,也没有文件名)。
另请参阅 iconSize .
此变量保持按钮图标的大小
默认值为 QSize (-1, -1),即:无效尺寸。
此变量保持按钮的文本
默认值为空字符串。