QStyleOptionHeader 类是用于绘制 Header (头) 的描述参数。 更多...
头: | #include <QStyleOptionHeader> |
qmake: | QT += widgets |
继承: | QStyleOption |
enum | SectionPosition { Beginning, Middle, End, OnlyOneSection } |
enum | SelectedPosition { NotAdjacent, NextIsSelected, PreviousIsSelected, NextAndPreviousAreSelected } |
enum | SortIndicator { None, SortUp, SortDown } |
enum | StyleOptionType { Type } |
enum | StyleOptionVersion { Version } |
QStyleOptionHeader (const QStyleOptionHeader & other ) | |
QStyleOptionHeader () |
QIcon | icon |
Qt::Alignment | iconAlignment |
Qt::Orientation | orientation |
QStyleOptionHeader::SectionPosition | position |
int | section |
QStyleOptionHeader::SelectedPosition | selectedPosition |
QStyleOptionHeader::SortIndicator | sortIndicator |
QString | text |
Qt::Alignment | textAlignment |
QStyleOptionHeader contains all the information that QStyle functions need to draw the item views' header pane, header sort arrow, and header label.
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 .
This enum lets you know where the section's position is in relation to the other sections.
常量 | 值 | 描述 |
---|---|---|
QStyleOptionHeader::Beginning
|
0
|
At the beginining of the header |
QStyleOptionHeader::Middle
|
1
|
In the middle of the header |
QStyleOptionHeader::End
|
2
|
At the end of the header |
QStyleOptionHeader::OnlyOneSection
|
3
|
Only one header section |
另请参阅 position .
This enum lets you know where the section's position is in relation to the selected section.
常量 | 值 | 描述 |
---|---|---|
QStyleOptionHeader::NotAdjacent
|
0
|
Not adjacent to the selected section |
QStyleOptionHeader::NextIsSelected
|
1
|
The next section is selected |
QStyleOptionHeader::PreviousIsSelected
|
2
|
The previous section is selected |
QStyleOptionHeader::NextAndPreviousAreSelected
|
3
|
Both the next and previous section are selected |
另请参阅 selectedPosition .
Indicates which direction the sort indicator should be drawn
常量 | 值 | 描述 |
---|---|---|
QStyleOptionHeader::None
|
0
|
No sort indicator is needed |
QStyleOptionHeader::SortUp
|
1
|
Draw an up indicator |
QStyleOptionHeader::SortDown
|
2
|
Draw a down indicator |
另请参阅 sortIndicator .
This enum is used to hold information about the type of the style option, and is defined for each QStyleOption 子类。
常量 | 值 | 描述 |
---|---|---|
QStyleOptionHeader::Type
|
SO_Header
|
提供样式选项的类型 ( SO_Header 对于此类)。 |
类型内部使用通过 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 子类。
常量 | 值 | 描述 |
---|---|---|
QStyleOptionHeader::Version
|
1
|
1 |
版本的使用通过 QStyleOption 子类以实现扩展在不破坏兼容性的情况下。若使用 qstyleoption_cast (),通常不需要校验它。
另请参阅 StyleOptionType .
构造副本为 other 样式选项。
Constructs a QStyleOptionHeader, initializing the members variables to their default values.
This variable holds the icon of the header
默认值为空图标 (即:图标既没有像素图,也没有文件名)。
This variable holds the alignment flags for the icon of the header
默认值为 Qt::AlignLeft .
This variable holds the header's orientation (horizontal or vertical)
The default orientation is Qt::Horizontal
This variable holds the section's position in relation to the other sections
默认值为 QStyleOptionHeader::Beginning .
This variable holds which section of the header is being painted
默认值为 0。
This variable holds the section's position in relation to the selected section
默认值为 QStyleOptionHeader::NotAdjacent
This variable holds the direction the sort indicator should be drawn
默认值为 QStyleOptionHeader::None .
This variable holds the text of the header
默认值为空字符串。
This variable holds the alignment flags for the text of the header
默认值为 Qt::AlignLeft .