QItemDelegateclass provides display and editing facilities for data items from a model. 更多 …
def
decoration
(option, variant)
def
doCheck
(option, bounding, variant)
def
drawBackground
(painter, option, index)
def
hasClipping
()
def
itemEditorFactory
()
def
rect
(option, index, role)
def
setClipping
(clip)
def
setItemEditorFactory
(factory)
def
setOptions
(index, option)
def
textRectangle
(painter, rect, font, text)
def
drawCheck
(painter, option, rect, state)
def
drawDecoration
(painter, option, rect, pixmap)
def
drawDisplay
(painter, option, rect, text)
def
drawFocus
(painter, option, rect)
def
selectedPixmap
(pixmap, palette, enabled)
QItemDelegatecan be used to provide custom display features and editor widgets for item views based onQAbstractItemViewsubclasses. Using a delegate for this purpose allows the display and editing mechanisms to be customized and developed independently from the model and view.
QItemDelegateclass is one of the 模型/视图类 and is part of Qt’s 模型/视图框架 。注意QStyledItemDelegatehas taken over the job of drawing Qt’s item views. We recommend the use ofQStyledItemDelegatewhen creating new delegates.When displaying items from a custom model in a standard view, it is often sufficient to simply ensure that the model returns appropriate data for each of the
rolesthat determine the appearance of items in views. The default delegate used by Qt’s standard views uses this role information to display items in most of the common forms expected by users. However, it is sometimes necessary to have even more control over the appearance of items than the default delegate can provide.This class provides default implementations of the functions for painting item data in a view and editing data from item models. Default implementations of the
paint()andsizeHint()virtual functions, defined inQAbstractItemDelegate, are provided to ensure that the delegate implements the correct basic behavior expected by views. You can reimplement these functions in subclasses to customize the appearance of items.When editing data in an item view,
QItemDelegateprovides an editor widget, which is a widget that is placed on top of the view while editing takes place. Editors are created with aQItemEditorFactory; a default static instance provided byQItemEditorFactoryis installed on all item delegates. You can set a custom factory usingsetItemEditorFactory()or set a new default factory withsetDefaultFactory(). It is the data stored in the item model with theEditRolethat is edited.Only the standard editing functions for widget-based delegates are reimplemented here:
createEditor()returns the widget used to change data from the model and can be reimplemented to customize editing behavior.
setEditorData()provides the widget with data to manipulate.
updateEditorGeometry()ensures that the editor is displayed correctly with respect to the item view.
setModelData()returns updated data to the model.
closeEditor()signal indicates that the user has completed editing the data, and that the editor widget can be destroyed.
The default delegate used by the standard views supplied with Qt associates each standard role (defined by
ItemDataRole) with certain data types. Models that return data in these types can influence the appearance of the delegate as described in the following table.
Role
Accepted Types
BackgroundRole
QBrush(
BackgroundColorRole
QColor(obsolete; useBackgroundRoleinstead)
CheckStateRole
CheckState
DecorationRole
DisplayRole
QStringand types with a string representation
EditRole见
QItemEditorFactoryfor details
FontRole
SizeHintRole
TextAlignmentRole
Alignment
ForegroundRole
QBrush(
TextColorRole
QColor(obsolete; useForegroundRoleinstead)If the default delegate does not allow the level of customization that you need, either for display purposes or for editing data, it is possible to subclass
QItemDelegateto implement the desired behavior.
当子类化
QItemDelegateto create a delegate that displays items using a custom renderer, it is important to ensure that the delegate can render items suitably for all the required states; e.g. selected, disabled, checked. The documentation for thepaint()function contains some hints to show how this can be achieved.You can provide custom editors by using a
QItemEditorFactory。 色彩编辑器工厂范例 shows how a custom editor can be made available to delegates with the default item editor factory. This way, there is no need to subclassQItemDelegate. An alternative is to reimplementcreateEditor(),setEditorData(),setModelData(),和updateEditorGeometry(). This process is described in the 自旋框委托范例 .
Since Qt 4.4, there are two delegate classes:
QItemDelegateandQStyledItemDelegate. 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 thatQStyledItemDelegateuses the current style to paint its items. We therefore recommend usingQStyledItemDelegateas 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.另请参阅
委托类
QStyledItemDelegateQAbstractItemDelegate自旋框委托范例 设置编辑器范例 图标范例
QItemDelegate
(
[
parent=None
]
)
¶
- param parent
QObject
构造项委托采用给定
parent
.
PySide2.QtWidgets.QItemDelegate.
decoration
(
option
,
variant
)
¶
option
–
QStyleOptionViewItem
variant – object
QPixmap
Returns the pixmap used to decorate the root of the item view. The style
option
controls the appearance of the root; the
variant
refers to the data associated with an item.
PySide2.QtWidgets.QItemDelegate.
doCheck
(
option
,
bounding
,
variant
)
¶
option
–
QStyleOptionViewItem
bounding
–
QRect
variant – object
QRect
PySide2.QtWidgets.QItemDelegate.
drawBackground
(
painter
,
option
,
index
)
¶
painter
–
QPainter
option
–
QStyleOptionViewItem
index
–
QModelIndex
Renders the item background for the given
index
,使用给定
painter
and style
option
.
PySide2.QtWidgets.QItemDelegate.
drawCheck
(
painter
,
option
,
rect
,
state
)
¶
painter
–
QPainter
option
–
QStyleOptionViewItem
rect
–
QRect
state
–
CheckState
Renders a check indicator within the rectangle specified by
rect
,使用给定
painter
and style
option
,使用给定
state
.
PySide2.QtWidgets.QItemDelegate.
drawDecoration
(
painter
,
option
,
rect
,
pixmap
)
¶
painter
–
QPainter
option
–
QStyleOptionViewItem
rect
–
QRect
pixmap
–
QPixmap
Renders the decoration
pixmap
within the rectangle specified by
rect
using the given
painter
and style
option
.
PySide2.QtWidgets.QItemDelegate.
drawDisplay
(
painter
,
option
,
rect
,
text
)
¶
painter
–
QPainter
option
–
QStyleOptionViewItem
rect
–
QRect
text – unicode
Renders the item view
text
within the rectangle specified by
rect
using the given
painter
and style
option
.
PySide2.QtWidgets.QItemDelegate.
drawFocus
(
painter
,
option
,
rect
)
¶
painter
–
QPainter
option
–
QStyleOptionViewItem
rect
–
QRect
Renders the region within the rectangle specified by
rect
, indicating that it has the focus, using the given
painter
and style
option
.
PySide2.QtWidgets.QItemDelegate.
hasClipping
(
)
¶
bool
PySide2.QtWidgets.QItemDelegate.
itemEditorFactory
(
)
¶
Returns the editor factory used by the item delegate. If no editor factory is set, the function will return null.
PySide2.QtWidgets.QItemDelegate.
rect
(
option
,
index
,
role
)
¶
option
–
QStyleOptionViewItem
index
–
QModelIndex
role
–
int
QRect
Only used (and usable) for
DecorationRole
and
CheckStateRole
PySide2.QtWidgets.QItemDelegate.
selectedPixmap
(
pixmap
,
palette
,
enabled
)
¶
pixmap
–
QPixmap
palette
–
QPalette
enabled
–
bool
QPixmap
Returns the selected version of the given
pixmap
using the given
palette
。
enabled
argument decides whether the normal or disabled highlight color of the palette is used.
PySide2.QtWidgets.QItemDelegate.
setClipping
(
clip
)
¶
clip
–
bool
另请参阅
PySide2.QtWidgets.QItemDelegate.
setItemEditorFactory
(
factory
)
¶
factory
–
QItemEditorFactory
Sets the editor factory to be used by the item delegate to be the
factory
specified. If no editor factory is set, the item delegate will use the default editor factory.
另请参阅
PySide2.QtWidgets.QItemDelegate.
setOptions
(
index
,
option
)
¶
index
–
QModelIndex
option
–
QStyleOptionViewItem
PySide2.QtWidgets.QItemDelegate.
textRectangle
(
painter
,
rect
,
font
,
text
)
¶
painter
–
QPainter
rect
–
QRect
font
–
QFont
text – unicode
QRect