|
The QtStringPropertyManager provides and manages QString properties. More...
#include <ArmarXGui/libraries/qtpropertybrowser/src/qtpropertymanager.h>
Public Slots | |
void | setEchoMode (QtProperty *property, EchoMode echoMode) |
void | setReadOnly (QtProperty *property, bool readOnly) |
void | setRegExp (QtProperty *property, const QRegExp ®Exp) |
void | setValue (QtProperty *property, const QString &val) |
Signals | |
void | echoModeChanged (QtProperty *property, const int) |
void | readOnlyChanged (QtProperty *property, bool) |
void | regExpChanged (QtProperty *property, const QRegExp ®Exp) |
void | valueChanged (QtProperty *property, const QString &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 | |
EchoMode | echoMode (const QtProperty *property) const override |
bool | isReadOnly (const QtProperty *property) const |
QtStringPropertyManager (QObject *parent=0) | |
QRegExp | regExp (const QtProperty *property) const |
QString | value (const QtProperty *property) const |
~QtStringPropertyManager () override | |
Public Member Functions inherited from QtAbstractPropertyManager | |
QtProperty * | addProperty (const QString &name=QString()) |
void | clear () const |
QSet< QtProperty * > | properties () const |
QtAbstractPropertyManager (QObject *parent=0) | |
~QtAbstractPropertyManager () override | |
Protected Member Functions | |
QString | displayText (const QtProperty *property) const override |
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 bool | hasValue (const QtProperty *property) const |
virtual QIcon | valueIcon (const QtProperty *property) const |
The QtStringPropertyManager provides and manages QString properties.
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.
Definition at line 176 of file qtpropertymanager.h.
QtStringPropertyManager | ( | QObject * | parent = 0 | ) |
Creates a manager with the given parent.
Definition at line 1549 of file qtpropertymanager.cpp.
|
override |
Destroys this manager, and all the properties it has created.
Definition at line 1559 of file qtpropertymanager.cpp.
|
overrideprotectedvirtual |
\reimp
Reimplemented from QtAbstractPropertyManager.
Definition at line 1629 of file qtpropertymanager.cpp.
|
overridevirtual |
\reimp
Reimplemented from QtAbstractPropertyManager.
Definition at line 1594 of file qtpropertymanager.cpp.
|
signal |
|
overrideprotectedvirtual |
bool isReadOnly | ( | const QtProperty * | property | ) | const |
Returns read-only status of the property.
When property is read-only it's value can be selected and copied from editor but not modified.
Definition at line 1606 of file qtpropertymanager.cpp.
|
signal |
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.
Definition at line 1586 of file qtpropertymanager.cpp.
|
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 read-only status of the property.
Definition at line 1740 of file qtpropertymanager.cpp.
|
slot |
Sets the regular expression of the given property to regExp.
Definition at line 1688 of file qtpropertymanager.cpp.
|
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.
Definition at line 1654 of file qtpropertymanager.cpp.
|
overrideprotectedvirtual |
\reimp
Reimplemented from QtAbstractPropertyManager.
Definition at line 1774 of file qtpropertymanager.cpp.
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.
Definition at line 1573 of file qtpropertymanager.cpp.
|
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.
|
overrideprotectedvirtual |
\reimp
Reimplemented from QtAbstractPropertyManager.
Definition at line 1614 of file qtpropertymanager.cpp.