QtEnumEditorFactory Class Reference

The QtEnumEditorFactory class provides QComboBox widgets for properties created by QtEnumPropertyManager objects. More...

#include <ArmarXGui/libraries/qtpropertybrowser/src/qteditorfactory.h>

+ Inheritance diagram for QtEnumEditorFactory:

Public Member Functions

 QtEnumEditorFactory (QObject *parent=0)
 
 ~QtEnumEditorFactory () override
 
- Public Member Functions inherited from QtAbstractEditorFactory< QtEnumPropertyManager >
void addPropertyManager (QtEnumPropertyManager *manager)
 
QWidget * createEditor (QtProperty *property, QWidget *parent) override
 
QtEnumPropertyManagerpropertyManager (QtProperty *property) const
 
QSet< QtEnumPropertyManager * > propertyManagers () const
 
 QtAbstractEditorFactory (QObject *parent)
 
void removePropertyManager (QtEnumPropertyManager *manager)
 

Protected Member Functions

void connectPropertyManager (QtEnumPropertyManager *manager) override
 
QWidget * createEditor (QtEnumPropertyManager *manager, QtProperty *property, QWidget *parent) override
 
void disconnectPropertyManager (QtEnumPropertyManager *manager) override
 
- Protected Member Functions inherited from QtAbstractEditorFactory< QtEnumPropertyManager >
void managerDestroyed (QObject *manager) override
 
- Protected Member Functions inherited from QtAbstractEditorFactoryBase
 QtAbstractEditorFactoryBase (QObject *parent=0)
 

Additional Inherited Members

- Protected Slots inherited from QtAbstractEditorFactoryBase

Detailed Description

The QtEnumEditorFactory class provides QComboBox widgets for properties created by QtEnumPropertyManager objects.

See also
QtAbstractEditorFactory, QtEnumPropertyManager

Definition at line 309 of file qteditorfactory.h.

Constructor & Destructor Documentation

◆ QtEnumEditorFactory()

QtEnumEditorFactory ( QObject *  parent = 0)

Creates a factory with the given parent.

Definition at line 2348 of file qteditorfactory.cpp.

◆ ~QtEnumEditorFactory()

~QtEnumEditorFactory ( )
override

Destroys this factory, and all the widgets it has created.

Definition at line 2359 of file qteditorfactory.cpp.

Member Function Documentation

◆ connectPropertyManager()

void connectPropertyManager ( QtEnumPropertyManager manager)
overrideprotectedvirtual

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().

See also
propertyManagers(), disconnectPropertyManager()

Implements QtAbstractEditorFactory< QtEnumPropertyManager >.

Definition at line 2370 of file qteditorfactory.cpp.

◆ createEditor()

QWidget * createEditor ( QtEnumPropertyManager manager,
QtProperty property,
QWidget *  parent 
)
overrideprotectedvirtual

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().

See also
connectPropertyManager()

Implements QtAbstractEditorFactory< QtEnumPropertyManager >.

Definition at line 2383 of file qteditorfactory.cpp.

+ Here is the call graph for this function:

◆ disconnectPropertyManager()

void disconnectPropertyManager ( QtEnumPropertyManager manager)
overrideprotectedvirtual

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.

See also
propertyManagers(), connectPropertyManager()

Implements QtAbstractEditorFactory< QtEnumPropertyManager >.

Definition at line 2413 of file qteditorfactory.cpp.


The documentation for this class was generated from the following files: