The Q3Header class provides a header row or column, e.g. for tables and listviews. 更多...
| 头: | #include <Q3Header> |
| 继承: | QWidget |
|
| Q3Header (QWidget * parent = 0, const char * name = 0) | |
| Q3Header (int n , QWidget * parent = 0, const char * name = 0) | |
| ~Q3Header () | |
| int | addLabel (const QString & s , int size = -1) |
| int | addLabel (const QIcon & icon , const QString & s , int size = -1) |
| void | adjustHeaderSize () |
| int | cellAt (int pos ) const |
| int | cellPos (int i ) const |
| int | cellSize (int i ) const |
| int | count () const |
| int | headerWidth () const |
| QIcon * | iconSet (int section ) const |
| bool | isClickEnabled (int section = -1) const |
| bool | isMovingEnabled () const |
| bool | isResizeEnabled (int section = -1) const |
| bool | isStretchEnabled () const |
| bool | isStretchEnabled (int section ) const |
| QString | label (int section ) const |
| int | mapToActual (int l ) const |
| int | mapToIndex (int section ) const |
| int | mapToLogical (int a ) const |
| int | mapToSection (int index ) const |
| virtual void | moveCell (int fromIdx , int toIdx ) |
| void | moveSection (int section , int toIndex ) |
| int | offset () const |
| Qt::Orientation | orientation () const |
| void | removeLabel (int section ) |
| void | resizeSection (int section , int s ) |
| int | sectionAt (int pos ) const |
| int | sectionPos (int section ) const |
| QRect | sectionRect (int section ) const |
| int | sectionSize (int section ) const |
| virtual void | setCellSize (int section , int s ) |
| virtual void | setClickEnabled (bool enable , int section = -1) |
| virtual void | setLabel (int section , const QString & s , int size = -1) |
| virtual void | setLabel (int section , const QIcon & icon , const QString & s , int size = -1) |
| virtual void | setMovingEnabled (bool) |
| virtual void | setOrientation (Qt::Orientation) |
| virtual void | setResizeEnabled (bool enable , int section = -1) |
| void | setSortIndicator (int section , Qt::SortOrder order ) |
| void | setSortIndicator (int section , bool ascending = true) |
| virtual void | setStretchEnabled (bool b , int section ) |
| void | setStretchEnabled (bool b ) |
| virtual void | setTracking (bool enable ) |
| Qt::SortOrder | sortIndicatorOrder () const |
| int | sortIndicatorSection () const |
| bool | tracking () const |
| virtual QSize | sizeHint () const |
| virtual void | setOffset (int pos ) |
| void | clicked (int section ) |
| void | indexChange (int section , int fromIndex , int toIndex ) |
| void | moved (int fromIndex , int toIndex ) |
| void | pressed (int section ) |
| void | released (int section ) |
| void | sectionClicked (int index ) |
| void | sectionHandleDoubleClicked (int section ) |
| void | sizeChange (int section , int oldSize , int newSize ) |
| virtual void | paintSection (QPainter * p , int index , const QRect & fr ) |
| virtual void | paintSectionLabel (QPainter * p , int index , const QRect & fr ) |
| QRect | sRect (int index ) |
| virtual void | changeEvent (QEvent * ev ) |
| virtual void | keyPressEvent (QKeyEvent * e ) |
| virtual void | keyReleaseEvent (QKeyEvent * e ) |
| virtual void | mouseDoubleClickEvent (QMouseEvent * e ) |
| virtual void | mouseMoveEvent (QMouseEvent * e ) |
| virtual void | mousePressEvent (QMouseEvent * e ) |
| virtual void | mouseReleaseEvent (QMouseEvent * e ) |
| virtual void | paintEvent (QPaintEvent * e ) |
| virtual void | resizeEvent (QResizeEvent * e ) |
| virtual void | showEvent (QShowEvent * e ) |
The Q3Header class provides a header row or column, e.g. for tables and listviews.
This class provides a header, e.g. a vertical header to display row labels, or a horizontal header to display column labels. It is used by Q3Table and Q3ListView 例如。
A header is composed of one or more sections , each of which can display a text label and an icon . A sort indicator (an arrow) can also be displayed using setSortIndicator ().
Sections are added with addLabel () 和被移除采用 removeLabel (). The label and icon are set in addLabel () and can be changed later with setLabel ()。使用 count () to retrieve the number of sections in the header.
The orientation of the header is set with setOrientation ()。若 setStretchEnabled () is true, the sections will expand to take up the full width (height for vertical headers) of the header. The user can resize the sections manually if setResizeEnabled () is true. Call adjustHeaderSize () to have the sections resize to occupy the full width (or height).
A section can be moved with moveSection ()。若 setMovingEnabled () is true (the default)the user may drag a section from one position to another. If a section is moved, the index positions at which sections were added (with addLabel ()), may not be the same after the move. You don't have to worry about this in practice because the Q3Header API works in terms of section numbers, so it doesn't matter where a particular section has been moved to.
If you want the current index position of a section call mapToIndex () giving it the section number. (This is the number returned by the addLabel () call which created the section.) If you want to get the section number of a section at a particular index position call mapToSection () giving it the index number.
Here's an example to clarify mapToSection () 和 mapToIndex ():
| Index positions | |||
|---|---|---|---|
| 0 | 1 | 2 | 3 |
| Original section ordering | |||
| Sect 0 | Sect 1 | Sect 2 | Sect 3 |
| Ordering after the user moves a section | |||
| Sect 0 | Sect 2 | Sect 3 | Sect 1 |
| k | mapToSection ( k ) | mapToIndex ( k ) |
|---|---|---|
| 0 | 0 | 0 |
| 1 | 2 | 3 |
| 2 | 3 | 1 |
| 3 | 1 | 2 |
In the example above, if we wanted to find out which section is at index position 3 we'd call mapToSection (3) and get a section number of 1 since section 1 was moved. Similarly, if we wanted to know which index position section 2 occupied we'd call mapToIndex (2) and get an index of 1.
Q3Header 提供 clicked (), pressed () 和 released () signals. If the user changes the size of a section, the sizeChange () signal is emitted. If you want to have a sizeChange () signal emitted continuously whilst the user is resizing (rather than just after the resizing is finished), use setTracking (). If the user moves a section the indexChange () 信号发射。
另请参阅 Q3ListView and Q3Table .
This property holds the number of sections in the header.
访问函数:
| int | count () const |
This property holds whether the header sections can be moved.
If this property is true (the default) the user can move sections. If the user moves a section the indexChange () 信号发射。
访问函数:
| bool | isMovingEnabled () const |
| virtual void | setMovingEnabled (bool) |
另请参阅 setClickEnabled () 和 setResizeEnabled ().
This property holds the header's left-most (or top-most) visible pixel.
Setting this property will scroll the header so that offset becomes the left-most (or top-most for vertical headers) visible pixel.
访问函数:
| int | offset () const |
| virtual void | setOffset (int pos ) |
This property holds the header's orientation.
The orientation is either Qt::Vertical or Qt::Horizontal (the default).
Call setOrientation() before adding labels if you don't provide a size parameter otherwise the sizes will be incorrect.
访问函数:
| Qt::Orientation | orientation () const |
| virtual void | setOrientation (Qt::Orientation) |
This property holds whether the header sections always take up the full width (or height) of the header.
访问函数:
| bool | isStretchEnabled () const |
| bool | isStretchEnabled (int section ) const |
| virtual void | setStretchEnabled (bool b , int section ) |
| void | setStretchEnabled (bool b ) |
This property holds whether the sizeChange() signal is emitted continuously.
If tracking is on, the sizeChange () signal is emitted continuously while the mouse is moved (i.e. when the header is resized), otherwise it is only emitted when the mouse button is released at the end of resizing.
Tracking defaults to false.
访问函数:
| bool | tracking () const |
| virtual void | setTracking (bool enable ) |
Constructs a horizontal header called name ,采用父级 parent .
Constructs a horizontal header called name ,采用 n sections and parent parent .
Destroys the header and all its sections.
Adds a new section with label text s . Returns the index position where the section was added (at the right for horizontal headers, at the bottom for vertical headers). The section's width is set to size 。若 size < 0, an appropriate size for the text s is chosen.
这是重载函数。
Adds a new section with icon icon and label text s . Returns the index position where the section was added (at the right for horizontal headers, at the bottom for vertical headers). The section's width is set to size , unless size is negative in which case the size is calculated taking account of the size of the text.
Adjusts the size of the sections to fit the size of the header as completely as possible. Only sections for which isStretchEnabled () is true will be resized.
使用 sectionAt () 代替。
Returns the index at which the section is displayed, which contains pos in widget coordinates, or -1 if pos is outside the header sections.
使用 sectionPos () 代替。
Returns the position in pixels of the section that is displayed at the index i . The position is measured from the start of the header.
使用 sectionSize () 代替。
Returns the size in pixels of the section that is displayed at the index i .
另请参阅 setCellSize ().
[virtual protected]
void
Q3Header::
changeEvent
(
QEvent
*
ev
)
重实现自 QWidget::changeEvent ().
[signal]
void
Q3Header::
clicked
(
int
section
)
若 isClickEnabled () is true, this signal is emitted when the user clicks section section .
另请参阅 pressed () 和 released ().
Returns the total width of all the header columns.
Returns the icon set for section section . If the section does not exist, 0 is returned.
[signal]
void
Q3Header::
indexChange
(
int
section
,
int
fromIndex
,
int
toIndex
)
This signal is emitted when the user moves section section from index position fromIndex , to index position toIndex .
Returns true if section section is clickable; otherwise returns false.
若 section is out of range (negative or larger than count () - 1): returns true if all sections are clickable; otherwise returns false.
另请参阅 setClickEnabled ().
Returns true if section section is resizeable; otherwise returns false.
若 section is -1 then this function applies to all sections, i.e. returns true if all sections are resizeable; otherwise returns false.
另请参阅 setResizeEnabled ().
[virtual protected]
void
Q3Header::
keyPressEvent
(
QKeyEvent
*
e
)
重实现自 QWidget::keyPressEvent ().
[virtual protected]
void
Q3Header::
keyReleaseEvent
(
QKeyEvent
*
e
)
重实现自 QWidget::keyReleaseEvent ().
Returns the text for section section . If the section does not exist, returns an empty string.
另请参阅 setLabel ().
使用 mapToIndex () 代替。
Translates from logical index l to actual index (index at which the section l is displayed) . Returns -1 if l is outside the legal range.
另请参阅 mapToLogical ().
Returns the index position at which section section is displayed.
使用 mapToSection () 代替。
Translates from actual index a (index at which the section is displayed) to logical index of the section. Returns -1 if a is outside the legal range.
另请参阅 mapToActual ().
Returns the number of the section that is displayed at index position index .
[virtual protected]
void
Q3Header::
mouseDoubleClickEvent
(
QMouseEvent
*
e
)
重实现自 QWidget::mouseDoubleClickEvent ().
[virtual protected]
void
Q3Header::
mouseMoveEvent
(
QMouseEvent
*
e
)
重实现自 QWidget::mouseMoveEvent ().
[virtual protected]
void
Q3Header::
mousePressEvent
(
QMouseEvent
*
e
)
重实现自 QWidget::mousePressEvent ().
[virtual protected]
void
Q3Header::
mouseReleaseEvent
(
QMouseEvent
*
e
)
重实现自 QWidget::mouseReleaseEvent ().
[虚拟]
void
Q3Header::
moveCell
(
int
fromIdx
,
int
toIdx
)
使用 moveSection () 代替。
Moves the section that is currently displayed at index fromIdx to index toIdx .
Moves section section 到索引位置 toIndex .
[signal]
void
Q3Header::
moved
(
int
fromIndex
,
int
toIndex
)
使用 indexChange () 代替。
This signal is emitted when the user has moved the section which is displayed at the index fromIndex to the index toIndex .
[virtual protected]
void
Q3Header::
paintEvent
(
QPaintEvent
*
e
)
重实现自 QWidget::paintEvent ().
[virtual protected]
void
Q3Header::
paintSection
(
QPainter
*
p
,
int
index
, const
QRect
&
fr
)
Paints the section at position index , inside rectangle fr (which uses widget coordinates) using painter p .
调用 paintSectionLabel ().
[virtual protected]
void
Q3Header::
paintSectionLabel
(
QPainter
*
p
,
int
index
, const
QRect
&
fr
)
Paints the label of the section at position index , inside rectangle fr (which uses widget coordinates) using painter p .
Called by paintSection ()
[signal]
void
Q3Header::
pressed
(
int
section
)
This signal is emitted when the user presses section section 下。
另请参阅 released ().
[signal]
void
Q3Header::
released
(
int
section
)
This signal is emitted when section section 被释放。
另请参阅 pressed ().
Removes section section . If the section does not exist, nothing happens.
[virtual protected]
void
Q3Header::
resizeEvent
(
QResizeEvent
*
e
)
重实现自 QWidget::resizeEvent ().
Resizes section section to s pixels wide (or high).
[protected]
QRect
Q3Header::
sRect
(
int
index
)
Returns the rectangle covered by the section at index index .
Returns the index of the section which contains the position pos given in pixels from the left (or top).
另请参阅 offset ().
[signal]
void
Q3Header::
sectionClicked
(
int
index
)
使用 clicked () 代替。
This signal is emitted when a part of the header is clicked. index is the index at which the section is displayed.
In a list view this signal would typically be connected to a slot that sorts the specified column (or row).
[signal]
void
Q3Header::
sectionHandleDoubleClicked
(
int
section
)
This signal is emitted when the user doubleclicks on the edge (handle) of section section .
Returns the position (in pixels) at which the section starts.
另请参阅 offset ().
Returns the rectangle covered by section section .
Returns the width (or height) of the section (以像素为单位)。
[虚拟]
void
Q3Header::
setCellSize
(
int
section
,
int
s
)
使用 resizeSection () 代替。
Sets the size of the section section to s 像素。
警告: does not repaint or send out signals
另请参阅 cellSize ().
[虚拟]
void
Q3Header::
setClickEnabled
(
bool
enable
,
int
section
= -1)
若 enable is true, any clicks on section section will result in clicked () signals being emitted; otherwise the section will ignore clicks.
若 section is -1 (the default) then the enable value is set for all existing sections and will be applied to any new sections that are added.
另请参阅 isClickEnabled (), setMovingEnabled (),和 setResizeEnabled ().
[虚拟]
void
Q3Header::
setLabel
(
int
section
, const
QString
&
s
,
int
size
= -1)
Sets the text of section section to s . The section's width is set to size if size >= 0; otherwise it is left unchanged. Any icon set that has been set for this section remains unchanged.
If the section does not exist, nothing happens.
另请参阅 label ().
[虚拟]
void
Q3Header::
setLabel
(
int
section
, const
QIcon
&
icon
, const
QString
&
s
,
int
size
= -1)
这是重载函数。
Sets the icon for section section to icon and the text to s . The section's width is set to size if size >= 0; otherwise it is left unchanged.
If the section does not exist, nothing happens.
[虚拟]
void
Q3Header::
setResizeEnabled
(
bool
enable
,
int
section
= -1)
若 enable is true the user may resize section section ; otherwise the section may not be manually resized.
若 section is negative (the default) then the enable value is set for all existing sections and will be applied to any new sections that are added. Example:
// Allow resizing of all current and future sections header->setResizeEnabled(true); // Disable resizing of section 3, (the fourth section added) header->setResizeEnabled(false, 3);
If the user resizes a section, a sizeChange () 信号发射。
另请参阅 isResizeEnabled (), setMovingEnabled (), setClickEnabled (),和 setTracking ().
Sets a sort indicator onto the specified section . The indicator's order is either Ascending or Descending.
Only one section can show a sort indicator at any one time. If you don't want any section to show a sort indicator pass a section number of -1.
另请参阅 sortIndicatorSection () 和 sortIndicatorOrder ().
这是重载函数。
Sets the sort indicator to ascending . Use the other overload instead.
[virtual protected]
void
Q3Header::
showEvent
(
QShowEvent
*
e
)
重实现自 QWidget::showEvent ().
[signal]
void
Q3Header::
sizeChange
(
int
section
,
int
oldSize
,
int
newSize
)
This signal is emitted when the user has changed the size of a section from oldSize to newSize . This signal is typically connected to a slot that repaints the table or list that contains the header.
[虚拟]
QSize
Q3Header::
sizeHint
() const
重实现自 QWidget::sizeHint ().
Returns the implied sort order of the Q3Headers sort indicator.
另请参阅 setSortIndicator () 和 sortIndicatorSection ().
Returns the section showing the sort indicator or -1 if there is no sort indicator.
另请参阅 setSortIndicator () 和 sortIndicatorOrder ().