Qt logo

QListView Class Reference


The QListView class implements a list/tree view. More...

#include <qlistview.h>

Inherits QScrollView.

List of all member functions.

Public Members

Public Slots

Signals

Protected Members

Protected Slots


Detailed Description

The QListView class implements a list/tree view.

It can display and control a hierarchy of multi-column items, and provides the ability to add new items at run-time, let the user select one or many items, sort the list in increasing or decreasing order by any column, and so on.

The simplest mode of usage is to create a QListView, add some column headers using setColumn(), create one or more QListViewItem objects with the QListView as parent, set up the list view's geometry(), and show() it.

The main setup functions are

There are also several functions for mapping between items and coordinates. itemAt() returns the item at a position on-screen, itemRect() returns the rectangle an item occupies on the screen and itemPos() returns the position of any item (not on-screen, in the list view). firstChild() returns the item at the top of the view (not necessarily on-screen) so you can iterate over the items using either QListViewItem::itemBelow() or a combination of QListViewItem::firstChild() and QListViewItem::nextSibling().

Naturally, QListView provides a clear() function, as well as an explicit insertItem() for when QListViewItem's default insertion won't do.

Since QListView offers multiple selection it has to display keyboard focus and selection state separately. Therefore there are functions both to set the selection state of an item, setSelected(), and to select which item displays keyboard focus, setCurrentItem().

QListView emits two groups of signals: One group signals changes in selection/focus state and one signals selection. The first group consists of selectionChanged(), applicable to all list views, and selectionChanged( QListViewItem * ), applicable only to single-selection list view, and currentChanged( QListViewItem * ). The second group consists of doubleClicked( QListViewItem * ), returnPressed( QListViewItem * ) and rightButtonClicked( QListViewItem *, const QPoint&, int ).

In Motif style, QListView deviates fairly strongly from the look and feel of the Motif hierarchical tree view. This is done mostly to provide a usable keyboard interface and to make the list view look better with a white background.

Example List View
Windows style, flat (from QFileDialog)

Example Tree View
Motif style, hierarchial (from the dirview/dirview.cpp example).

Examples: dirview/dirview.cpp


Member Function Documentation

QListView::QListView ( QWidget * parent = 0, const char * name = 0 )

Creates a new empty list view, with parent as a parent and name as object name.

QListView::~QListView ()

Deletes the list view and all items in it, and frees all allocated resources.

int QListView::addColumn ( const char * label, int width = -1 ) [virtual]

Adds a new column at the right end of the widget, with the header label, and returns the index of the column.

If width is negative, the new column will have WidthMode Maximum, otherwise it will be Manual at width pixels wide.

See also: setColumnText(), setColumnWidth() and setColumnWidthMode().

bool QListView::allColumnsShowFocus () const

Returns TRUE if the items in this list view indicate focus and selection state using all of their columns, else FALSE.

See also: setAllColumnsShowFocus().

int QListView::childCount () const

Returns the current number of parentless QListViewItem objects in this QListView, like QListViewItem::childCount() returns the number of child items for a QListViewItem.

See also: QListViewItem::childCount().

void QListView::clear () [virtual]

Remove and delete all the items in this list view, and trigger an update.

See also: triggerUpdate().

int QListView::columnAlignment ( int column ) const

Returns the alignment of logical column column.

const char* QListView::columnText ( int c ) const

Returns the text for the heading of column c.

int QListView::columnWidth ( int c ) const

Returns the width of the heading of column c.

QListView::WidthMode QListView::columnWidthMode( int c ) const

Returns the currently set WidthMode for column c.

See also: setColumnWidthMode().

void QListView::currentChanged ( QListViewItem * ) [signal]

This signal is emitted whenever the current item has changed (normally after the screen update). The current item is the item responsible for indicating keyboard focus.

The argument is the newly current item.

See also: setCurrentItem() and currentItem().

QListViewItem * QListView::currentItem () const

Returns a pointer to the currently highlighted item, or 0 if there isn't any.

See also: setCurrentItem().

void QListView::doubleClicked ( QListViewItem * ) [signal]

This signal is emitted whenever an item is double-clicked. It's emitted on the second button press, not the second button release.

void QListView::drawContentsOffset ( QPainter * p, int ox, int oy, int cx, int cy, int cw, int ch ) [virtual protected]

Calls QListViewItem::paintCell() and/or QListViewItem::paintBranches() for all list view items that require repainting. See the documentation for those functions for details.

Reimplemented from QScrollView.

void QListView::ensureItemVisible ( const QListViewItem * i )

Ensures that i is makde visible, scrolling the list view vertically as required.

See also: itemRect() and QSCrollView::ensureVisible().

bool QListView::eventFilter ( QObject * o, QEvent * e ) [virtual]

Redirects events for the viewport to mousePressEvent(), keyPressEvent() and friends.

Reimplemented from QObject.

QListViewItem * QListView::firstChild () const

Returns the first item in this QListView. You can use its firstChild() and nextSibling() functions to traverse the entire tree of items.

Returns 0 if there is no first item.

See also: itemAt(), itemBelow() and itemAbove().

void QListView::focusInEvent ( QFocusEvent * ) [virtual protected]

Handles focus in events on behalf of viewport(). Since viewport() is this widget's focus proxy by default, you can think of this function as handling this widget's focus in events.

See also: setFocusPolicy(), setFocusProxy() and focusOutEvent().

Reimplemented from QWidget.

void QListView::focusOutEvent ( QFocusEvent * ) [virtual protected]

Handles focus out events on behalf of viewport(). Since viewport() is this widget's focus proxy by default, you can think of this function as handling this widget's focus in events.

See also: setFocusPolicy(), setFocusProxy() and focusInEvent().

Reimplemented from QWidget.

QHeader * QListView::header () const

Returns a pointer to the QHeader object that manages this list view's columns. Please don't modify the header behind the list view's back.

See also: setHeader().

void QListView::insertItem ( QListViewItem * i ) [virtual]

Inserts a top-level QListViewItem into this list view. You generally do not need to call this; the QListViewItem constructor does it for you.

bool QListView::isMultiSelection () const

Returns TRUE if this list view is in multi-selection mode and FALSE if it is in single-selection mode.

See also: setMultiSelection().

bool QListView::isOpen ( QListViewItem * item ) const

Identical to item->isOpen(). Provided for completeness.

See also: setOpen().

bool QListView::isSelected ( QListViewItem * i ) const

Returns i->isSelected().

Provided only because QListView provides setSelected() and trolls are neat creatures and like neat, orthogonal interfaces.

QListViewItem * QListView::itemAt ( const QPoint & screenPos ) const

Returns a pointer to the QListViewItem at screenPos. Note that screenPos is in the coordinate system of viewport(), not in the listview's own, much larger, coordinate system.

itemAt() returns 0 if there is no such item.

See also: itemPos() and itemRect().

int QListView::itemMargin () const

Returns the advisory item margin which list items may use.

See also: QListViewItem::paintCell() and setItemMargin().

int QListView::itemPos ( const QListViewItem * item )

Returns the y coordinate of item in the list view's coordinate system. This functions is normally much slower than itemAt(), but it works for all items, while itemAt() normally works only for items on the screen.

This is a thin wrapper around QListViewItem::itemPos().

See also: itemAt() and itemRect().

QRect QListView::itemRect ( const QListViewItem * i ) const

Returns the rectangle on the screen i occupies in viewport()'s coordinates, or an invalid rectangle if i is a null pointer or is not currently visible.

The rectangle returned does not include any children of the rectangle (ie. it uses QListViewItem::height() rather than QListViewItem::totalHeight()). If you want the rectangle including children, you can use something like this code:

    QRect r( listView->itemRect( item ) );
    r.setHeight( (QCOORD)(QMIN( item->totalHeight(),
                                listView->viewport->height() - r.y() ) ) )

Note the way it avoids too-high rectangles. totalHeight() can be much larger than the window system's coordinate system allows.

itemRect() is comparatively slow. It's best to call it only for items that are probably on-screen.

void QListView::keyPressEvent ( QKeyEvent * e ) [virtual protected]

Handles key press events on behalf of viewport(). Since viewport() is this widget's focus proxy by default, you can think of this function as handling this widget's keyboard input.

Reimplemented from QWidget.

void QListView::mouseDoubleClickEvent ( QMouseEvent * e ) [virtual protected]

Processes mouse double-click events on behalf of the viewed widget; eventFilter() calls this function. Note that the coordinates in e is in the coordinate system of viewport().

Reimplemented from QWidget.

void QListView::mouseMoveEvent ( QMouseEvent * e ) [virtual protected]

Processes mouse move events on behalf of the viewed widget; eventFilter() calls this function. Note that the coordinates in e is in the coordinate system of viewport().

Reimplemented from QWidget.

void QListView::mousePressEvent ( QMouseEvent * e ) [virtual protected]

Processes mouse move events on behalf of the viewed widget; eventFilter() calls this function. Note that the coordinates in e is in the coordinate system of viewport().

Reimplemented from QWidget.

void QListView::mouseReleaseEvent ( QMouseEvent * e ) [virtual protected]

Processes mouse move events on behalf of the viewed widget; eventFilter() calls this function. Note that the coordinates in e is in the coordinate system of viewport().

Reimplemented from QWidget.

void QListView::paintEmptyArea ( QPainter * p, const QRect & rect ) [virtual protected]

Paints rect so that it looks like empty background using painter p. rect is is widget coordinates, ready to be fed to p.

The default function fills rect with colorGroup().base().

void QListView::repaintItem ( const QListViewItem * item ) const

Repaints item on the screen, if item is currently visible. Takes care to avoid multiple repaints.

void QListView::resizeEvent ( QResizeEvent * e ) [virtual protected]

Ensures that the header is correctly sized and positioned.

Reimplemented from QWidget.

void QListView::returnPressed ( QListViewItem * ) [signal]

This signal is emitted when enter or return is pressed. The argument is currentItem().

void QListView::rightButtonClicked ( QListViewItem *, const QPoint &, int ) [signal]

This signal is emitted when the right button is clicked (ie. when it's released). The arguments are the relevant QListViewItem (may be 0), the point in global coordinates and the relevant column.

void QListView::rightButtonPressed ( QListViewItem *, const QPoint &, int ) [signal]

This signal is emitted when the right button is pressed. Then arguments are the relevant QListViewItem (may be 0), the point in global coordinates and the relevant column.

bool QListView::rootIsDecorated () const

Returns TRUE if root items can be opened and closed by the user, FALSE if not.

void QListView::selectionChanged () [signal]

This signal is emitted whenever the set of selected items has changed (normally before the screen update). It is available both in single-selection and multi-selection mode, but is most meaningful in multi-selection mode.

See also: setSelected() and QListViewItem::setSelected().

void QListView::selectionChanged ( QListViewItem * ) [signal]

This signal is emitted whenever the selected item has changed in single-selection mode (normally after the screen update). The argument is the newly selected item.

There is another signal which is more useful in multi-selection mode.

See also: setSelected(), QListViewItem::setSelected() and currentChanged().

void QListView::setAllColumnsShowFocus ( bool enable ) [virtual]

Sets this list view to assume that the items show focus and selection state using all of their columns if enable is TRUE, or that they show it just using column 0 if enable is FALSE.

The default is FALSE.

Setting this to TRUE if it isn't necessary can cause noticeable flicker.

See also: allColumnsShowFocus().

void QListView::setColumnAlignment ( int column, int align ) [virtual]

Configures the logical columne column to have alignment align. The alignment is ultimately passed to QListViewItem::paintCell() for each item in the view.

The display is automatically scheduled to be updated.

void QListView::setColumnText ( int column, const char * label ) [virtual]

Sets the heading text of column column to label. The leftmost colum is number 0.

void QListView::setColumnWidth ( int column, int w ) [virtual]

Sets the width of column column to w pixels. Note that if the column has a WidthMode other than Manual, this width setting may be subsequently overridden. The leftmost colum is number 0.

void QListView::setColumnWidthMode ( int c, WidthMode mode ) [virtual]

Sets column to behave according to mode, which is one of:

See also: QListViewItem::width().

Bugs and limitations:

void QListView::setCurrentItem ( QListViewItem * i ) [virtual]

Sets i to be the current highlighted item and repaints appropriately. This highlighted item is used for keyboard navigation and focus indication; it doesn't mean anything else.

See also: currentItem().

void QListView::setFont ( const QFont & f ) [virtual]

Reimplemented to let the list view items update themselves. f is the new font.

Reimplemented from QWidget.

void QListView::setItemMargin ( int m ) [virtual]

Sets the advisory item margin which list items may use to m.

The item margin defaults to one pixels and is the margin between the item's edges and the area where it draws its contents. QListViewItem::paintFocus() draws in the margin.

See also: QListViewItem::paintCell().

void QListView::setMultiSelection ( bool enable ) [virtual]

Sets the list view to multi-selection mode if enable is TRUE, and to single-selection mode if enable is FALSE.

See also: isMultiSelection().

void QListView::setOpen ( QListViewItem * item, bool open ) [virtual]

Sets item to be open if open is TRUE and \item is expandable, and to be closed if open is FALSE. Repaints accordingly.

Does nothing if item is not expandable.

See also: QListViewItem::setOpen() and QListViewItem::setExpandable().

void QListView::setPalette ( const QPalette & p ) [virtual]

Reimplemented to let the list view items update themselves. p is the new palette.

Reimplemented from QWidget.

void QListView::setRootIsDecorated ( bool enable ) [virtual]

Sets this list view to show open/close signs on root items if enable is TRUE, and to not show such signs if enable is FALSE.

Open/close signs is a little + or - in windows style, an arrow in Motif style.

void QListView::setSelected ( QListViewItem * item, bool selected ) [virtual]

Sets item to be selected if selected is TRUE, and to be not selected if selected is FALSE.

If the list view is in single-selection mode and selected is TRUE, the present selected item is unselected and made current. Unlike QListViewItem::setSelected(), this function updates the list view as necessary and emits the selectionChanged() signals.

See also: isSelected(), setMultiSelection(), isMultiSelection() and setCurrentItem().

void QListView::setSorting ( int column, bool ascending = TRUE ) [virtual]

Set the list view to be sorted by column and to be sorted in ascending order if ascending is TRUE or descending order if it is FALSE.

If column is -1, sorting is disabled.

void QListView::setStyle ( GUIStyle s ) [virtual]

Reimplemented to let the list view items update themselves. s is the new GUI style.

Reimplemented from QWidget.

void QListView::setTreeStepSize ( int l ) [virtual]

Sets the the number of pixels a child is offset from its parent, in a tree view to l. The default is 20.

See also: treeStepSize().

void QListView::show () [virtual]

Reimplemented to set the correct background mode and viewed area size.

Reimplemented from QWidget.

QSize QListView::sizeHint () const [virtual]

Returns a size suitable for this scroll view. This is as wide as mostly upon QHeader's sizeHint() recommends and tall enough for perhaps 10 items.

Reimplemented from QWidget.

int QListView::treeStepSize () const

Returns the number of pixels a child is offset from its parent. This number has meaning only for tree views. The default is 20.

See also: setTreeStepSize().

void QListView::triggerUpdate () [slot]

Triggers a size, geometry and contentual update during the next iteration of the event loop. Cleverly makes sure that there'll be just one update, to avoid flicker.

void QListView::updateContents () [protected slot]

Updates the sizes of the viewport, header, scrollbars and so on. Don't call this directly; call triggerUpdates() instead.


Search the documentation, FAQ, qt-interest archive and more (uses www.troll.no):


This file is part of the Qt toolkit, copyright © 1995-98 Troll Tech, all rights reserved.

It was generated from the following files:


Copyright © 1998 Troll TechTrademarks
Qt version 1.42