Home

QtAbstractPropertyManager Class Reference

The QtAbstractPropertyManager provides an interface for property managers. More...

 #include <QtAbstractPropertyManager>

Inherits QObject.

Inherited by QtBoolPropertyManager, QtCharPropertyManager, QtColorPropertyManager, QtCursorPropertyManager, QtDatePropertyManager, QtDateTimePropertyManager, QtDoublePropertyManager, QtEnumPropertyManager, QtFlagPropertyManager, QtFontPropertyManager, QtGroupPropertyManager, QtIntPropertyManager, QtKeySequencePropertyManager, QtLocalePropertyManager, QtPointFPropertyManager, QtPointPropertyManager, QtRectFPropertyManager, QtRectPropertyManager, QtSizeFPropertyManager, QtSizePolicyPropertyManager, QtSizePropertyManager, QtStringPropertyManager, QtTimePropertyManager, and QtVariantPropertyManager.

Public Functions

Signals

Protected Functions

Additional Inherited Members


Detailed Description

The QtAbstractPropertyManager provides an interface for property managers.

A manager can create and manage properties of a given type, and is used in conjunction with the QtAbstractPropertyBrowser class.

When using a property browser widget, the properties are created and managed by implementations of the QtAbstractPropertyManager class. To ensure that the properties' values will be displayed using suitable editing widgets, the managers are associated with objects of QtAbstractEditorFactory subclasses. The property browser will use these associations to determine which factories it should use to create the preferred editing widgets.

The QtAbstractPropertyManager class provides common functionality like creating a property using the addProperty() function, and retrieving the properties created by the manager using the properties() function. The class also provides signals that are emitted when the manager's properties change: propertyInserted(), propertyRemoved(), propertyChanged() and propertyDestroyed().

QtAbstractPropertyManager subclasses are supposed to provide their own type specific API. Note that several ready-made implementations are available:

See also QtAbstractEditorFactoryBase, QtAbstractPropertyBrowser, and QtProperty.


Member Function Documentation

QtAbstractPropertyManager::QtAbstractPropertyManager ( QObject * parent = 0 )

Creates an abstract property manager with the given parent.

QtAbstractPropertyManager::~QtAbstractPropertyManager ()

Destroys the manager. All properties created by the manager are destroyed.

QtProperty * QtAbstractPropertyManager::addProperty ( const QString & name = QString() )

Creates a property with the given name which then is owned by this manager.

Internally, this function calls the createProperty() and initializeProperty() functions.

See also initializeProperty() and properties().

void QtAbstractPropertyManager::clear () const

Destroys all the properties that this manager has created.

See also propertyDestroyed() and uninitializeProperty().

QtProperty * QtAbstractPropertyManager::createProperty ()   [virtual protected]

Creates a property.

The base implementation produce QtProperty instances; Reimplement this function to make this manager produce objects of a QtProperty subclass.

See also addProperty() and initializeProperty().

bool QtAbstractPropertyManager::hasValue ( const QtProperty * property ) const   [virtual protected]

Returns whether the given property has a value.

The default implementation of this function returns true.

See also QtProperty::hasValue().

void QtAbstractPropertyManager::initializeProperty ( QtProperty * property )   [pure virtual protected]

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 value, minimum and 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.

See also addProperty() and createProperty().

QSet<QtProperty *> QtAbstractPropertyManager::properties () const

Returns the set of properties created by this manager.

See also addProperty().

void QtAbstractPropertyManager::propertyChanged ( QtProperty * property )   [signal]

This signal is emitted whenever a property's data changes, passing a pointer to the property as parameter.

Note that signal is only emitted for properties that are created by this manager.

See also QtAbstractPropertyBrowser::itemChanged().

void QtAbstractPropertyManager::propertyDestroyed ( QtProperty * property )   [signal]

This signal is emitted when the specified property is about to be destroyed.

Note that signal is only emitted for properties that are created by this manager.

See also clear() and uninitializeProperty().

void QtAbstractPropertyManager::propertyInserted ( QtProperty * newProperty, QtProperty * parentProperty, QtProperty * precedingProperty )   [signal]

This signal is emitted when a new subproperty is inserted into an existing property, passing pointers to the newProperty, parentProperty and precedingProperty as parameters.

If precedingProperty is 0, the newProperty was inserted at the beginning of the parentProperty's subproperties list.

Note that signal is emitted only if the parentProperty is created by this manager.

See also QtAbstractPropertyBrowser::itemInserted().

void QtAbstractPropertyManager::propertyRemoved ( QtProperty * property, QtProperty * parent )   [signal]

This signal is emitted when a subproperty is removed, passing pointers to the removed property and the parent property as parameters.

Note that signal is emitted only when the parent property is created by this manager.

See also QtAbstractPropertyBrowser::itemRemoved().

void QtAbstractPropertyManager::uninitializeProperty ( QtProperty * property )   [virtual protected]

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.

See also clear() and propertyDestroyed().

QIcon QtAbstractPropertyManager::valueIcon ( const QtProperty * property ) const   [virtual protected]

Returns an icon representing the current state of the given property.

The default implementation of this function returns an invalid icon.

See also QtProperty::valueIcon().

QString QtAbstractPropertyManager::valueText ( const QtProperty * property ) const   [virtual protected]

Returns a string representing the current state of the given property.

The default implementation of this function returns an empty string.

See also QtProperty::valueText().


Copyright © 2009 Nokia Corporation and/or its subsidiary(-ies) Trademarks
Qt Solutions