The QtVector3DPropertyManager provides and manages QVector3D properties. More...
#include <qtpropertymanager.h>
Inheritance diagram for QtVector3DPropertyManager:
Collaboration diagram for QtVector3DPropertyManager:Public Slots | |
| void | setDecimals (QtProperty *property, int prec) |
| void | setValue (QtProperty *property, const QVector3D &val) |
Signals | |
| void | decimalsChanged (QtProperty *property, int prec) |
| void | valueChanged (QtProperty *property, const QVector3D &val) |
Signals inherited from QtAbstractPropertyManager | |
| void | propertyChanged (QtProperty *property) |
| void | propertyDestroyed (QtProperty *property) |
| void | propertyInserted (QtProperty *property, QtProperty *parent, QtProperty *after) |
| void | propertyRemoved (QtProperty *property, QtProperty *parent) |
Public Member Functions | |
| int | decimals (const QtProperty *property) const |
| QtVector3DPropertyManager (QObject *parent=nullptr) | |
| QtDoublePropertyManager * | subDoublePropertyManager () const |
| QVector3D | value (const QtProperty *property) const |
| ~QtVector3DPropertyManager () override | |
Public Member Functions inherited from QtAbstractPropertyManager | |
| QtProperty * | addProperty (const QString &name=QString()) |
| void | clear () const |
| QSet< QtProperty * > | properties () const |
| QtAbstractPropertyManager (QObject *parent=nullptr) | |
| ~QtAbstractPropertyManager () override | |
Protected Member Functions | |
| void | initializeProperty (QtProperty *property) override |
| void | uninitializeProperty (QtProperty *property) override |
| QString | valueText (const QtProperty *property) const override |
Protected Member Functions inherited from QtAbstractPropertyManager | |
| virtual QtProperty * | createProperty () |
| virtual QString | displayText (const QtProperty *property) const |
| virtual EchoMode | echoMode (const QtProperty *) const |
| virtual bool | hasValue (const QtProperty *property) const |
| virtual QIcon | valueIcon (const QtProperty *property) const |
Private Member Functions | |
| Q_PRIVATE_SLOT (d_func(), void slotDoubleChanged(QtProperty *, double)) Q_PRIVATE_SLOT(d_func() | |
Private Attributes | |
| QtVector3DPropertyManagerPrivate * | d_ptr |
The QtVector3DPropertyManager provides and manages QVector3D properties.
It is heavily based on QtPointPropertyManager (but encapsulates/manages a QVector3D instead of a QPoint)
| QtVector3DPropertyManager::QtVector3DPropertyManager | ( | QObject * | parent = nullptr | ) |
Creates a manager with the given parent.
References d_ptr, QtVector3DPropertyManagerPrivate::m_doublePropertyManager, QtAbstractPropertyManager::propertyDestroyed(), QtVector3DPropertyManagerPrivate::q_ptr, and valueChanged().
|
override |
Destroys this manager, and all the properties it has created.
References QtAbstractPropertyManager::clear(), and d_ptr.
Here is the call graph for this function:| int QtVector3DPropertyManager::decimals | ( | const QtProperty * | property | ) | const |
Returns the given property's precision, in decimals.
References d_ptr, QtVector3DPropertyManagerPrivate::Data::decimals, and QtVector3DPropertyManagerPrivate::m_values.
Referenced by initializeProperty().
Here is the caller graph for this function:
|
signal |
This signal is emitted whenever a property created by this manager changes its precision of value, passing a pointer to the property and the new prec value
Referenced by setDecimals().
Here is the caller graph for this function:
|
overrideprotectedvirtual |
\reimp
Implements QtAbstractPropertyManager.
References QtAbstractPropertyManager::addProperty(), QtProperty::addSubProperty(), d_ptr, decimals(), QtVector3DPropertyManagerPrivate::m_doublePropertyManager, QtVector3DPropertyManagerPrivate::m_propertyToX, QtVector3DPropertyManagerPrivate::m_propertyToY, QtVector3DPropertyManagerPrivate::m_propertyToZ, QtVector3DPropertyManagerPrivate::m_values, QtVector3DPropertyManagerPrivate::m_xToProperty, QtVector3DPropertyManagerPrivate::m_yToProperty, QtVector3DPropertyManagerPrivate::m_zToProperty, QtDoublePropertyManager::setDecimals(), QtProperty::setPropertyName(), and QtDoublePropertyManager::setValue().
Here is the call graph for this function:
|
private |
|
slot |
Sets the precision of the given property to prec.
The valid decimal range is 0-13. The default is 2.
References d_ptr, QtVector3DPropertyManagerPrivate::Data::decimals, decimalsChanged(), QtVector3DPropertyManagerPrivate::m_doublePropertyManager, QtVector3DPropertyManagerPrivate::m_propertyToX, QtVector3DPropertyManagerPrivate::m_propertyToY, QtVector3DPropertyManagerPrivate::m_propertyToZ, QtVector3DPropertyManagerPrivate::m_values, and QtDoublePropertyManager::setDecimals().
Here is the call graph for this function:
|
slot |
Sets the value of the given property to value. Nested properties are updated automatically.
References d_ptr, QtVector3DPropertyManagerPrivate::m_doublePropertyManager, QtVector3DPropertyManagerPrivate::m_propertyToX, QtVector3DPropertyManagerPrivate::m_propertyToY, QtVector3DPropertyManagerPrivate::m_propertyToZ, QtVector3DPropertyManagerPrivate::m_values, QtAbstractPropertyManager::propertyChanged(), QtDoublePropertyManager::setValue(), and valueChanged().
Referenced by QtVector3DPropertyManagerPrivate::slotDoubleChanged().
Here is the call graph for this function:
Here is the caller graph for this function:| QtDoublePropertyManager * QtVector3DPropertyManager::subDoublePropertyManager | ( | ) | const |
Returns the manager that creates the nested x and y subproperties.
In order to provide editing widgets for the subproperties in a property browser widget, this manager must be associated with an editor factory.
References d_ptr, and QtVector3DPropertyManagerPrivate::m_doublePropertyManager.
|
overrideprotectedvirtual |
\reimp
Reimplemented from QtAbstractPropertyManager.
References d_ptr, QtVector3DPropertyManagerPrivate::m_propertyToX, QtVector3DPropertyManagerPrivate::m_propertyToY, QtVector3DPropertyManagerPrivate::m_propertyToZ, QtVector3DPropertyManagerPrivate::m_values, QtVector3DPropertyManagerPrivate::m_xToProperty, QtVector3DPropertyManagerPrivate::m_yToProperty, and QtVector3DPropertyManagerPrivate::m_zToProperty.
| QVector3D QtVector3DPropertyManager::value | ( | const QtProperty * | property | ) | const |
Returns the given property's value.
If the given property is not managed by this manager, this function returns a point with coordinates (0, 0).
References d_ptr, and QtVector3DPropertyManagerPrivate::m_values.
|
signal |
This signal is emitted whenever a property created by this manager changes its value, passing a pointer to the property and the new value as parameters.
Referenced by QtVector3DPropertyManager(), and setValue().
Here is the caller graph for this function:
|
overrideprotectedvirtual |
\reimp
Reimplemented from QtAbstractPropertyManager.
References d_ptr, and QtVector3DPropertyManagerPrivate::m_values.
|
private |