|
The QtCursorEditorFactory class provides QComboBox widgets for properties created by QtCursorPropertyManager objects. More...
#include <ArmarXGui/libraries/qtpropertybrowser/src/qteditorfactory.h>
Public Member Functions | |
QtCursorEditorFactory (QObject *parent=0) | |
~QtCursorEditorFactory () override | |
Public Member Functions inherited from QtAbstractEditorFactory< QtCursorPropertyManager > | |
void | addPropertyManager (QtCursorPropertyManager *manager) |
QWidget * | createEditor (QtProperty *property, QWidget *parent) override |
QtCursorPropertyManager * | propertyManager (QtProperty *property) const |
QSet< QtCursorPropertyManager * > | propertyManagers () const |
QtAbstractEditorFactory (QObject *parent) | |
void | removePropertyManager (QtCursorPropertyManager *manager) |
Protected Member Functions | |
void | connectPropertyManager (QtCursorPropertyManager *manager) override |
QWidget * | createEditor (QtCursorPropertyManager *manager, QtProperty *property, QWidget *parent) override |
void | disconnectPropertyManager (QtCursorPropertyManager *manager) override |
Protected Member Functions inherited from QtAbstractEditorFactory< QtCursorPropertyManager > | |
void | managerDestroyed (QObject *manager) override |
Protected Member Functions inherited from QtAbstractEditorFactoryBase | |
QtAbstractEditorFactoryBase (QObject *parent=0) | |
Additional Inherited Members | |
Protected Slots inherited from QtAbstractEditorFactoryBase |
The QtCursorEditorFactory class provides QComboBox widgets for properties created by QtCursorPropertyManager objects.
Definition at line 335 of file qteditorfactory.h.
QtCursorEditorFactory | ( | QObject * | parent = 0 | ) |
Creates a factory with the given parent.
Definition at line 2534 of file qteditorfactory.cpp.
|
override |
Destroys this factory, and all the widgets it has created.
Definition at line 2550 of file qteditorfactory.cpp.
|
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().
Implements QtAbstractEditorFactory< QtCursorPropertyManager >.
Definition at line 2560 of file qteditorfactory.cpp.
|
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().
Implements QtAbstractEditorFactory< QtCursorPropertyManager >.
Definition at line 2571 of file qteditorfactory.cpp.
|
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.
Implements QtAbstractEditorFactory< QtCursorPropertyManager >.
Definition at line 2606 of file qteditorfactory.cpp.