CopperSpice API  1.9.1
QItemEditorCreator< T > Class Template Reference

This class makes it possible to create item editor creator bases without subclassing QItemEditorCreatorBase. More...

Inheritance diagram for QItemEditorCreator< T >:
QItemEditorCreatorBase

Public Methods

 QItemEditorCreator (const QString &valuePropertyName)
 
QWidgetcreateWidget (QWidget *parent) const override
 
QString valuePropertyName () const override
 
- Public Methods inherited from QItemEditorCreatorBase
virtual ~QItemEditorCreatorBase ()
 

Detailed Description

template<class T>
class QItemEditorCreator< T >

The QItemEditorCreator class makes it possible to create item editor creator bases without subclassing QItemEditorCreatorBase. QItemEditorCreator is a convenience template class. It uses the template class to create editors for QItemEditorFactory. This way, it is not necessary to subclass QItemEditorCreatorBase.

The constructor takes the name of the property that contains the editing data. QItemDelegate can then access the property by name when it sets and retrieves editing data. Only use this class if your editor does not define a user property (using the CS_PROPERTY_USER() macro). If the widget has a user property, you should use QStandardItemEditorCreator instead.

See also
QItemEditorCreatorBase, QStandardItemEditorCreator, QItemEditorFactory

Constructor & Destructor Documentation

template<class T >
QItemEditorCreator< T >::QItemEditorCreator ( const QString valuePropertyName)
inlineexplicit

Constructs an editor creator object using valuePropertyName as the name of the property to be used for editing. The property name is used by QItemDelegate when setting and getting editor data. The value for valuePropertyName is only used if the editor widget does not have a user property defined.

Method Documentation

template<class T >
QWidget * QItemEditorCreator< T >::createWidget ( QWidget parent) const
inlineoverridevirtual
template<class T >
QString QItemEditorCreator< T >::valuePropertyName ( ) const
inlineoverridevirtual