![]() |
Workspace 7.1.0
|
The QtStringPropertyManager provides and manages QString properties. More...
#include <Workspace/Widgets/PropertyBrowser/qtpropertymanager.h>
Public Slots | |
void | setEchoMode (QtProperty *property, EchoMode echoMode) |
void | setRegExp (QtProperty *property, const QRegExp ®Exp) |
void | setValue (QtProperty *property, const QString &val) |
Signals | |
void | echoModeChanged (QtProperty *property, const int) |
void | regExpChanged (QtProperty *property, const QRegExp ®Exp) |
void | valueChanged (QtProperty *property, const QString &val) |
![]() | |
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 | |
QtStringPropertyManager (QObject *parent=nullptr) | |
~QtStringPropertyManager () | |
EchoMode | echoMode (const QtProperty *property) const |
QRegExp | regExp (const QtProperty *property) const |
QString | value (const QtProperty *property) const |
![]() | |
QtAbstractPropertyManager (QObject *parent=nullptr) | |
~QtAbstractPropertyManager () | |
QtProperty * | addProperty (const QString &name=QString()) |
void | clear () const |
bool | getModifiedOnValueChanged () const |
QSet< QtProperty * > | properties () const |
void | setModifiedOnValueChanged (bool modified) |
Protected Member Functions | |
QString | displayText (const QtProperty *property) const |
virtual void | initializeProperty (QtProperty *property) |
virtual void | uninitializeProperty (QtProperty *property) |
QString | valueText (const QtProperty *property) const |
![]() | |
virtual QtProperty * | createProperty () |
virtual QString | displayText (const QtProperty *property) const |
virtual EchoMode | echoMode (const QtProperty *) const |
virtual bool | hasValue (const QtProperty *property) const |
virtual void | initializeProperty (QtProperty *property)=0 |
virtual void | uninitializeProperty (QtProperty *property) |
virtual QIcon | valueIcon (const QtProperty *property) const |
virtual QString | valueText (const QtProperty *property) const |
A string property's value can be retrieved using the value() function, and set using the setValue() slot.
The current value can be checked against a regular expression. To set the regular expression use the setRegExp() slot, use the regExp() function to retrieve the currently set expression.
In addition, QtStringPropertyManager provides the valueChanged() signal which is emitted whenever a property created by this manager changes, and the regExpChanged() signal which is emitted whenever such a property changes its currently set regular expression.
QtStringPropertyManager | ( | QObject * | parent = nullptr | ) |
Creates a manager with the given parent.
Destroys this manager, and all the properties it has created.
|
protectedvirtual |
Returns a string representing the current state of the given property.
The default implementation of this function returns an empty string.
Reimplemented from QtAbstractPropertyManager.
|
virtual |
Returns the echo mode representing the current state of the given property.
The default implementation of this function returns QLineEdit::Normal.
Reimplemented from QtAbstractPropertyManager.
|
signal |
|
protectedvirtual |
This function is called whenever a new valid property pointer has been created, passing the pointer as parameter.
The purpose is to let the manager know that the property has been created so that it can provide additional attributes for the new property, e.g. QtIntPropertyManager adds {QtIntPropertyManager::value()}{value}, {QtIntPropertyManager::minimum()}{minimum} and {QtIntPropertyManager::maximum()}{maximum} attributes. Since each manager subclass adds type specific attributes, this function is pure virtual and must be reimplemented when deriving from the QtAbstractPropertyManager class.
Implements QtAbstractPropertyManager.
QRegExp regExp | ( | const QtProperty * | property | ) | const |
Returns the given property's currently set regular expression.
If the given property is not managed by this manager, this function returns an empty expression.
|
signal |
This signal is emitted whenever a property created by this manager changes its currenlty set regular expression, passing a pointer to the property and the new regExp as parameters.
|
slot |
|
slot |
Sets the regular expression of the given property to regExp.
|
slot |
Sets the value of the given property to value.
If the specified value doesn't match the given property's regular expression, this function does nothing.
|
protectedvirtual |
This function is called just before the specified property is destroyed.
The purpose is to let the property manager know that the property is being destroyed so that it can remove the property's additional attributes.
Reimplemented from QtAbstractPropertyManager.
QString value | ( | const QtProperty * | property | ) | const |
Returns the given property's value.
If the given property is not managed by this manager, this function returns an empty string.
|
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.
|
protectedvirtual |
Returns a string representing the current state of the given property.
The default implementation of this function returns an empty string.
Reimplemented from QtAbstractPropertyManager.