QItemEditorCreatorBase 类

QItemEditorCreatorBase 类提供必须被子类化的抽象基类,当实现新的项编辑器创建者时。 更多...

头: #include <QItemEditorCreatorBase>
qmake: QT += widgets
Since: Qt 4.2
继承者:

QItemEditorCreator and QStandardItemEditorCreator

该类在 Qt 4.2 引入。

公共函数

virtual ~QItemEditorCreatorBase ()
virtual QWidget * createWidget (QWidget * parent ) const = 0
virtual QByteArray valuePropertyName () const = 0

详细描述

QItemEditorCreatorBase objects are specialized widget factories that provide editor widgets for one particular QVariant data type. They are used by QItemEditorFactory to create editors for QStyledItemDelegate s. Creator bases must be registered with QItemEditorFactory::registerEditor ().

An editor should provide a user property for the data it edits. QItemDelagates can then access the property using Qt's 元对象系统 to set and retrieve the editing data. A property is set as the user property with the USER keyword:

Q_PROPERTY(QColor color READ color WRITE setColor USER true)
					

If the editor does not provide a user property, it must return the name of the property from valuePropertyName (); delegates will then use the name to access the property. If a user property exists, item delegates will not call valuePropertyName ().

QStandardItemEditorCreator is a convenience template class that can be used to register widgets without the need to subclass QItemEditorCreatorBase.

另请参阅 QStandardItemEditorCreator , QItemEditorFactory , 模型/视图编程 ,和 色彩编辑器工厂范例 .

成员函数文档编制

[virtual] QItemEditorCreatorBase:: ~QItemEditorCreatorBase ()

Destroys the editor creator object.

[pure virtual] QWidget *QItemEditorCreatorBase:: createWidget ( QWidget * parent ) const

Returns an editor widget with the given parent .

When implementing this function in subclasses of this class, you must construct and return new editor widgets with the parent widget specified.

[pure virtual] QByteArray QItemEditorCreatorBase:: valuePropertyName () const

Returns the name of the property used to get and set values in the creator's editor widgets.

When implementing this function in subclasses, you must ensure that the editor widget's property specified by this function can accept the type the creator is registered for. For example, a creator which constructs QCheckBox widgets to edit boolean values would return the checkable property name from this function, and must be registered in the item editor factory for the QVariant::Bool type.

Note: Since Qt 4.2 the item delegates query the user property of widgets, and only call this function if the widget has no user property. You can override this behavior by reimplementing QAbstractItemDelegate::setModelData () 和 QAbstractItemDelegate::setEditorData ().

另请参阅 QMetaObject::userProperty () 和 QItemEditorFactory::registerEditor ().