Workspace 6.21.5
Public Member Functions | Protected Slots | Protected Member Functions | List of all members
QtAbstractEditorFactoryBase Class Referenceabstract

The QtAbstractEditorFactoryBase provides an interface for editor factories. More...

#include <Workspace/Widgets/PropertyBrowser/qtpropertybrowser.h>

Inheritance diagram for QtAbstractEditorFactoryBase:
[legend]

Public Member Functions

virtual QWidget * createEditor (QtProperty *property, QWidget *parent)=0
 

Protected Slots

virtual void managerDestroyed (QObject *manager)=0
 

Protected Member Functions

 QtAbstractEditorFactoryBase (QObject *parent=nullptr)
 
virtual void breakConnection (QtAbstractPropertyManager *manager)=0
 

Detailed Description

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.

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.

Typically, an editor factory is created by subclassing the QtAbstractEditorFactory template class which inherits QtAbstractEditorFactoryBase. But note that several ready-made implementations are available:

See also
QtAbstractPropertyManager, QtAbstractPropertyBrowser

Constructor & Destructor Documentation

◆ QtAbstractEditorFactoryBase()

QtAbstractEditorFactoryBase ( QObject *  parent = nullptr)
inlineexplicitprotected

Creates an abstract editor factory with the given parent.

Member Function Documentation

◆ breakConnection()

void breakConnection ( QtAbstractPropertyManager manager)
protectedpure virtual

◆ createEditor()

QWidget * createEditor ( QtProperty property,
QWidget *  parent 
)
pure virtual

◆ managerDestroyed

void managerDestroyed ( QObject *  manager)
protectedpure virtualslot