QtStringPropertyManager Class Reference

The QtStringPropertyManager provides and manages QString properties. More...

#include <ArmarXGui/libraries/qtpropertybrowser/src/qtpropertymanager.h>

+ Inheritance diagram for QtStringPropertyManager:

Public Slots

void setEchoMode (QtProperty *property, EchoMode echoMode)
 
void setReadOnly (QtProperty *property, bool readOnly)
 
void setRegExp (QtProperty *property, const QRegExp &regExp)
 
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 &regExp)
 
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
QtPropertyaddProperty (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 QtPropertycreateProperty ()
 
virtual bool hasValue (const QtProperty *property) const
 
virtual QIcon valueIcon (const QtProperty *property) const
 

Detailed Description

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.

See also
QtAbstractPropertyManager, QtLineEditFactory

Definition at line 183 of file qtpropertymanager.h.

Constructor & Destructor Documentation

◆ QtStringPropertyManager()

QtStringPropertyManager ( QObject * parent = 0)

Creates a manager with the given parent.

Definition at line 1776 of file qtpropertymanager.cpp.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ ~QtStringPropertyManager()

~QtStringPropertyManager ( )
override

Destroys this manager, and all the properties it has created.

Definition at line 1786 of file qtpropertymanager.cpp.

+ Here is the call graph for this function:

Member Function Documentation

◆ displayText()

QString displayText ( const QtProperty * property) const
overrideprotectedvirtual

\reimp

Reimplemented from QtAbstractPropertyManager.

Definition at line 1866 of file qtpropertymanager.cpp.

+ Here is the call graph for this function:

◆ echoMode()

EchoMode echoMode ( const QtProperty * property) const
overridevirtual

\reimp

Reimplemented from QtAbstractPropertyManager.

Definition at line 1825 of file qtpropertymanager.cpp.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ echoModeChanged

void echoModeChanged ( QtProperty * property,
const int  )
signal
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ initializeProperty()

void initializeProperty ( QtProperty * property)
overrideprotectedvirtual

\reimp

Implements QtAbstractPropertyManager.

Definition at line 2012 of file qtpropertymanager.cpp.

+ Here is the call graph for this function:

◆ isReadOnly()

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.

See also
QtStringPropertyManager::setReadOnly

Definition at line 1839 of file qtpropertymanager.cpp.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ readOnlyChanged

void readOnlyChanged ( QtProperty * property,
bool  )
signal
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ regExp()

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.

See also
setRegExp()

Definition at line 1815 of file qtpropertymanager.cpp.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ regExpChanged

void regExpChanged ( QtProperty * property,
const QRegExp & regExp )
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.

See also
setRegExp()
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ setEchoMode

void setEchoMode ( QtProperty * property,
EchoMode echoMode )
slot

Definition at line 1954 of file qtpropertymanager.cpp.

+ Here is the call graph for this function:

◆ setReadOnly

void setReadOnly ( QtProperty * property,
bool readOnly )
slot

Sets read-only status of the property.

See also
QtStringPropertyManager::setReadOnly

Definition at line 1984 of file qtpropertymanager.cpp.

+ Here is the call graph for this function:

◆ setRegExp

void setRegExp ( QtProperty * property,
const QRegExp & regExp )
slot

Sets the regular expression of the given property to regExp.

See also
regExp(), setValue(), regExpChanged()

Definition at line 1929 of file qtpropertymanager.cpp.

+ Here is the call graph for this function:

◆ setValue

void setValue ( QtProperty * property,
const QString & value )
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.

See also
value(), setRegExp(), valueChanged()

Definition at line 1893 of file qtpropertymanager.cpp.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ uninitializeProperty()

void uninitializeProperty ( QtProperty * property)
overrideprotectedvirtual

\reimp

Reimplemented from QtAbstractPropertyManager.

Definition at line 2021 of file qtpropertymanager.cpp.

+ Here is the call graph for this function:

◆ value()

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.

See also
setValue()

Definition at line 1801 of file qtpropertymanager.cpp.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ valueChanged

void valueChanged ( QtProperty * property,
const QString & value )
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.

See also
setValue()
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ valueText()

QString valueText ( const QtProperty * property) const
overrideprotectedvirtual

\reimp

Reimplemented from QtAbstractPropertyManager.

Definition at line 1849 of file qtpropertymanager.cpp.

+ Here is the call graph for this function:

The documentation for this class was generated from the following files: