itom
|
The QtStringPropertyManager provides and manages QString properties. More...
Public Slots | |
void | setValue (QtProperty *property, const QString &val) |
void | setRegExp (QtProperty *property, const QRegularExpression ®Exp) |
void | setEchoMode (QtProperty *property, EchoMode echoMode) |
Signals | |
void | valueChanged (QtProperty *property, const QString &val) |
void | regExpChanged (QtProperty *property, const QRegularExpression ®Exp) |
void | echoModeChanged (QtProperty *property, const int) |
Signals inherited from QtAbstractPropertyManager | |
void | propertyInserted (QtProperty *property, QtProperty *parent, QtProperty *after) |
void | propertyChanged (QtProperty *property) |
void | propertyRemoved (QtProperty *property, QtProperty *parent) |
void | propertyDestroyed (QtProperty *property) |
Public Member Functions | |
QtStringPropertyManager (QObject *parent=0) | |
~QtStringPropertyManager () | |
QString | value (const QtProperty *property) const |
QRegularExpression | regExp (const QtProperty *property) const |
EchoMode | echoMode (const QtProperty *property) const |
Public Member Functions inherited from QtAbstractPropertyManager | |
QtAbstractPropertyManager (QObject *parent=0) | |
~QtAbstractPropertyManager () | |
QSet< QtProperty * > | properties () const |
void | clear () const |
QtProperty * | addProperty (const QString &name=QString()) |
Protected Member Functions | |
QString | valueText (const QtProperty *property) const |
QString | displayText (const QtProperty *property) const |
virtual void | initializeProperty (QtProperty *property) |
virtual void | uninitializeProperty (QtProperty *property) |
Protected Member Functions inherited from QtAbstractPropertyManager | |
virtual bool | hasValue (const QtProperty *property) const |
virtual QIcon | valueIcon (const QtProperty *property) const |
virtual QtProperty * | createProperty () |
Private Attributes | |
QtStringPropertyManagerPrivate * | d_ptr |
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.
QtStringPropertyManager::QtStringPropertyManager | ( | QObject * | parent = 0 | ) |
Creates a manager with the given parent.
QtStringPropertyManager::~QtStringPropertyManager | ( | ) |
Destroys this manager, and all the properties it has created.
|
protectedvirtual |
\reimp
Reimplemented from QtAbstractPropertyManager.
|
virtual |
\reimp
Reimplemented from QtAbstractPropertyManager.
|
protectedvirtual |
\reimp
Implements QtAbstractPropertyManager.
QRegularExpression QtStringPropertyManager::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 currently set regular expression, passing a pointer to the property and the new regExp as parameters.
|
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 |
\reimp
Reimplemented from QtAbstractPropertyManager.
QString QtStringPropertyManager::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 |
\reimp
Reimplemented from QtAbstractPropertyManager.