Home · All Classes · Modules

QListView Class Reference
[QtGui module]

The QListView class provides a list or icon view onto a model. More...

Inherits QAbstractItemView.

Inherited by QHelpIndexWidget, QListWidget and QUndoView.

Types

Methods

Qt Signals


Detailed Description

The QListView class provides a list or icon view onto a model.

A QListView presents items stored in a model, either as a simple non-hierarchical list, or as a collection of icons. This class is used to provide lists and icon views that were previously provided by the QListBox and QIconView classes, but using the more flexible approach provided by Qt's model/view architecture.

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

This view does not display horizontal or vertical headers; to display a list of items with a horizontal header, use QTreeView instead.

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

Items in a list view can be displayed using one of two view modes: In ListMode, the items are displayed in the form of a simple list; in IconMode, the list view takes the form of an icon view in which the items are displayed with icons like files in a file manager. By default, the list view is in ListMode. To change the view mode, use the setViewMode() function, and to determine the current view mode, use viewMode().

Items in these views are laid out in the direction specified by the flow() of the list view. The items may be fixed in place, or allowed to move, depending on the view's movement() state.

If the items in the model cannot be completely laid out in the direction of flow, they can be wrapped at the boundary of the view widget; this depends on isWrapping(). This property is useful when the items are being represented by an icon view.

The resizeMode() and layoutMode() govern how and when the items are laid out. Items are spaced according to their spacing(), and can exist within a notional grid of size specified by gridSize(). The items can be rendered as large or small icons depending on their iconSize().

Screenshot of a Windows XP style list view Screenshot of a Macintosh style table view Screenshot of a Plastique style table view
A Windows XP style list view. A Macintosh style list view. A Plastique style list view.

Improving Performance

It is possible to give the view hints about the data it is handling in order to improve its performance when displaying large numbers of items. One approach that can be taken for views that are intended to display items with equal sizes is to set the uniformItemSizes property to true.


Type Documentation

QListView.Flow

Constant Value Description
QListView.LeftToRight 0 The items are laid out in the view from the left to the right.
QListView.TopToBottom 1 The items are laid out in the view from the top to the bottom.

QListView.LayoutMode

Constant Value Description
QListView.SinglePass 0 The items are laid out all at once.
QListView.Batched 1 The items are laid out in batches of batchSize items.

See also batchSize.

QListView.Movement

Constant Value Description
QListView.Static 0 The items cannot be moved by the user.
QListView.Free 1 The items can be moved freely by the user.
QListView.Snap 2 The items snap to the specified grid when moved; see setGridSize().

QListView.ResizeMode

Constant Value Description
QListView.Fixed 0 The items will only be laid out the first time the view is shown.
QListView.Adjust 1 The items will be laid out every time the view is resized.

QListView.ViewMode

Constant Value Description
QListView.ListMode 0 The items are laid out using TopToBottom flow, with Small size and Static movement
QListView.IconMode 1 The items are laid out using LeftToRight flow, with Large size and Free movement

Method Documentation

QListView.__init__ (self, QWidget parent = None)

The parent argument, if not None, causes self to be owned by Qt instead of PyQt.

Creates a new QListView with the given parent to view a model. Use setModel() to set the model.

int QListView.batchSize (self)

QListView.clearPropertyFlags (self)

Clears the QListView-specific property flags. See viewMode.

Properties inherited from QAbstractItemView are not covered by the property flags. Specifically, dragEnabled and acceptsDrops are computed by QListView when calling setMovement() or setViewMode().

QListView.currentChanged (self, QModelIndex current, QModelIndex previous)

Reimplemented from QAbstractItemView.currentChanged().

QListView.dataChanged (self, QModelIndex topLeft, QModelIndex bottomRight)

Reimplemented from QAbstractItemView.dataChanged().

QListView.dragLeaveEvent (self, QDragLeaveEvent e)

Reimplemented from QWidget.dragLeaveEvent().

QListView.dragMoveEvent (self, QDragMoveEvent e)

Reimplemented from QWidget.dragMoveEvent().

QListView.dropEvent (self, QDropEvent e)

Reimplemented from QWidget.dropEvent().

bool QListView.event (self, QEvent e)

Reimplemented from QObject.event().

Flow QListView.flow (self)

QSize QListView.gridSize (self)

int QListView.horizontalOffset (self)

Reimplemented from QAbstractItemView.horizontalOffset().

QModelIndex QListView.indexAt (self, QPoint p)

Reimplemented from QAbstractItemView.indexAt().

bool QListView.isIndexHidden (self, QModelIndex index)

Reimplemented from QAbstractItemView.isIndexHidden().

bool QListView.isRowHidden (self, int row)

Returns true if the row is hidden; otherwise returns false.

bool QListView.isSelectionRectVisible (self)

bool QListView.isWrapping (self)

LayoutMode QListView.layoutMode (self)

int QListView.modelColumn (self)

QListView.mouseMoveEvent (self, QMouseEvent e)

Reimplemented from QWidget.mouseMoveEvent().

QListView.mouseReleaseEvent (self, QMouseEvent e)

Reimplemented from QWidget.mouseReleaseEvent().

QModelIndex QListView.moveCursor (self, QAbstractItemView.CursorAction cursorAction, Qt.KeyboardModifiers modifiers)

Reimplemented from QAbstractItemView.moveCursor().

Movement QListView.movement (self)

QListView.paintEvent (self, QPaintEvent e)

Reimplemented from QWidget.paintEvent().

QRect QListView.rectForIndex (self, QModelIndex index)

Returns the rectangle of the item at position index in the model. The rectangle is in contents coordinates.

See also visualRect().

QListView.reset (self)

QListView.resizeEvent (self, QResizeEvent e)

Reimplemented from QWidget.resizeEvent().

ResizeMode QListView.resizeMode (self)

QListView.rowsAboutToBeRemoved (self, QModelIndex parent, int start, int end)

Reimplemented from QAbstractItemView.rowsAboutToBeRemoved().

QListView.rowsInserted (self, QModelIndex parent, int start, int end)

Reimplemented from QAbstractItemView.rowsInserted().

QListView.scrollContentsBy (self, int dx, int dy)

QListView.scrollTo (self, QModelIndex index, QAbstractItemView.ScrollHint hint = QAbstractItemView.EnsureVisible)

Reimplemented from QAbstractItemView.scrollTo().

list-of-QModelIndex QListView.selectedIndexes (self)

Reimplemented from QAbstractItemView.selectedIndexes().

QListView.selectionChanged (self, QItemSelection selected, QItemSelection deselected)

Reimplemented from QAbstractItemView.selectionChanged().

QListView.setBatchSize (self, int batchSize)

QListView.setFlow (self, Flow flow)

QListView.setGridSize (self, QSize size)

QListView.setLayoutMode (self, LayoutMode mode)

QListView.setModelColumn (self, int column)

QListView.setMovement (self, Movement movement)

QListView.setPositionForIndex (self, QPoint position, QModelIndex index)

Sets the contents position of the item at index in the model to the given position. If the list view's movement mode is Static or its view mode is ListView, this function will have no effect.

This function was introduced in Qt 4.1.

QListView.setResizeMode (self, ResizeMode mode)

QListView.setRootIndex (self, QModelIndex index)

QListView.setRowHidden (self, int row, bool hide)

If hide is true, the given row will be hidden; otherwise the row will be shown.

See also isRowHidden().

QListView.setSelection (self, QRect rect, QItemSelectionModel.SelectionFlags command)

Reimplemented from QAbstractItemView.setSelection().

QListView.setSelectionRectVisible (self, bool show)

QListView.setSpacing (self, int space)

QListView.setUniformItemSizes (self, bool enable)

QListView.setViewMode (self, ViewMode mode)

QListView.setWordWrap (self, bool on)

QListView.setWrapping (self, bool enable)

int QListView.spacing (self)

QListView.startDrag (self, Qt.DropActions supportedActions)

Reimplemented from QAbstractItemView.startDrag().

QListView.timerEvent (self, QTimerEvent e)

Reimplemented from QObject.timerEvent().

bool QListView.uniformItemSizes (self)

QListView.updateGeometries (self)

Reimplemented from QAbstractItemView.updateGeometries().

int QListView.verticalOffset (self)

Reimplemented from QAbstractItemView.verticalOffset().

ViewMode QListView.viewMode (self)

QStyleOptionViewItem QListView.viewOptions (self)

Reimplemented from QAbstractItemView.viewOptions().

QRect QListView.visualRect (self, QModelIndex index)

Reimplemented from QAbstractItemView.visualRect().

QRegion QListView.visualRegionForSelection (self, QItemSelection selection)

Reimplemented from QAbstractItemView.visualRegionForSelection().

Since 4.7, the returned region only contains rectangles intersecting (or included in) the viewport.

bool QListView.wordWrap (self)


Qt Signal Documentation

void indexesMoved (const QModelIndexList&)

This is the default overload of this signal.

This signal is emitted when the specified indexes are moved in the view.

This function was introduced in Qt 4.2.


PyQt 4.11.4 for X11Copyright © Riverbank Computing Ltd and The Qt Company 2015Qt 4.8.7