Viadeo Twitter Google Bookmarks ! Facebook Digg del.icio.us MySpace Yahoo MyWeb Blinklist Netvouz Reddit Simpy StumbleUpon Bookmarks Windows Live Favorites 
Logo Documentation Qt ·  Page d'accueil  ·  Toutes les classes  ·  Classes principales  ·  Annotées  ·  Classes groupées  ·  Modules  ·  Fonctions  · 

QHeaderView Class Reference
[QtGui module]

The QHeaderView class provides a header row or header column for item views. More...

 #include <QHeaderView>

Inherits QAbstractItemView.

Public Types

  • enum ResizeMode { Interactive, Fixed, Stretch, ResizeToContents, Custom }

Properties

Public Functions

Public Slots

Signals

Protected Functions

Protected Slots

Additional Inherited Members

  • 4 static public members inherited from QWidget
  • 5 static public members inherited from QObject

Detailed Description

The QHeaderView class provides a header row or header column for item views.

A QHeaderView displays the headers used in item views such as the QTableView and QTreeView classes. It takes the place of the QHeader class previously used for the same purpose, but uses the Qt's model/view architecture for consistency with the item view classes.

The QHeaderView class is one of the Model/View Classes and is part of Qt's model/view framework.

The header gets the data for each section from the model using the QAbstractItemModel::headerData() function. You can set the data by using QAbstractItemModel::setHeaderData().

Each header has an orientation() and a number of sections, given by the count() function. Sections can be moved and resized using moveSection() and resizeSection(); they can be hidden and shown with hideSection() and showSection().

Each section of a header is described by a section ID, specified by its section(), and can be located at a particular visualIndex() in the header. A section can have a sort indicator set with setSortIndicator(); this indicates whether the items in the associated item view will be sorted in the order given by the section.

A header can be fixed in place, or made movable with setMovable(). It can be made clickable with setClickable(), and has resizing behavior in accordance with setResizeMode().

A header emits sectionMoved() if the user moves a section, sectionResized() if the user resizes a section, and sectionClicked() and sectionHandleDoubleClicked() in response to mouse clicks. A header also emits sectionCountChanged() and sectionAutoResize().

You can identify a section using the logicalIndex() and logicalIndexAt() functions, or by its index position, using the visualIndex() and visualIndexAt() functions. The visual index will change if a section is moved while the logical index wont change.

For a horizontal header the section is equivalent to a column in the model, and for a vertical header the section is equivalent to a row in the model.

QTableWidget and QTableView create default headers. If you want the headers to be visible, you can use setVisible().

See also Model/View Programming, QListView, QTableView, and QTreeView.


Member Type Documentation

enum QHeaderView::ResizeMode

The resize mode specifies the behavior of the header sections. It can be set on the entire header view or on individual sections using setResizeMode().

ConstantValueDescription
QHeaderView::Interactive0The user can resize the section. The section can also be resized programmatically using resizeSection(). The section size defaults to defaultSectionSize. (See also cascadingSectionResizes.)
QHeaderView::Fixed2The user cannot resize the section. The section can only be resized programmatically using resizeSection(). The section size defaults to defaultSectionSize.
QHeaderView::Stretch1QHeaderView will automatically resize the section to fill the available space. The size cannot be changed by the user or programmatically.
QHeaderView::ResizeToContents3QHeaderView will automatically resize the section to its optimal size based on the contents of the entire column or row. The size cannot be changed by the user or programmatically. (This value was introduced in 4.2)

The following values are obsolete:

ConstantValueDescription
QHeaderView::CustomFixedUse Fixed instead.

See also setResizeMode(), stretchLastSection, and minimumSectionSize.


Property Documentation

cascadingSectionResizes : bool

This property holds whether interactive resizing will be cascaded to the following sections once the section being resized by the user has reached its minimum size.

This property only affects sections that have Interactive as the resize mode.

The default value is false.

This property was introduced in Qt 4.2.

Access functions:

  • bool cascadingSectionResizes () const
  • void setCascadingSectionResizes ( bool enable )

See also setResizeMode().

defaultAlignment : Qt::Alignment

This property holds the default alignment of the text in each header section.

This property was introduced in Qt 4.1.

Access functions:

  • Qt::Alignment defaultAlignment () const
  • void setDefaultAlignment ( Qt::Alignment alignment )

defaultSectionSize : int

This property holds the default size of the header sections before resizing.

This property only affects sections that have Interactive or Fixed as the resize mode.

Access functions:

  • int defaultSectionSize () const
  • void setDefaultSectionSize ( int size )

See also setResizeMode() and minimumSectionSize.

highlightSections : bool

This property holds whether the sections containing selected items are highlighted.

Access functions:

  • bool highlightSections () const
  • void setHighlightSections ( bool highlight )

minimumSectionSize : int

This property holds the minimum size of the header sections.

The minimum section size is the smallest section size allowed. If the minimum section size is set to -1, QHeaderView will use the maximum of the global strut or the font metrics size.

This property is honored by all resize modes.

This property was introduced in Qt 4.2.

Access functions:

  • int minimumSectionSize () const
  • void setMinimumSectionSize ( int size )

See also setResizeMode() and defaultSectionSize.

showSortIndicator : bool

This property holds whether the sort indicator is shown.

Access functions:

  • bool isSortIndicatorShown () const
  • void setSortIndicatorShown ( bool show )

See also setClickable().

stretchLastSection : bool

This property holds whether the last visible section in the header takes up all the available space.

The default value is false.

Note: The horizontal headers provided by QTreeView are configured with this property set to true, ensuring that the view does not waste any of the space assigned to it for its header.

Access functions:

  • bool stretchLastSection () const
  • void setStretchLastSection ( bool stretch )

See also setResizeMode().


Member Function Documentation

QHeaderView::QHeaderView ( Qt::Orientation orientation, QWidget * parent = 0 )

Creates a new generic header with the given orientation and parent.

QHeaderView::~QHeaderView ()   [virtual]

Destroys the header.

int QHeaderView::count () const

Returns the number of sections in the header.

See also sectionCountChanged() and length().

void QHeaderView::geometriesChanged ()   [signal]

This signal is emitted when the header geometries has changed.

This function was introduced in Qt 4.2.

void QHeaderView::headerDataChanged ( Qt::Orientation orientation, int logicalFirst, int logicalLast )   [slot]

Updates the changed header sections with the given orientation, from logicalFirst to logicalLast inclusive.

int QHeaderView::hiddenSectionCount () const

Returns the number of sections in the header that has been hidden.

This function was introduced in Qt 4.1.

See also setSectionHidden() and isSectionHidden().

void QHeaderView::hideSection ( int logicalIndex )

Hides the section specified by logicalIndex.

See also showSection(), isSectionHidden(), and hiddenSectionCount().

int QHeaderView::horizontalOffset () const   [virtual protected]

Returns the horizontal offset of the header. This is 0 for vertical headers.

Reimplemented from QAbstractItemView.

See also offset().

bool QHeaderView::isClickable () const

Returns true if the header is clickable; otherwise returns false. A clickable header could be set up to allow the user to change the representation of the data in the view related to the header.

See also setClickable().

bool QHeaderView::isMovable () const

Returns true if the header can be moved by the user; otherwise returns false.

See also setMovable().

bool QHeaderView::isSectionHidden ( int logicalIndex ) const

Returns true if the section specified by logicalIndex is explicitly hidden from the user; otherwise returns false.

See also setSectionHidden() and hiddenSectionCount().

int QHeaderView::length () const

Returns the length along the orientation of the header.

See also sizeHint(), setResizeMode(), and offset().

int QHeaderView::logicalIndex ( int visualIndex ) const

Returns the logicalIndex for the section at the given visualIndex position, or -1 otherwise.

See also visualIndex() and sectionPosition().

int QHeaderView::logicalIndexAt ( int position ) const

Returns the section that covers the given position in the viewport.

See also visualIndexAt() and isSectionHidden().

int QHeaderView::logicalIndexAt ( int x, int y ) const

This is an overloaded member function, provided for convenience.

Returns the logical index of the section at the given coordinate. If the header is horizontal x will be used, otherwise y will be used to find the logical index.

int QHeaderView::logicalIndexAt ( const QPoint & pos ) const

This is an overloaded member function, provided for convenience.

Returns the logical index of the section at the position given in pos. If the header is horizontal the x-coordinate will be used to find the logical index; otherwise the y-coordinate will be used.

See also sectionPosition().

void QHeaderView::moveSection ( int from, int to )

Moves the section at visual index from to occupy visual index to.

See also sectionsMoved().

int QHeaderView::offset () const

Returns the offset of the header: this is the header's left-most (or top-most for vertical headers) visible pixel.

See also setOffset().

Qt::Orientation QHeaderView::orientation () const

Returns the orientation of the header.

See also Qt::Orientation.

void QHeaderView::paintSection ( QPainter * painter, const QRect & rect, int logicalIndex ) const   [virtual protected]

Paints the section specified by the given logicalIndex, using the given painter and rect.

You normally would not need to use this function.

ResizeMode QHeaderView::resizeMode ( int logicalIndex ) const

Returns the resize mode that applies to the section specified by the given logicalIndex.

See also setResizeMode().

void QHeaderView::resizeSection ( int logicalIndex, int size )

Resizes the section specified by logicalIndex to the size measured in pixels.

See also sectionResized() and resizeMode().

void QHeaderView::resizeSections ( QHeaderView::ResizeMode mode )

Resizes the sections according to the given mode, ignoring the current resize mode.

See also resizeMode() and sectionResized().

void QHeaderView::resizeSections ()   [protected slot]

This is an overloaded member function, provided for convenience.

Resizes the sections according to their size hints. You should not normally need to call this function.

void QHeaderView::sectionAutoResize ( int logicalIndex, QHeaderView::ResizeMode mode )   [signal]

This signal is emitted when a section is automatically resized. The section's logical index is specified by logicalIndex, and the resize mode by mode.

See also setResizeMode() and stretchLastSection().

void QHeaderView::sectionClicked ( int logicalIndex )   [signal]

This signal is emitted when a section is clicked. The section's logical index is specified by logicalIndex.

Note that the sectionPressed signal will also be emitted.

See also setClickable() and sectionPressed().

void QHeaderView::sectionCountChanged ( int oldCount, int newCount )   [signal]

This signal is emitted when the number of sections changes; i.e. when sections are added or deleted. The original count is specified by oldCount, and the new count by newCount.

See also count(), length(), and headerDataChanged().

void QHeaderView::sectionDoubleClicked ( int logicalIndex )   [signal]

This signal is emitted when a section is double-clicked. The section's logical index is specified by logicalIndex.

See also setClickable().

void QHeaderView::sectionHandleDoubleClicked ( int logicalIndex )   [signal]

This signal is emitted when a section is double-clicked. The section's logical index is specified by logicalIndex.

See also setClickable().

void QHeaderView::sectionMoved ( int logicalIndex, int oldVisualIndex, int newVisualIndex )   [signal]

This signal is emitted when a section is moved. The section's logical index is specified by logicalIndex, the old index by oldVisualIndex, and the new index position by newVisualIndex.

See also moveSection().

int QHeaderView::sectionPosition ( int logicalIndex ) const

Returns the section position of the given logicalIndex, or -1 if the section is hidden.

See also sectionViewportPosition().

void QHeaderView::sectionPressed ( int logicalIndex )   [signal]

This signal is emitted when a section is pressed. The section's logical index is specified by logicalIndex.

See also setClickable().

void QHeaderView::sectionResized ( int logicalIndex, int oldSize, int newSize )   [signal]

This signal is emitted when a section is resized. The section's logical number is specified by logicalIndex, the old size by oldSize, and the new size by newSize.

See also resizeSection().

int QHeaderView::sectionSize ( int logicalIndex ) const

Returns the width (or height for vertical headers) of the given logicalIndex.

See also length(), setResizeMode(), and defaultSectionSize().

QSize QHeaderView::sectionSizeFromContents ( int logicalIndex ) const   [virtual protected]

Returns the size of the contents of the section specified by the give logicalIndex.

See also defaultSectionSize().

int QHeaderView::sectionSizeHint ( int logicalIndex ) const

Returns a suitable size hint for the section specified by logicalIndex.

See also sizeHint(), defaultSectionSize(), minimumSectionSize(), and Qt::SizeHintRole.

int QHeaderView::sectionViewportPosition ( int logicalIndex ) const

Returns the section viewport position of the given logicalIndex.

If the section is hidden, this function returns an undefined value.

See also sectionPosition() and isSectionHidden().

void QHeaderView::sectionsAboutToBeRemoved ( const QModelIndex & parent, int logicalFirst, int logicalLast )   [protected slot]

This slot is called when sections are removed from the parent, logicalFirst and logicalLast signify where the sections are removed from. (logicalFirst and logicalLast will be the same if just one section is removed.)

bool QHeaderView::sectionsHidden () const

Returns true if sections in the header has been hidden; otherwise returns false;

This function was introduced in Qt 4.1.

See also setSectionHidden().

void QHeaderView::sectionsInserted ( const QModelIndex & parent, int logicalFirst, int logicalLast )   [protected slot]

This slot is called when sections are inserted into the parent, logicalFirst and logicalLast indexes signify where the new sections are inserted.

logicalFirst and logicalLast will be the same if just one section is inserted.

bool QHeaderView::sectionsMoved () const

Returns true if sections in the header has been moved; otherwise returns false;

See also moveSection().

void QHeaderView::setClickable ( bool clickable )

If clickable is true, the header will respond to single clicks.

See also isClickable(), sectionClicked(), sectionPressed(), and setSortIndicatorShown().

void QHeaderView::setMovable ( bool movable )

If movable is true, the header may be moved by the user; otherwise it is fixed in place.

See also isMovable() and sectionMoved().

void QHeaderView::setOffset ( int offset )   [slot]

Sets the header's offset to offset.

See also offset() and length().

void QHeaderView::setOffsetToSectionPosition ( int visualIndex )   [slot]

Sets the offset to the start of the section at the given visualIndex.

This function was introduced in Qt 4.2.

See also setOffset() and sectionPosition().

void QHeaderView::setResizeMode ( ResizeMode mode )

Sets the constraints on how the header can be resized to those described by the given mode.

See also resizeMode(), length(), sectionResized(), and sectionAutoResize().

void QHeaderView::setResizeMode ( int logicalIndex, ResizeMode mode )

This is an overloaded member function, provided for convenience.

Sets the constraints on how the section specified by logicalIndex in the header can be resized to those described by the given mode.

void QHeaderView::setSectionHidden ( int logicalIndex, bool hide )

If hide is true the section specified by logicalIndex is hidden, otherwise the section is shown.

See also isSectionHidden() and hiddenSectionCount().

void QHeaderView::setSortIndicator ( int logicalIndex, Qt::SortOrder order )

Sets the sort indicator for the section specified by the given logicalIndex in the direction specified by order, and removes the sort indicator from any other section that was showing it.

See also sortIndicatorSection() and sortIndicatorOrder().

void QHeaderView::showSection ( int logicalIndex )

Shows the section specified by logicalIndex.

See also hideSection() and isSectionHidden().

QSize QHeaderView::sizeHint () const   [virtual]

Returns a suitable size hint for this header.

Reimplemented from QWidget.

See also sectionSizeHint().

Qt::SortOrder QHeaderView::sortIndicatorOrder () const

Returns the order for the sort indicator. If no section has a sort indicator the return value of this function is undefined.

See also setSortIndicator() and sortIndicatorSection().

int QHeaderView::sortIndicatorSection () const

Returns the logical index of the section that has a sort indicator. By default this is section 0.

See also setSortIndicator(), sortIndicatorOrder(), and setSortIndicatorShown().

int QHeaderView::stretchSectionCount () const

Returns the number of sections that are set to resize mode stretch. In views this can be used to see if the headerview needs to resize the sections when the view geometry changes.

This function was introduced in Qt 4.1.

See also stretchLastSection and resizeMode().

void QHeaderView::swapSections ( int first, int second )

Swaps the section at visual index first with the section at visual index second.

This function was introduced in Qt 4.2.

See also moveSection().

int QHeaderView::verticalOffset () const   [virtual protected]

Returns the vertical offset of the header. This is 0 for horizontal headers.

Reimplemented from QAbstractItemView.

See also offset().

int QHeaderView::visualIndex ( int logicalIndex ) const

Returns the visual index position of the section specified by the given logicalIndex, or -1 otherwise. Hidden sections still have valid visual indexes.

See also logicalIndex().

int QHeaderView::visualIndexAt ( int position ) const

Returns the visual index of the section that covers the given position in the viewport.

See also logicalIndexAt().

Publicité

Best Of

Actualités les plus lues

Semaine
Mois
Année
  1. Microsoft ouvre aux autres compilateurs C++ AMP, la spécification pour la conception d'applications parallèles C++ utilisant le GPU 22
  2. Les développeurs ignorent-ils trop les failles découvertes dans leur code ? Prenez-vous en compte les remarques des autres ? 17
  3. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 17
  4. RIM : « 13 % des développeurs ont gagné plus de 100 000 $ sur l'AppWord », Qt et open-source au menu du BlackBerry DevCon Europe 0
  5. BlackBerry 10 : premières images du prochain OS de RIM qui devrait intégrer des widgets et des tuiles inspirées de Windows Phone 0
  6. Adieu qmake, bienvenue qbs : Qt Building Suite, un outil déclaratif et extensible pour la compilation de projets Qt 17
  7. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
Page suivante

Le Qt Labs au hasard

Logo

QMake et au-delà

Les Qt Labs sont les laboratoires des développeurs de Qt, où ils peuvent partager des impressions sur le framework, son utilisation, ce que pourrait être son futur. Lire l'article.

Communauté

Ressources

Liens utiles

Contact

  • Vous souhaitez rejoindre la rédaction ou proposer un tutoriel, une traduction, une question... ? Postez dans le forum Contribuez ou contactez-nous par MP ou par email (voir en bas de page).

Qt dans le magazine

Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. Qt 4.2
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD.
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP !
 
 
 
 
Partenaires

Hébergement Web