Home | All Classes | Main Classes | Annotated | Grouped Classes | Functions

QListView Class Reference

The QListView class provides a default model/view implementation of a list, and of an icon view. More...

#include <QListView>

Inherits QAbstractItemView.

List of all members.

Public Types

Writable Properties

Read-Only Properties

Public Functions

Public Slots

Signals

Static Public Members

Protected Functions

Protected Slots


Detailed Description

The QListView class provides a default model/view implementation of a list, and of an icon view.

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.

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 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().

See also Model/View Programming.


Member Type Documentation

enum QListView::Flow

QListView::LeftToRightThe items are laid out in the view from the left to the right.
QListView::TopToBottomThe items are laid out in the view from the top to the bottom.

enum QListView::IconSize

QListView::AutomaticThe icon size is Small if isWrapping is true; otherwise the icon size is Large.
QListView::SmallThe icons in the items are rendered as small icons.
QListView::LargeThe icons in the items are rendered as large icons.

enum QListView::LayoutMode

QListView::SinglePassThe items are laid out all at once.
QListView::BatchedThe items are laid out in batches of 100 items.

enum QListView::Movement

QListView::StaticThe items cannot be moved by the user.
QListView::FreeThe items can be moved freely by the user.
QListView::SnapThe items snap to the specified grid when moved; see setGridSize().

enum QListView::ResizeMode

QListView::FixedThe items will only be laid out the first time the view is shown.
QListView::AdjustThe items will be laid out every time the view is resized.

enum QListView::ViewMode

QListView::ListMode 
QListView::IconMode 

Property Documentation

flow : Flow

This property holds which direction the items layout should flow.

If this property is LeftToRight, the items will be laid out left to right. If the isWrapping property is true, the layout will wrap when it reaches the right side of the visible area. If this property is TopToBottom, the items will be laid out from the top of the visible area, wrapping when it reaches the bottom.

Setting this property when the view is visible will cause the items to be laid out again.

Access functions:

gridSize : QSize

This property holds the size of the layout grid.

This property is the size of the grid in which the items are laid out. The default is an empty size which means that there is no grid and the layout is not done in a grid. Setting this property to a non-empty size switches on the grid layout. (When a grid layout is in force the spacing property is ignored.)

Setting this property when the view is visible will cause the items to be laid out again.

Access functions:

iconSize : IconSize

This property holds whether the items should be rendered as large or small items.

If this property is Small (the default), the default delegate will render the items as small items with the decoration to the left and the text to the right. If this property is Large, the default delegate will render the items as large items with the decoration at the top and the text at the bottom. If set to Automatic, the view will use the Small mode if the isWrapping property is true.

Setting this property when the view is visible will cause the items to be laid out again.

Access functions:

isWrapping : bool

This property holds whether the items layout should wrap.

This property holds whether the layout should wrap when there is no more space in the visible area. The point at which the layout wraps depends on the flow property.

Setting this property when the view is visible will cause the items to be laid out again.

Access functions:

layoutMode : LayoutMode

This property holds whether the layout of items should happen immediately or be delayed.

This property holds the layout mode for the items. When the mode is Instant (the default), the items are laid out all in one go. When the mode is Batched, the items are laid out in batches of 100 items, while processing events. This makes it possible to instantly view and interact with the visible items while the rest are being laid out.

Access functions:

movement : Movement

This property holds whether the items can be moved freely, are snapped to a grid, or cannot be moved at all.

This property determines how the user can move the items in the view. Static means that the items can't be moved the user. Free means that the user can drag and drop the items to any position in the view. Snap means that the user can drag and drop the items, but only to the positions in a notional grid signified by the gridSize property.

Setting this property when the view is visible will cause the items to be laid out again.

Access functions:

See also gridSize.

resizeMode : ResizeMode

This property holds whether the items are laid out again when the view is resized.

If this property is Adjust, the items will be laid out again when the view is resized. If the value is Fixed, the items will not be laid out when the view is resized.

Access functions:

spacing : int

This property holds the space between items in the layout.

This property is the size of the empty space between items in the layout. This property is ignored if the items are laid out in a grid.

Setting this property when the view is visible will cause the items to be laid out again.

Access functions:

viewMode : ViewMode

This property holds the view mode of the QListView.

This property will change the other unset properties to conform with the set view mode. Properties that have already been set will not be changed, unless clearPropertyFlags() has been called.

Access functions:


Member Function Documentation

QListView::QListView ( QWidget * parent = 0 )

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

QListView::~QListView ()

Destroys the view.

void QListView::clearPropertyFlags ()

Clears the property flags. See viewMode.

QRect QListView::itemRect ( const QModelIndex & index ) const   [protected]

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


Copyright © 2004 Trolltech. Trademarks
Qt 4.0.0-tp1