QItemEditorFactory

概要

函数

虚函数

静态函数

详细描述

PySide.QtGui.QItemEditorFactory class provides widgets for editing item data in views and delegates.

When editing data in an item view, editors are created and displayed by a delegate. PySide.QtGui.QItemDelegate , which is the delegate by default installed on Qt's item views, uses a PySide.QtGui.QItemEditorFactory to create editors for it. A default unique instance provided by PySide.QtGui.QItemEditorFactory is used by all item delegates. If you set a new default factory with PySide.QtGui.QItemEditorFactory.setDefaultFactory() , the new factory will be used by existing and new delegates.

A factory keeps a collection of PySide.QtGui.QItemEditorCreatorBase instances, which are specialized editors that produce editors for one particular PySide.QtCore.QVariant data type (All Qt models store their data in PySide.QtCore.QVariant s).

标准编辑 Widget

The standard factory implementation provides editors for a variety of data types. These are created whenever a delegate needs to provide an editor for data supplied by a model. The following table shows the relationship between types and the standard editors provided.

Type 编辑器 Widget
bool PySide.QtGui.QComboBox
double PySide.QtGui.QDoubleSpinBox
int PySide.QtGui.QSpinBox
无符号 int
PySide.QtCore.QDate PySide.QtGui.QDateEdit
PySide.QtCore.QDateTime PySide.QtGui.QDateTimeEdit
PySide.QtGui.QPixmap PySide.QtGui.QLabel
PySide.QtCore.QString PySide.QtGui.QLineEdit
PySide.QtCore.QTime PySide.QtGui.QTimeEdit

Additional editors can be registered with the PySide.QtGui.QItemEditorFactory.registerEditor() 函数。

另请参阅

PySide.QtGui.QItemDelegate 模型/视图编程 色彩编辑器工厂范例

class PySide.QtGui. QItemEditorFactory

Constructs a new item editor factory.

PySide.QtGui.QItemEditorFactory. createEditor ( type , parent )
参数:
返回类型:

PySide.QtGui.QWidget

static PySide.QtGui.QItemEditorFactory. defaultFactory ( )
返回类型: PySide.QtGui.QItemEditorFactory

Returns the default item editor factory.

PySide.QtGui.QItemEditorFactory. registerEditor ( type , creator )
参数:
static PySide.QtGui.QItemEditorFactory. setDefaultFactory ( factory )
参数: factory PySide.QtGui.QItemEditorFactory

Sets the default item editor factory to the given factory . Both new and existing delegates will use the new factory.

PySide.QtGui.QItemEditorFactory. valuePropertyName ( type )
参数: type PySide.QtCore.QVariant::Type
返回类型: PySide.QtCore.QByteArray