Qt:Документация 4.3.2/qstandarditem

Материал из Wiki.crossplatform.ru

Перейти к: навигация, поиск
40px Внимание: Актуальная версия перевода документации находится здесь

__NOTOC__

Image:qt-logo.png

Главная · Все классы · Основные классы · Классы по группам · Модули · Функции

Image:trolltech-logo.png

Содержание

[править] QStandardItem Class Reference
[модуль QtGui ]

The QStandardItem class provides an item for use with the QStandardItemModel class. Далее...

 #include <QStandardItem>

Класс был добавлен в Qt 4.2.

[править] Открытые типы

[править] Открытые функции

[править] Защищенные функции

[править] Связанные не-члены

  • QDataStream & operator<< ( QDataStream & out, const QStandardItem & item )
  • QDataStream & operator>> ( QDataStream & in, QStandardItem & item )

[править] Подробное описание

The QStandardItem class provides an item for use with the QStandardItemModel class.

Items usually contain text, icons, or checkboxes.

Each item can have its own background brush which is set with the setBackground() function. The current background brush can be found with background(). The text label for each item can be rendered with its own font and brush. These are specified with the setFont() and setForeground() functions, and read with font() and foreground().

By default, items are enabled, editable, selectable, checkable, and can be used both as the source of a drag and drop operation and as a drop target. Each item's flags can be changed by calling setFlags(). Checkable items can be checked and unchecked with the setCheckState() function. The corresponding checkState() function indicates whether the item is currently checked.

You can store application-specific data in an item by calling setData().

Each item can have a two-dimensional table of child items. This makes it possible to build hierarchies of items. The typical hierarchy is the tree, in which case the child table is a table with a single column (a list).

The dimensions of the child table can be set with setRowCount() and setColumnCount(). Items can be positioned in the child table with setChild(). Get a pointer to a child item with child(). New rows and columns of children can also be inserted with insertRow() and insertColumn(), or appended with appendRow() and appendColumn(). When using the append and insert functions, the dimensions of the child table will grow as needed.

An existing row of children can be removed with removeRow() or takeRow(); correspondingly, a column can be removed with removeColumn() or takeColumn().

An item's children can be sorted by calling sortChildren().

[править] Subclassing

When subclassing QStandardItem to provide custom items, it is possible to define new types for them so that they can be distinguished from the base class. The type() function should be reimplemented to return a new type value equal to or greater than UserType.

Reimplement data() and setData() if you want to perform custom handling of data queries and/or control how an item's data is represented.

Reimplement clone() if you want QStandardItemModel to be able to create instances of your custom item class on demand (see QStandardItemModel::setItemPrototype()).

Reimplement read() and write() if you want to control how items are represented in their serialized form.

Reimplement operator<() if you want to control the semantics of item comparison. operator<() determines the sorted order when sorting items with sortChildren() or with QStandardItemModel::sort().

See also QStandardItemModel, Item View Convenience Classes, and Model/View Programming.


[править] Описание типов

[править]
enum QStandardItem::ItemType

This enum describes the types that are used to describe standard items.


Константа Значение Описание
QStandardItem::Type 0 The default type for standard items.
QStandardItem::UserType 1000 The minimum value for custom types. Values below UserType are reserved by Qt.

You can define new user types in QStandardItem subclasses to ensure that custom items are treated specially; for example, when items are sorted.

See also type().


[править] Описание функций-членов

[править]
QStandardItem::QStandardItem ()

Constructs an item.

[править]
QStandardItem::QStandardItem ( const QString & text )

Constructs an item with the given text.

[править]
QStandardItem::QStandardItem ( const QIcon & icon, const QString & text )

Constructs an item with the given icon and text.

[править]
QStandardItem::QStandardItem ( int rows, int columns = 1 )

Constructs an item with rows rows and columns columns of child items.

[править]
QStandardItem::QStandardItem ( const QStandardItem & other ) [protected]

Создаёт копию other. Note that model() is not copied.

This function is useful when reimplementing clone().

[править]
QStandardItem::~QStandardItem () [virtual]

Destructs the item. This causes the item's children to be destructed as well.

[править]
QString QStandardItem::accessibleDescription () const

Returns the item's accessible description.

The accessible description is used by assistive technologies (i.e. for users who cannot use conventional means of interaction).

See also setAccessibleDescription() and accessibleText().

[править]
QString QStandardItem::accessibleText () const

Returns the item's accessible text.

The accessible text is used by assistive technologies (i.e. for users who cannot use conventional means of interaction).

See also setAccessibleText() and accessibleDescription().

[править]
void QStandardItem::appendColumn ( const QList<QStandardItem *> & items )

Appends a column containing items. If necessary, the row count is increased to the size of items.

See also insertColumn().

[править]
void QStandardItem::appendRow ( const QList<QStandardItem *> & items )

Appends a row containing items. If necessary, the column count is increased to the size of items.

See also insertRow().

[править]
void QStandardItem::appendRow ( QStandardItem * item )

Эта перегруженная функция предоставлена для удобства.

Appends a row containing item.

When building a list or a tree that has only one column, this function provides a convenient way to append a single new item.

[править]
void QStandardItem::appendRows ( const QList<QStandardItem *> & items )

Appends rows containing items. The column count will not change.

See also insertRow().

[править]
QBrush QStandardItem::background () const

Returns the brush used to render the item's background.

See also foreground() and setBackground().

[править]
Qt::CheckState QStandardItem::checkState () const

Returns the checked state of the item.

See also setCheckState() and isCheckable().

[править]
QStandardItem * QStandardItem::child ( int row, int column = 0 ) const

Returns the child item at (row, column) if one has been set; otherwise returns 0.

See also setChild(), takeChild(), and parent().

[править]
QStandardItem * QStandardItem::clone () const [virtual]

Returns a copy of this item. The item's children are not copied.

When subclassing QStandardItem, you can reimplement this function to provide QStandardItemModel with a factory that it can use to create new items on demand.

See also QStandardItemModel::setItemPrototype() and operator=().

[править]
int QStandardItem::column () const

Returns the column where the item is located in its parent's child table, or -1 if the item has no parent.

See also row() and parent().

[править]
int QStandardItem::columnCount () const

Returns the number of child item columns that the item has.

See also setColumnCount() and rowCount().

[править]
QVariant QStandardItem::data ( int role = Qt::UserRole + 1 ) const [virtual]

Returns the item's data for the given role, or an invalid QVariant if there is no data for the role.

Смотрите также setData().

[править]
Qt::ItemFlags QStandardItem::flags () const

Returns the item flags for the item.

The item flags determine how the user can interact with the item.

By default, items are enabled, editable, selectable, checkable, and can be used both as the source of a drag and drop operation and as a drop target.

See also setFlags().

[править]
QFont QStandardItem::font () const

Returns the font used to render the item's text.

See also setFont().

[править]
QBrush QStandardItem::foreground () const

Returns the brush used to render the item's foreground (e.g. text).

See also setForeground() and background().

[править]
bool QStandardItem::hasChildren () const

Returns true if this item has any children; otherwise returns false.

See also rowCount(), columnCount(), and child().

[править]
QIcon QStandardItem::icon () const

Returns the item's icon.

See also setIcon() and iconSize.

[править]
QModelIndex QStandardItem::index () const

Returns the QModelIndex associated with this item.

When you need to invoke item functionality in a QModelIndex-based API (e.g. QAbstractItemView), you can call this function to obtain an index that corresponds to the item's location in the model.

If the item is not associated with a model, an invalid QModelIndex is returned.

See also model() and QStandardItemModel::itemFromIndex().

[править]
void QStandardItem::insertColumn ( int column, const QList<QStandardItem *> & items )

Inserts a column at column containing items. If necessary, the row count is increased to the size of items.

See also insertColumns() and insertRow().

[править]
void QStandardItem::insertColumns ( int column, int count )

Inserts count columns of child items at column column.

See also insertColumn() and insertRows().

[править]
void QStandardItem::insertRow ( int row, const QList<QStandardItem *> & items )

Inserts a row at row containing items. If necessary, the column count is increased to the size of items.

See also insertRows() and insertColumn().

[править]
void QStandardItem::insertRow ( int row, QStandardItem * item )

Эта перегруженная функция предоставлена для удобства.

Inserts a row at row containing item.

When building a list or a tree that has only one column, this function provides a convenient way to insert a single new item.

[править]
void QStandardItem::insertRows ( int row, const QList<QStandardItem *> & items )

Inserts items at row. The column count wont be changed.

See also insertRow() and insertColumn().

[править]
void QStandardItem::insertRows ( int row, int count )

Эта перегруженная функция предоставлена для удобства.

Inserts count rows of child items at row row.

See also insertRow() and insertColumns().

[править]
bool QStandardItem::isCheckable () const

Returns whether the item is user-checkable.

The default value is false.

See also setCheckable(), checkState(), and isTristate().

[править]
bool QStandardItem::isDragEnabled () const

Returns whether the item is drag enabled. An item that is drag enabled can be dragged by the user.

The default value is true.

Note that item dragging must be enabled in the view for dragging to work; see QAbstractItemView::dragEnabled.

See also setDragEnabled(), isDropEnabled(), and flags().

[править]
bool QStandardItem::isDropEnabled () const

Returns whether the item is drop enabled. When an item is drop enabled, it can be used as a drop target.

The default value is true.

See also setDropEnabled(), isDragEnabled(), and flags().

[править]
bool QStandardItem::isEditable () const

Returns whether the item can be edited by the user.

When an item is editable (and enabled), the user can edit the item by invoking one of the view's edit triggers; see QAbstractItemView::editTriggers.

The default value is true.

See also setEditable() and flags().

[править]
bool QStandardItem::isEnabled () const

Returns whether the item is enabled.

When an item is enabled, the user can interact with it. The possible types of interaction are specified by the other item flags, such as isEditable() and isSelectable().

The default value is true.

See also setEnabled() and flags().

[править]
bool QStandardItem::isSelectable () const

Returns whether the item is selectable by the user.

The default value is true.

See also setSelectable() and flags().

[править]
bool QStandardItem::isTristate () const

Returns whether the item is tristate; that is, if it's checkable with tree separate states.

The default value is false.

See also setTristate(), isCheckable(), and checkState().

[править]
QStandardItemModel * QStandardItem::model () const

Returns the QStandardItemModel that this item belongs to.

If the item is not a child of another item that belongs to the model, this function returns 0.

See also index().

[править]
QStandardItem * QStandardItem::parent () const

Returns the item's parent item, or 0 if the item has no parent.

See also child().

[править]
void QStandardItem::read ( QDataStream & in ) [virtual]

Reads the item from stream in. Only the data and flags of the item are read, not the child items.

See also write().

[править]
void QStandardItem::removeColumn ( int column )

Removes the given column. The items that were in the column are deleted.

See also takeColumn(), removeColumns(), and removeRow().

[править]
void QStandardItem::removeColumns ( int column, int count )

Removes count columns at column column. The items that were in those columns are deleted.

See also removeColumn() and removeRows().

[править]
void QStandardItem::removeRow ( int row )

Removes the given row. The items that were in the row are deleted.

See also takeRow(), removeRows(), and removeColumn().

[править]
void QStandardItem::removeRows ( int row, int count )

Removes count rows at row row. The items that were in those rows are deleted.

See also removeRow() and removeColumn().

[править]
int QStandardItem::row () const

Returns the row where the item is located in its parent's child table, or -1 if the item has no parent.

See also column() and parent().

[править]
int QStandardItem::rowCount () const

Returns the number of child item rows that the item has.

See also setRowCount() and columnCount().

[править]
void QStandardItem::setAccessibleDescription ( const QString & accessibleDescription )

Sets the item's accessible description to the string specified by accessibleDescription.

The accessible description is used by assistive technologies (i.e. for users who cannot use conventional means of interaction).

See also accessibleDescription() and setAccessibleText().

[править]
void QStandardItem::setAccessibleText ( const QString & accessibleText )

Sets the item's accessible text to the string specified by accessibleText.

The accessible text is used by assistive technologies (i.e. for users who cannot use conventional means of interaction).

See also accessibleText() and setAccessibleDescription().

[править]
void QStandardItem::setBackground ( const QBrush & brush )

Sets the item's background brush to the specified brush.

See also background() and setForeground().

[править]
void QStandardItem::setCheckState ( Qt::CheckState state )

Sets the check state of the item to be state.

See also checkState() and setCheckable().

[править]
void QStandardItem::setCheckable ( bool checkable )

Sets whether the item is user-checkable. If checkable is true, the item can be checked by the user; otherwise, the user cannot check the item.

The item delegate will render a checkable item with a check box next to the item's text.

See also isCheckable(), setCheckState(), and setTristate().

[править]
void QStandardItem::setChild ( int row, int column, QStandardItem * item )

Sets the child item at (row, column) to item. This item (the parent item) takes ownership of item. If necessary, the row count and column count are increased to fit the item.

See also child().

[править]
void QStandardItem::setChild ( int row, QStandardItem * item )

Эта перегруженная функция предоставлена для удобства.

Sets the child at row to item.

[править]
void QStandardItem::setColumnCount ( int columns )

Sets the number of child item columns to columns. If this is less than columnCount(), the data in the unwanted columns is discarded.

See also columnCount() and setRowCount().

[править]
void QStandardItem::setData ( const QVariant & value, int role = Qt::UserRole + 1 ) [virtual]

Sets the item's data for the given role to the specified value.

See also Qt::ItemDataRole, data(), and setFlags().

[править]
void QStandardItem::setDragEnabled ( bool dragEnabled )

Sets whether the item is drag enabled. If dragEnabled is true, the item can be dragged by the user; otherwise, the user cannot drag the item.

Note that you also need to ensure that item dragging is enabled in the view; see QAbstractItemView::dragEnabled.

See also isDragEnabled(), setDropEnabled(), and setFlags().

[править]
void QStandardItem::setDropEnabled ( bool dropEnabled )

Sets whether the item is drop enabled. If dropEnabled is true, the item can be used as a drop target; otherwise, it cannot.

Note that you also need to ensure that drops are enabled in the view; see QWidget::acceptDrops(); and that the model supports the desired drop actions; see QAbstractItemModel::supportedDropActions().

See also isDropEnabled(), setDragEnabled(), and setFlags().

[править]
void QStandardItem::setEditable ( bool editable )

Sets whether the item is editable. If editable is true, the item can be edited by the user; otherwise, the user cannot edit the item.

How the user can edit items in a view is determined by the view's edit triggers; see QAbstractItemView::editTriggers.

See also isEditable() and setFlags().

[править]
void QStandardItem::setEnabled ( bool enabled )

Sets whether the item is enabled. If enabled is true, the item is enabled, meaning that the user can interact with the item; if enabled is false, the user cannot interact with the item.

This flag takes presedence over the other item flags; e.g. if an item is not enabled, it cannot be selected by the user, even if the Qt::ItemIsSelectable flag has been set.

See also isEnabled(), Qt::ItemIsEnabled, and setFlags().

[править]
void QStandardItem::setFlags ( Qt::ItemFlags flags )

Sets the item flags for the item to flags.

The item flags determine how the user can interact with the item. This is often used to disable an item.

See also flags() and setData().

[править]
void QStandardItem::setFont ( const QFont & font )

Sets the font used to display the item's text to the given font.

See also font(), setText(), and setForeground().

[править]
void QStandardItem::setForeground ( const QBrush & brush )

Sets the brush used to display the item's foreground (e.g. text) to the given brush.

See also foreground(), setBackground(), and setFont().

[править]
void QStandardItem::setIcon ( const QIcon & icon )

Sets the item's icon to the icon specified.

See also icon().

[править]
void QStandardItem::setRowCount ( int rows )

Sets the number of child item rows to rows. If this is less than rowCount(), the data in the unwanted rows is discarded.

See also rowCount() and setColumnCount().

[править]
void QStandardItem::setSelectable ( bool selectable )

Sets whether the item is selectable. If selectable is true, the item can be selected by the user; otherwise, the user cannot select the item.

You can control the selection behavior and mode by manipulating their view properties; see QAbstractItemView::selectionMode and QAbstractItemView::selectionBehavior.

See also isSelectable() and setFlags().

[править]
void QStandardItem::setSizeHint ( const QSize & size )

Sets the size hint for the item to be size. If no size hint is set, the item delegate will compute the size hint based on the item data.

See also sizeHint().

[править]
void QStandardItem::setStatusTip ( const QString & statusTip )

Sets the item's status tip to the string specified by statusTip.

See also statusTip(), setToolTip(), and setWhatsThis().

[править]
void QStandardItem::setText ( const QString & text )

Sets the item's text to the text specified.

See also text(), setFont(), and setForeground().

[править]
void QStandardItem::setTextAlignment ( Qt::Alignment alignment )

Sets the text alignment for the item's text to the alignment specified.

See also textAlignment().

[править]
void QStandardItem::setToolTip ( const QString & toolTip )

Sets the item's tooltip to the string specified by toolTip.

See also toolTip(), setStatusTip(), and setWhatsThis().

[править]
void QStandardItem::setTristate ( bool tristate )

Sets whether the item is tristate. If tristate is true, the item is checkable with three separate states; otherwise, the item is checkable with two states. (Note that this also requires that the item is checkable; see isCheckable().)

See also isTristate(), setCheckable(), and setCheckState().

[править]
void QStandardItem::setWhatsThis ( const QString & whatsThis )

Sets the item's "What's This?" help to the string specified by whatsThis.

See also whatsThis(), setStatusTip(), and setToolTip().

[править]
QSize QStandardItem::sizeHint () const

Returns the size hint set for the item, or an invalid QSize if no size hint has been set.

If no size hint has been set, the item delegate will compute the size hint based on the item data.

See also setSizeHint().

[править]
void QStandardItem::sortChildren ( int column, Qt::SortOrder order = Qt::AscendingOrder )

Sorts the children of the item using the given order, by the values in the given column.

See also operator<().

[править]
QString QStandardItem::statusTip () const

Returns the item's status tip.

See also setStatusTip(), toolTip(), and whatsThis().

[править]
QStandardItem * QStandardItem::takeChild ( int row, int column = 0 )

Removes the child item at (row, column) without deleting it, and returns a pointer to the item. If there was no child at the given location, then this function returns 0.

Note that this function, unlike takeRow() and takeColumn(), does not affect the dimensions of the child table.

See also child(), takeRow(), and takeColumn().

[править]
QList<QStandardItem *> QStandardItem::takeColumn ( int column )

Removes column without deleting the column items, and returns a list of pointers to the removed items. For items in the column that have not been set, the corresponding pointers in the list will be 0.

See also removeColumn(), insertColumn(), and takeRow().

[править]
QList<QStandardItem *> QStandardItem::takeRow ( int row )

Removes row without deleting the row items, and returns a list of pointers to the removed items. For items in the row that have not been set, the corresponding pointers in the list will be 0.

See also removeRow(), insertRow(), and takeColumn().

[править]
QString QStandardItem::text () const

Returns the item's text. This is the text that's presented to the user in a view.

See also setText().

[править]
Qt::Alignment QStandardItem::textAlignment () const

Returns the text alignment for the item's text.

See also setTextAlignment().

[править]
QString QStandardItem::toolTip () const

Returns the item's tooltip.

See also setToolTip(), statusTip(), and whatsThis().

[править]
int QStandardItem::type () const [virtual]

Returns the type of this item. The type is used to distinguish custom items from the base class. When subclassing QStandardItem, you should reimplement this function and return a new value greater than or equal to UserType.

See also QStandardItem::Type.

[править]
QString QStandardItem::whatsThis () const

Returns the item's "What's This?" help.

See also setWhatsThis(), toolTip(), and statusTip().

[править]
void QStandardItem::write ( QDataStream & out ) const [virtual]

Writes the item to stream out. Only the data and flags of the item are written, not the child items.

See also read().

[править]
bool QStandardItem::operator< ( const QStandardItem & other ) const [virtual]

Returns true if this item is less than other; otherwise returns false.

The default implementation uses the data for the item's sort role (see QStandardItemModel::sortRole) to perform the comparison if the item belongs to a model; otherwise, the data for the item's Qt::DisplayRole ( text()) is used to perform the comparison.

sortChildren() and QStandardItemModel::sort() use this function when sorting items. If you want custom sorting, you can subclass QStandardItem and reimplement this function.

[править]
QStandardItem & QStandardItem::operator= ( const QStandardItem & other ) [protected]

Assigns other's data and flags to this item. Note that type() and model() are not copied.

This function is useful when reimplementing clone().


[править] Связанные не-члены

[править]
QDataStream & operator<< ( QDataStream & out, const QStandardItem & item )

Эта перегруженная функция предоставлена для удобства.

Writes the QStandardItem item to stream out.

This operator uses QStandardItem::write().

Эта функция была введена в Qt 4.2.

Смотрите также Формат операторов QDataStream.

[править]
QDataStream & operator>> ( QDataStream & in, QStandardItem & item )

Эта перегруженная функция предоставлена для удобства.

Reads a QStandardItem from stream in into item.

This operator uses QStandardItem::read().

Эта функция была введена в Qt 4.2.

Смотрите также Формат операторов QDataStream.



Copyright © 2007 Trolltech Trademarks
Qt 4.3.2