Computer Assited Medical Intervention Tool Kit  version 4.0
Public Slots | Signals | Public Member Functions | Protected Member Functions | Private Attributes | List of all members
QtStringPropertyManager Class Reference

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

#include <qtpropertymanager.h>

Inherits QtAbstractPropertyManager.

Public Slots

void setEchoMode (QtProperty *property, EchoMode echoMode)
 
void setRegExp (QtProperty *property, const QRegExp &regExp)
 
void setValue (QtProperty *property, const QString &val)
 

Signals

void echoModeChanged (QtProperty *property, const int)
 
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
 
 QtStringPropertyManager (QObject *parent=0)
 
QRegExp regExp (const QtProperty *property) const
 
QString value (const QtProperty *property) const
 
 ~QtStringPropertyManager ()
 
- Public Member Functions inherited from QtAbstractPropertyManager
QtProperty * addProperty (const QString &name=QString())
 
void clear () const
 
QSet< QtProperty * > properties () const
 
 QtAbstractPropertyManager (QObject *parent=0)
 
 ~QtAbstractPropertyManager ()
 

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
 
- Protected Member Functions inherited from QtAbstractPropertyManager
virtual QtProperty * createProperty ()
 
virtual bool hasValue (const QtProperty *property) const
 
virtual QIcon valueIcon (const QtProperty *property) const
 

Private Attributes

QtStringPropertyManagerPrivate * d_ptr
 

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

Constructor & Destructor Documentation

◆ QtStringPropertyManager()

QtStringPropertyManager::QtStringPropertyManager ( QObject *  parent = 0)

Creates a manager with the given parent.

References d_ptr, and QtStringPropertyManagerPrivate::q_ptr.

◆ ~QtStringPropertyManager()

QtStringPropertyManager::~QtStringPropertyManager ( )

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

References QtAbstractPropertyManager::clear(), and d_ptr.

Member Function Documentation

◆ displayText()

QString QtStringPropertyManager::displayText ( const QtProperty *  property) const
protectedvirtual

◆ echoMode()

EchoMode QtStringPropertyManager::echoMode ( const QtProperty *  property) const
virtual

◆ echoModeChanged

void QtStringPropertyManager::echoModeChanged ( QtProperty *  property,
const int   
)
signal

Referenced by setEchoMode().

◆ initializeProperty()

void QtStringPropertyManager::initializeProperty ( QtProperty *  property)
protectedvirtual

◆ regExp()

QRegExp 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.

See also
setRegExp()

References d_ptr, QtStringPropertyManagerPrivate::m_values, and QtStringPropertyManagerPrivate::Data::regExp.

Referenced by QtLineEditFactory::createEditor(), and setRegExp().

◆ regExpChanged

void QtStringPropertyManager::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()

Referenced by setRegExp().

◆ setEchoMode

void QtStringPropertyManager::setEchoMode ( QtProperty *  property,
EchoMode  echoMode 
)
slot

◆ setRegExp

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

Sets the regular expression of the given property to regExp.

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

References d_ptr, QtStringPropertyManagerPrivate::m_values, regExp(), QtStringPropertyManagerPrivate::Data::regExp, and regExpChanged().

◆ setValue

void QtStringPropertyManager::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()

References d_ptr, QtStringPropertyManagerPrivate::m_values, QtAbstractPropertyManager::propertyChanged(), QtStringPropertyManagerPrivate::Data::regExp, QtStringPropertyManagerPrivate::Data::val, and valueChanged().

Referenced by MainWindow::itemClicked(), and QtLineEditFactoryPrivate::slotSetValue().

◆ uninitializeProperty()

void QtStringPropertyManager::uninitializeProperty ( QtProperty *  property)
protectedvirtual

◆ value()

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.

See also
setValue()

References d_ptr, and QtStringPropertyManagerPrivate::m_values.

Referenced by QtLineEditFactory::createEditor().

◆ valueChanged

void QtStringPropertyManager::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()

Referenced by setValue().

◆ valueText()

QString QtStringPropertyManager::valueText ( const QtProperty *  property) const
protectedvirtual

Member Data Documentation

◆ d_ptr

QtStringPropertyManagerPrivate* QtStringPropertyManager::d_ptr
private

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