The QtAbstractEditorFactory is the base template class for editor factories. More...
#include <qtpropertybrowser.h>
Public Member Functions | |
void | addPropertyManager (PropertyManager *manager) |
QWidget * | createEditor (QtProperty *property, QWidget *parent) override |
PropertyManager * | propertyManager (QtProperty *property) const |
QSet< PropertyManager * > | propertyManagers () const |
QtAbstractEditorFactory (QObject *parent) | |
void | removePropertyManager (PropertyManager *manager) |
Protected Member Functions | |
virtual void | connectPropertyManager (PropertyManager *manager)=0 |
virtual QWidget * | createEditor (PropertyManager *manager, QtProperty *property, QWidget *parent)=0 |
virtual void | disconnectPropertyManager (PropertyManager *manager)=0 |
void | managerDestroyed (QObject *manager) override |
Protected Member Functions inherited from QtAbstractEditorFactoryBase | |
QtAbstractEditorFactoryBase (QObject *parent=nullptr) | |
Private Member Functions | |
void | breakConnection (QtAbstractPropertyManager *manager) override |
Private Attributes | |
QSet< PropertyManager * > | m_managers |
Friends | |
class | QtAbstractPropertyEditor |
Additional Inherited Members | |
Protected Slots inherited from QtAbstractEditorFactoryBase |
The QtAbstractEditorFactory is the base template class for editor factories.
An editor factory is a class that is able to create an editing widget of a specified type (e.g. line edits or comboboxes) for a given QtProperty object, and it is used in conjunction with the QtAbstractPropertyManager and QtAbstractPropertyBrowser classes.
Note that the QtAbstractEditorFactory functions are using the PropertyManager template argument class which can be any QtAbstractPropertyManager subclass. For example:
Note that QtSpinBoxFactory by definition creates editing widgets only for properties created by QtIntPropertyManager.
When using a property browser widget, the properties are created and managed by implementations of the QtAbstractPropertyManager class. To ensure that the properties' values will be displayed using suitable editing widgets, the managers are associated with objects of QtAbstractEditorFactory subclasses. The property browser will use these associations to determine which factories it should use to create the preferred editing widgets.
A QtAbstractEditorFactory object is capable of producing editors for several property managers at the same time. To create an association between this factory and a given manager, use the addPropertyManager() function. Use the removePropertyManager() function to make this factory stop producing editors for a given property manager. Use the propertyManagers() function to retrieve the set of managers currently associated with this factory.
Several ready-made implementations of the QtAbstractEditorFactory class are available:
When deriving from the QtAbstractEditorFactory class, several pure virtual functions must be implemented: the connectPropertyManager() function is used by the factory to connect to the given manager's signals, the createEditor() function is supposed to create an editor for the given property controlled by the given manager, and finally the disconnectPropertyManager() function is used by the factory to disconnect from the specified manager's signals.
|
inlineexplicit |
Creates an editor factory with the given parent.
|
inline |
Adds the given manager to this factory's set of managers, making this factory produce editing widgets for properties created by the given manager.
The PropertyManager type is a template argument class, and represents the chosen QtAbstractPropertyManager subclass.
Referenced by DecoratedDoubleSpinBoxFactory::connectPropertyManager(), QtVariantEditorFactory::connectPropertyManager(), QtCursorEditorFactory::QtCursorEditorFactory(), and QtAbstractPropertyBrowser::setFactoryForManager().
|
inlineoverrideprivatevirtual |
Detaches property manager from factory. This method is reimplemented in QtAbstractEditorFactory template subclass. You don't need to reimplement it in your subclasses. Instead implement more convenient QtAbstractEditorFactory::disconnectPropertyManager() which gives you access to particular manager subclass.
Implements QtAbstractEditorFactoryBase.
|
protectedpure virtual |
Connects this factory to the given manager's signals. The PropertyManager type is a template argument class, and represents the chosen QtAbstractPropertyManager subclass.
This function is used internally by the addPropertyManager() function, and makes it possible to update an editing widget when the associated property's data changes. This is typically done in custom slots responding to the signals emitted by the property's manager, e.g. QtIntPropertyManager::valueChanged() and QtIntPropertyManager::rangeChanged().
Implemented in QtVariantEditorFactory, QtTimeEditFactory, QtLineEditFactory, QtKeySequenceEditorFactory, QtScrollBarFactory, QtSliderFactory, QtSpinBoxFactory, QtFontEditorFactory, QtEnumEditorFactory, QtDoubleSpinBoxFactory, QtDateTimeEditFactory, QtDateEditFactory, QtCursorEditorFactory, QtColorEditorFactory, QtCharEditorFactory, QtCheckBoxFactory, and DecoratedDoubleSpinBoxFactory.
Referenced by QtAbstractEditorFactory< QtStringPropertyManager >::addPropertyManager().
|
protectedpure virtual |
Creates an editing widget with the given parent for the specified property created by the given manager. The PropertyManager type is a template argument class, and represents the chosen QtAbstractPropertyManager subclass.
This function must be implemented in derived classes: It is recommended to store a pointer to the widget and map it to the given property, since the widget must be updated whenever the associated property's data changes. This is typically done in custom slots responding to the signals emitted by the property's manager, e.g. QtIntPropertyManager::valueChanged() and QtIntPropertyManager::rangeChanged().
Implemented in QtVariantEditorFactory, QtTimeEditFactory, QtLineEditFactory, QtKeySequenceEditorFactory, QtScrollBarFactory, QtSliderFactory, QtSpinBoxFactory, QtFontEditorFactory, QtEnumEditorFactory, QtDoubleSpinBoxFactory, QtDateTimeEditFactory, QtDateEditFactory, QtCursorEditorFactory, QtColorEditorFactory, QtCharEditorFactory, QtCheckBoxFactory, and DecoratedDoubleSpinBoxFactory.
|
inlineoverridevirtual |
Creates an editing widget (with the given parent) for the given property.
Implements QtAbstractEditorFactoryBase.
Referenced by QtAbstractEditorFactory< QtStringPropertyManager >::createEditor().
|
protectedpure virtual |
Disconnects this factory from the given manager's signals. The PropertyManager type is a template argument class, and represents the chosen QtAbstractPropertyManager subclass.
This function is used internally by the removePropertyManager() function.
Implemented in QtVariantEditorFactory, QtTimeEditFactory, QtLineEditFactory, QtKeySequenceEditorFactory, QtScrollBarFactory, QtSliderFactory, QtSpinBoxFactory, QtFontEditorFactory, QtEnumEditorFactory, QtDoubleSpinBoxFactory, QtDateTimeEditFactory, QtDateEditFactory, QtCursorEditorFactory, QtColorEditorFactory, QtCharEditorFactory, QtCheckBoxFactory, and DecoratedDoubleSpinBoxFactory.
Referenced by QtAbstractEditorFactory< QtStringPropertyManager >::removePropertyManager().
|
inlineoverrideprotectedvirtual |
Implements QtAbstractEditorFactoryBase.
Referenced by QtAbstractEditorFactory< QtStringPropertyManager >::addPropertyManager(), and QtAbstractEditorFactory< QtStringPropertyManager >::removePropertyManager().
|
inline |
Returns the property manager for the given property, or 0 if the given property doesn't belong to any of this factory's registered managers.
The PropertyManager type is a template argument class, and represents the chosen QtAbstractPropertyManager subclass.
Referenced by QtDoubleSpinBoxFactoryPrivate::slotDecimalsChanged(), QtLineEditFactoryPrivate::slotEchoModeChanged(), QtCursorEditorFactoryPrivate::slotEnumChanged(), QtEnumEditorFactoryPrivate::slotEnumIconsChanged(), QtEnumEditorFactoryPrivate::slotEnumNamesChanged(), QtSpinBoxFactoryPrivate::slotRangeChanged(), QtSliderFactoryPrivate::slotRangeChanged(), QtScrollBarFactoryPrivate::slotRangeChanged(), QtDoubleSpinBoxFactoryPrivate::slotRangeChanged(), QtDateEditFactoryPrivate::slotRangeChanged(), QtLineEditFactoryPrivate::slotRegExpChanged(), QtSpinBoxFactoryPrivate::slotSetValue(), QtSliderFactoryPrivate::slotSetValue(), QtScrollBarFactoryPrivate::slotSetValue(), QtCheckBoxFactoryPrivate::slotSetValue(), QtDoubleSpinBoxFactoryPrivate::slotSetValue(), QtLineEditFactoryPrivate::slotSetValue(), QtDateEditFactoryPrivate::slotSetValue(), QtTimeEditFactoryPrivate::slotSetValue(), QtDateTimeEditFactoryPrivate::slotSetValue(), QtKeySequenceEditorFactoryPrivate::slotSetValue(), QtCharEditorFactoryPrivate::slotSetValue(), QtEnumEditorFactoryPrivate::slotSetValue(), QtColorEditorFactoryPrivate::slotSetValue(), QtFontEditorFactoryPrivate::slotSetValue(), and QtDoubleSpinBoxFactoryPrivate::slotSingleStepChanged().
|
inline |
Returns the factory's set of associated managers. The PropertyManager type is a template argument class, and represents the chosen QtAbstractPropertyManager subclass.
|
inline |
Removes the given manager from this factory's set of managers. The PropertyManager type is a template argument class, and may be any QtAbstractPropertyManager subclass.
Referenced by QtAbstractEditorFactory< QtStringPropertyManager >::breakConnection(), DecoratedDoubleSpinBoxFactory::disconnectPropertyManager(), and QtVariantEditorFactory::disconnectPropertyManager().
|
friend |
|
private |
Referenced by QtAbstractEditorFactory< QtStringPropertyManager >::addPropertyManager(), QtAbstractEditorFactory< QtStringPropertyManager >::breakConnection(), QtAbstractEditorFactory< QtStringPropertyManager >::createEditor(), QtAbstractEditorFactory< QtStringPropertyManager >::managerDestroyed(), QtAbstractEditorFactory< QtStringPropertyManager >::propertyManager(), QtAbstractEditorFactory< QtStringPropertyManager >::propertyManagers(), and QtAbstractEditorFactory< QtStringPropertyManager >::removePropertyManager().