QStyleOptionFrame 类

QStyleOptionFrame class is used to describe the parameters for drawing a frame. 更多...

头: #include <QStyleOptionFrame>
qmake: QT += widgets
继承: QStyleOption

公共类型

enum FrameFeature { None, Flat, Rounded }
flags FrameFeatures
enum StyleOptionType { Type }
enum StyleOptionVersion { Version }

公共函数

QStyleOptionFrame ()
QStyleOptionFrame (const QStyleOptionFrame & other )

公共变量

FrameFeatures features
QFrame::Shape frameShape
int lineWidth
int midLineWidth

详细描述

QStyleOptionFrame class is used to describe the parameters for drawing a frame.

QStyleOptionFrame is used for drawing several built-in Qt widgets, including QFrame , QGroupBox , QLineEdit ,和 QMenu .

An instance of the QStyleOptionFrame class has type SO_Frame and version 3.

类型内部使用通过 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. The version is used by QStyleOption 子类以实现扩展在不破坏兼容性的情况下。若使用 qstyleoption_cast (), you normally do not need to check it.

对于可以如何使用样式选项的演示范例,见 样式 范例。

另请参阅 QStyleOption .

成员类型文档编制

enum QStyleOptionFrame:: FrameFeature
flags QStyleOptionFrame:: FrameFeatures

This enum describes the different types of features a frame can have.

常量 描述
QStyleOptionFrame::None 0x00 Indicates a normal frame.
QStyleOptionFrame::Flat 0x01 Indicates a flat frame.
QStyleOptionFrame::Rounded 0x02 Indicates a rounded frame.

The FrameFeatures type is a typedef for QFlags <FrameFeature>. It stores an OR combination of FrameFeature values.

enum QStyleOptionFrame:: StyleOptionType

This enum is used to hold information about the type of the style option, and is defined for each QStyleOption 子类。

常量 描述
QStyleOptionFrame::Type SO_Frame 提供样式选项的类型 ( SO_Frame 对于此类)。

类型内部使用通过 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 .

enum QStyleOptionFrame:: StyleOptionVersion

This enum is used to hold information about the version of the style option, and is defined for each QStyleOption 子类。

常量 描述
QStyleOptionFrame::Version 3 3

版本的使用通过 QStyleOption 子类以实现扩展在不破坏兼容性的情况下。若使用 qstyleoption_cast (), you normally do not need to check it.

另请参阅 StyleOptionType .

成员函数文档编制

QStyleOptionFrame:: QStyleOptionFrame ()

构造 QStyleOptionFrame , initializing the members variables to their default values.

QStyleOptionFrame:: QStyleOptionFrame (const QStyleOptionFrame & other )

构造副本为 other 样式选项。

成员变量文档编制

FrameFeatures QStyleOptionFrame:: features

This variable holds a bitwise OR of the features that describe this frame.

另请参阅 FrameFeature .

QFrame::Shape QStyleOptionFrame:: frameShape

This property holds the frame shape value of the frame.

另请参阅 QFrame::frameShape .

int QStyleOptionFrame:: lineWidth

This variable holds the line width for drawing the frame

默认值为 0。

另请参阅 QFrame::lineWidth .

int QStyleOptionFrame:: midLineWidth

This variable holds the mid-line width for drawing the frame

This is usually used in drawing sunken or raised frames.

默认值为 0。

另请参阅 QFrame::midLineWidth .