
We bake cookies in your browser for a better experience. Using this site means that you consent.Read More
TheQStyledItemDelegate class provides display and editing facilities for data items from a model.More...
| Header: | #include <QStyledItemDelegate> |
| Since: | Qt 4.4 |
| Inherits: | QAbstractItemDelegate |
| QStyledItemDelegate(QObject * parent = 0) | |
| ~QStyledItemDelegate() | |
| virtual QString | displayText(const QVariant & value, const QLocale & locale) const |
| QItemEditorFactory * | itemEditorFactory() const |
| void | setItemEditorFactory(QItemEditorFactory * factory) |
| virtual QWidget * | createEditor(QWidget * parent, const QStyleOptionViewItem & option, const QModelIndex & index) const |
| virtual void | paint(QPainter * painter, const QStyleOptionViewItem & option, const QModelIndex & index) const |
| virtual void | setEditorData(QWidget * editor, const QModelIndex & index) const |
| virtual void | setModelData(QWidget * editor, QAbstractItemModel * model, const QModelIndex & index) const |
| virtual QSize | sizeHint(const QStyleOptionViewItem & option, const QModelIndex & index) const |
| virtual void | updateEditorGeometry(QWidget * editor, const QStyleOptionViewItem & option, const QModelIndex & index) const |
| virtual void | initStyleOption(QStyleOptionViewItem * option, const QModelIndex & index) const |
| virtual bool | editorEvent(QEvent * event, QAbstractItemModel * model, const QStyleOptionViewItem & option, const QModelIndex & index) |
| virtual bool | eventFilter(QObject * editor, QEvent * event) |
TheQStyledItemDelegate class provides display and editing facilities for data items from a model.
When displaying data from models in Qt item views, e.g., aQTableView, the individual items are drawn by a delegate. Also, when an item is edited, it provides an editor widget, which is placed on top of the item view while editing takes place.QStyledItemDelegate is the default delegate for all Qt item views, and is installed upon them when they are created.
TheQStyledItemDelegate class is one of theModel/View Classes and is part of Qt'smodel/view framework. The delegate allows the display and editing of items to be developed independently from the model and view.
The data of items in models are assigned anItemDataRole; each item can store aQVariant for each role.QStyledItemDelegate implements display and editing for the most common datatypes expected by users, including booleans, integers, and strings.
The data will be drawn differently depending on which role they have in the model. The following table describes the roles and the data types the delegate can handle for each of them. It is often sufficient to ensure that the model returns appropriate data for each of the roles to determine the appearance of items in views.
| Role | Accepted Types |
|---|---|
| Qt::BackgroundRole | QBrush |
| Qt::BackgroundColorRole | QColor (obsolete; useQt::BackgroundRole instead) |
| Qt::CheckStateRole | Qt::CheckState |
| Qt::DecorationRole | QIcon,QPixmap,QImage andQColor |
| Qt::DisplayRole | QString and types with a string representation |
| Qt::EditRole | SeeQItemEditorFactory for details |
| Qt::FontRole | QFont |
| Qt::SizeHintRole | QSize |
| Qt::TextAlignmentRole | Qt::Alignment |
| Qt::ForegroundRole | QBrush |
| Qt::TextColorRole | QColor (obsolete; useQt::ForegroundRole instead) |
Editors are created with aQItemEditorFactory; a default static instance provided byQItemEditorFactory is installed on all item delegates. You can set a custom factory usingsetItemEditorFactory() or set a new default factory withQItemEditorFactory::setDefaultFactory(). It is the data stored in the item model with theEditRole that is edited. See theQItemEditorFactory class for a more high-level introduction to item editor factories. TheColor Editor Factory example shows how to create custom editors with a factory.
If the delegate does not support painting of the data types you need or you want to customize the drawing of items, you need to subclassQStyledItemDelegate, and reimplementpaint() and possiblysizeHint(). Thepaint() function is called individually for each item, and withsizeHint(), you can specify the hint for each of them.
When reimplementingpaint(), one would typically handle the datatypes one would like to draw and use the superclass implementation for other types.
The painting of check box indicators are performed by the current style. The style also specifies the size and the bounding rectangles in which to draw the data for the different data roles. The bounding rectangle of the item itself is also calculated by the style. When drawing already supported datatypes, it is therefore a good idea to ask the style for these bounding rectangles. TheQStyle class description describes this in more detail.
If you wish to change any of the bounding rectangles calculated by the style or the painting of check box indicators, you can subclassQStyle. Note, however, that the size of the items can also be affected by reimplementingsizeHint().
It is possible for a custom delegate to provide editors without the use of an editor item factory. In this case, the following virtual functions must be reimplemented:
TheStar Delegate example creates editors by reimplementing these methods.
Since Qt 4.4, there are two delegate classes:QItemDelegate andQStyledItemDelegate. However, the default delegate isQStyledItemDelegate. These two classes are independent alternatives to painting and providing editors for items in views. The difference between them is thatQStyledItemDelegate uses the current style to paint its items. We therefore recommend usingQStyledItemDelegate as the base class when implementing custom delegates or when working with Qt style sheets. The code required for either class should be equal unless the custom delegate needs to use the style for drawing.
If you wish to customize the painting of item views, you should implement a custom style. Please see theQStyle class documentation for details.
See alsoDelegate Classes,QItemDelegate,QAbstractItemDelegate,QStyle,Spin Box Delegate Example,Star Delegate Example, andColor Editor Factory Example.
Constructs an item delegate with the givenparent.
Destroys the item delegate.
[virtual]QWidget * QStyledItemDelegate::createEditor(QWidget * parent, constQStyleOptionViewItem & option, constQModelIndex & index) constReimplemented fromQAbstractItemDelegate::createEditor().
Returns the widget used to edit the item specified byindex for editing. Theparent widget and styleoption are used to control how the editor widget appears.
See alsoQAbstractItemDelegate::createEditor().
[virtual]QString QStyledItemDelegate::displayText(constQVariant & value, constQLocale & locale) constThis function returns the string that the delegate will use to display theQt::DisplayRole of the model inlocale.value is the value of theQt::DisplayRole provided by the model.
The default implementation uses theQLocale::toString to convertvalue into aQString.
This function is not called for empty model indices, i.e., indices for which the model returns an invalidQVariant.
See alsoQAbstractItemModel::data().
[virtual protected]bool QStyledItemDelegate::editorEvent(QEvent * event,QAbstractItemModel * model, constQStyleOptionViewItem & option, constQModelIndex & index)Reimplemented fromQAbstractItemDelegate::editorEvent().
[virtual protected]bool QStyledItemDelegate::eventFilter(QObject * editor,QEvent * event)Reimplemented fromQObject::eventFilter().
Returns true if the giveneditor is a validQWidget and the givenevent is handled; otherwise returns false. The following key press events are handled by default:
In the case ofTab,Backtab,Enter andReturn key press events, theeditor's data is comitted to the model and the editor is closed. If theevent is aTab key press the view will open an editor on the next item in the view. Likewise, if theevent is aBacktab key press the view will open an editor on theprevious item in the view.
If the event is aEsc key press event, theeditor is closedwithout committing its data.
See alsocommitData() andcloseEditor().
[virtual protected]void QStyledItemDelegate::initStyleOption(QStyleOptionViewItem * option, constQModelIndex & index) constInitializeoption with the values using the indexindex. This method is useful for subclasses when they need aQStyleOptionViewItem, but don't want to fill in all the information themselves. This function will check the version of theQStyleOptionViewItem and fill in the additional values for aQStyleOptionViewItemV2,QStyleOptionViewItemV3 andQStyleOptionViewItemV4.
See alsoQStyleOption::initFrom().
Returns the editor factory used by the item delegate. If no editor factory is set, the function will return null.
See alsosetItemEditorFactory().
[virtual]void QStyledItemDelegate::paint(QPainter * painter, constQStyleOptionViewItem & option, constQModelIndex & index) constReimplemented fromQAbstractItemDelegate::paint().
Renders the delegate using the givenpainter and styleoption for the item specified byindex.
This function paints the item using the view'sQStyle.
When reimplementing paint in a subclass. Use theinitStyleOption() to set up theoption in the same way as theQStyledItemDelegate; the option will always be an instance ofQStyleOptionViewItemV4. Please see its class description for information on its contents.
Whenever possible, use theoption while painting. Especially itsrect variable to decide where to draw and itsstate to determine if it is enabled or selected.
After painting, you should ensure that the painter is returned to its the state it was supplied in when this function was called. For example, it may be useful to callQPainter::save() before painting andQPainter::restore() afterwards.
See alsoQItemDelegate::paint(),QStyle::drawControl(), andQStyle::CE_ItemViewItem.
[virtual]void QStyledItemDelegate::setEditorData(QWidget * editor, constQModelIndex & index) constReimplemented fromQAbstractItemDelegate::setEditorData().
Sets the data to be displayed and edited by theeditor from the data model item specified by the modelindex.
The default implementation stores the data in theeditor widget'suser property.
See alsoQMetaProperty::isUser().
Sets the editor factory to be used by the item delegate to be thefactory specified. If no editor factory is set, the item delegate will use the default editor factory.
See alsoitemEditorFactory().
[virtual]void QStyledItemDelegate::setModelData(QWidget * editor,QAbstractItemModel * model, constQModelIndex & index) constReimplemented fromQAbstractItemDelegate::setModelData().
Gets data from theeditor widget and stores it in the specifiedmodel at the itemindex.
The default implementation gets the value to be stored in the data model from theeditor widget'suser property.
See alsoQMetaProperty::isUser().
[virtual]QSize QStyledItemDelegate::sizeHint(constQStyleOptionViewItem & option, constQModelIndex & index) constReimplemented fromQAbstractItemDelegate::sizeHint().
Returns the size needed by the delegate to display the item specified byindex, taking into account the style information provided byoption.
This function uses the view'sQStyle to determine the size of the item.
See alsoQStyle::sizeFromContents() andQStyle::CT_ItemViewItem.
[virtual]void QStyledItemDelegate::updateEditorGeometry(QWidget * editor, constQStyleOptionViewItem & option, constQModelIndex & index) constReimplemented fromQAbstractItemDelegate::updateEditorGeometry().
Updates theeditor for the item specified byindex according to the styleoption given.
© 2016 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of theGNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.