IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)

QColumnView Class

The QColumnView class provides a model/view implementation of a column view.

Article lu   fois.

L'auteur

Liens sociaux

Viadeo Twitter Facebook Share on Google+   

QColumnView Class

  • Header: QColumnView

  • CMake:

    find_package(Qt6 REQUIRED COMPONENTS Widgets)

    target_link_libraries(mytarget PRIVATE Qt6::Widgets)

  • qmake: QT += widgets

  • Inherits: QAbstractItemView

  • Group: QColumnView is part of model-view, advanced

Detailed Description

QColumnView displays a model in a number of QListViews, one for each hierarchy in the tree. This is sometimes referred to as a cascading list.

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

QColumnView implements the interfaces defined by the QAbstractItemView class to allow it to display data provided by models derived from the QAbstractItemModel class.

Image non disponible

See Also

Property Documentation

 

resizeGripsVisible : bool

This property holds the way to specify if the list views gets resize grips or not

By default, visible is set to true

Access functions:

  • bool resizeGripsVisible() const

  • void setResizeGripsVisible(bool visible)

See Also

See also setRootIndex()

Member Function Documentation

 

[explicit] QColumnView::QColumnView(QWidget *parent = nullptr)

Constructs a column view with a parent to represent a model's data. Use setModel() to set the model.

See Also

[virtual] QColumnView::~QColumnView()

Destroys the column view.

QList<int> QColumnView::columnWidths() const

Returns a list of the width of all the columns in this view.

See Also

See also setColumnWidths()

[virtual protected] QAbstractItemView *QColumnView::createColumn(const QModelIndex &index)

To use a custom widget for the final column when you select an item overload this function and return a widget. index is the root index that will be assigned to the view.

Return the new view. QColumnView will automatically take ownership of the widget.

See Also

See also setPreviewWidget()

[override virtual protected] void QColumnView::currentChanged(const QModelIndex &current, const QModelIndex &previous)

[override virtual protected] int QColumnView::horizontalOffset() const

[override virtual] QModelIndex QColumnView::indexAt(const QPoint &point) const

[protected] void QColumnView::initializeColumn(QAbstractItemView *column) const

Copies the behavior and options of the column view and applies them to the column such as the iconSize(), textElideMode() and alternatingRowColors(). This can be useful when reimplementing createColumn().

See Also

See also createColumn()

[override virtual protected] bool QColumnView::isIndexHidden(const QModelIndex &index) const

[override virtual protected] QModelIndex QColumnView::moveCursor(QAbstractItemView::CursorAction cursorAction, Qt::KeyboardModifiers modifiers)

Reimplements: QAbstractItemView::moveCursor(QAbstractItemView::CursorAction cursorAction, Qt::KeyboardModifiers modifiers).

Move left should go to the parent index Move right should go to the child index or down if there is no child

QWidget *QColumnView::previewWidget() const

Returns the preview widget, or nullptr if there is none.

See Also

[override virtual protected] void QColumnView::resizeEvent(QResizeEvent *event)

[override virtual protected] void QColumnView::rowsInserted(const QModelIndex &parent, int start, int end)

[override virtual protected] void QColumnView::scrollContentsBy(int dx, int dy)

[override virtual] void QColumnView::scrollTo(const QModelIndex &index, QAbstractItemView::ScrollHint hint = EnsureVisible)

[override virtual] void QColumnView::selectAll()

void QColumnView::setColumnWidths(const QList<int> &list)

Sets the column widths to the values given in the list. Extra values in the list are kept and used when the columns are created.

If list contains too few values, only width of the rest of the columns will not be modified.

See Also

See also columnWidths(), createColumn()

[override virtual] void QColumnView::setModel(QAbstractItemModel *model)

void QColumnView::setPreviewWidget(QWidget *widget)

Sets the preview widget.

The widget becomes a child of the column view, and will be destroyed when the column area is deleted or when a new widget is set.

See Also

[override virtual] void QColumnView::setRootIndex(const QModelIndex &index)

[override virtual protected] void QColumnView::setSelection(const QRect &rect, QItemSelectionModel::SelectionFlags command)

[override virtual] void QColumnView::setSelectionModel(QItemSelectionModel *newSelectionModel)

[override virtual] QSize QColumnView::sizeHint() const

void QColumnView::updatePreviewWidget(const QModelIndex &index)

This signal is emitted when the preview widget should be updated to provide rich information about index

See Also

See also previewWidget()

[override virtual protected] int QColumnView::verticalOffset() const

[override virtual] QRect QColumnView::visualRect(const QModelIndex &index) const

[override virtual protected] QRegion QColumnView::visualRegionForSelection(const QItemSelection &selection) const

Vous avez aimé ce tutoriel ? Alors partagez-le en cliquant sur les boutons suivants : Viadeo Twitter Facebook Share on Google+