Home

QtAbstractPropertyBrowser Class Reference

QtAbstractPropertyBrowser provides a base class for implementing property browsers. More...

 #include <QtAbstractPropertyBrowser>

Inherits QWidget.

Inherited by QtButtonPropertyBrowser, QtGroupBoxPropertyBrowser, and QtTreePropertyBrowser.

Public Functions

Public Slots

Signals

Protected Functions

Additional Inherited Members


Detailed Description

QtAbstractPropertyBrowser provides a base class for implementing property browsers.

A property browser is a widget that enables the user to edit a given set of properties. Each property is represented by a label specifying the property's name, and an editing widget (e.g. a line edit or a combobox) holding its value. A property can have zero or more subproperties.

The top level properties can be retrieved using the properties() function. To traverse each property's subproperties, use the QtProperty::subProperties() function. In addition, the set of top level properties can be manipulated using the addProperty(), insertProperty() and removeProperty() functions. Note that the QtProperty class provides a corresponding set of functions making it possible to manipulate the set of subproperties as well.

To remove all the properties from the property browser widget, use the clear() function. This function will clear the editor, but it will not delete the properties since they can still be used in other editors.

The properties themselves are created and managed by implementations of the QtAbstractPropertyManager class. A manager can handle (i.e. create and manage) properties of a given type. In the property browser the managers are associated with implementations of the QtAbstractEditorFactory: A factory is a class able to create an editing widget of a specified type.

When using a property browser widget, managers must be created for each of the required property types before the properties themselves can be created. To ensure that the properties' values will be displayed using suitable editing widgets, the managers must be associated with objects of the preferred factory implementations using the setFactoryForManager() function. The property browser will use these associations to determine which factory it should use to create the preferred editing widget.

Note that a factory can be associated with many managers, but a manager can only be associated with one single factory within the context of a single property browser. The associations between managers and factories can at any time be removed using the unsetFactoryForManager() function.

Whenever the property data changes or a property is inserted or removed, the itemChanged(), itemInserted() or itemRemoved() functions are called, respectively. These functions must be reimplemented in derived classes in order to update the property browser widget. Be aware that some property instances can appear several times in an abstract tree structure. For example:

 QtProperty *property1, *property2, *property3;

 property2->addSubProperty(property1);
 property3->addSubProperty(property2);

 QtAbstractPropertyBrowser *editor;

 editor->addProperty(property1);
 editor->addProperty(property2);
 editor->addProperty(property3);

The addProperty() function returns a QtBrowserItem that uniquely identifies the created item.

To make a property editable in the property browser, the createEditor() function must be called to provide the property with a suitable editing widget.

Note that there are two ready-made property browser implementations:

See also QtAbstractPropertyManager and QtAbstractEditorFactoryBase.


Member Function Documentation

QtAbstractPropertyBrowser::QtAbstractPropertyBrowser ( QWidget * parent = 0 )

Creates an abstract property browser with the given parent.

QtAbstractPropertyBrowser::~QtAbstractPropertyBrowser ()

Destroys the property browser, and destroys all the items that were created by this property browser.

Note that the properties that were displayed in the editor are not deleted since they still can be used in other editors. Neither does the destructor delete the property managers and editor factories that were used by this property browser widget unless this widget was their parent.

See also QtAbstractPropertyManager::~QtAbstractPropertyManager().

QtBrowserItem * QtAbstractPropertyBrowser::addProperty ( QtProperty * property )   [slot]

Appends the given property (and its subproperties) to the property browser's list of top level properties. Returns the item created by property browser which is associated with the property. In order to get all children items created by the property browser in this call, the returned item should be traversed.

If the specified property is already added, this function does nothing and returns 0.

See also insertProperty(), QtProperty::addSubProperty(), and properties().

void QtAbstractPropertyBrowser::clear ()

Removes all the properties from the editor, but does not delete them since they can still be used in other editors.

See also removeProperty() and QtAbstractPropertyManager::clear().

QWidget * QtAbstractPropertyBrowser::createEditor ( QtProperty * property, QWidget * parent )   [virtual protected]

Creates an editing widget (with the given parent) for the given property according to the previously established associations between property managers and editor factories.

If the property is created by a property manager which was not associated with any of the existing factories in this property editor, the function returns 0.

To make a property editable in the property browser, the createEditor() function must be called to provide the property with a suitable editing widget.

Reimplement this function to provide additional decoration for the editing widgets created by the installed factories.

See also setFactoryForManager().

QtBrowserItem * QtAbstractPropertyBrowser::currentItem () const

Returns the current item in the property browser.

See also setCurrentItem().

void QtAbstractPropertyBrowser::currentItemChanged ( QtBrowserItem * current )   [signal]

This signal is emitted when the current item changes. The current item is specified by current.

See also QtAbstractPropertyBrowser::setCurrentItem().

QtBrowserItem * QtAbstractPropertyBrowser::insertProperty ( QtProperty * property, QtProperty * afterProperty )   [slot]

Inserts the given property (and its subproperties) after the specified afterProperty in the browser's list of top level properties. Returns item created by property browser which is associated with the property. In order to get all children items created by the property browser in this call returned item should be traversed.

If the specified afterProperty is 0, the given property is inserted at the beginning of the list. If property is already inserted, this function does nothing and returns 0.

See also addProperty(), QtProperty::insertSubProperty(), and properties().

void QtAbstractPropertyBrowser::itemChanged ( QtBrowserItem * item )   [pure virtual protected]

This function is called whenever a property's data changes, passing a pointer to the item of property as parameter.

This function must be reimplemented in derived classes in order to update the property browser widget whenever a property's name, tool tip, status tip, "what's this" text, value text or value icon changes.

Note that if the property browser contains several occurrences of the same property, this method will be called once for each occurrence (with a different item each time).

See also QtProperty and items().

void QtAbstractPropertyBrowser::itemInserted ( QtBrowserItem * insertedItem, QtBrowserItem * precedingItem )   [pure virtual protected]

This function is called to update the widget whenever a property is inserted or added to the property browser, passing pointers to the insertedItem of property and the specified precedingItem as parameters.

If precedingItem is 0, the insertedItem was put at the beginning of its parent item's list of subproperties. If the parent of insertedItem is 0, the insertedItem was added as a top level property of this property browser.

This function must be reimplemented in derived classes. Note that if the insertedItem's property has subproperties, this method will be called for those properties as soon as the current call is finished.

See also insertProperty() and addProperty().

void QtAbstractPropertyBrowser::itemRemoved ( QtBrowserItem * item )   [pure virtual protected]

This function is called to update the widget whenever a property is removed from the property browser, passing the pointer to the item of the property as parameters. The passed item is deleted just after this call is finished.

If the the parent of item is 0, the removed item was a top level property in this editor.

This function must be reimplemented in derived classes. Note that if the removed item's property has subproperties, this method will be called for those properties just before the current call is started.

See also removeProperty().

QList<QtBrowserItem *> QtAbstractPropertyBrowser::items ( QtProperty * property ) const

Returns the property browser's list of all items associated with the given property.

There is one item per instance of the property in the browser.

See also topLevelItem().

QList<QtProperty *> QtAbstractPropertyBrowser::properties () const

Returns the property browser's list of top level properties.

To traverse the subproperties, use the QtProperty::subProperties() function.

See also addProperty(), insertProperty(), and removeProperty().

void QtAbstractPropertyBrowser::removeProperty ( QtProperty * property )   [slot]

Removes the specified property (and its subproperties) from the property browser's list of top level properties. All items that were associated with the given property and its children are deleted.

Note that the properties are not deleted since they can still be used in other editors.

See also clear(), QtProperty::removeSubProperty(), and properties().

void QtAbstractPropertyBrowser::setCurrentItem ( QtBrowserItem * item )

Sets the current item in the property browser to item.

See also currentItem() and currentItemChanged().

void QtAbstractPropertyBrowser::setFactoryForManager ( PropertyManager * manager, QtAbstractEditorFactory<PropertyManager> * factory )

Connects the given manager to the given factory, ensuring that properties of the manager's type will be displayed with an editing widget suitable for their value.

For example:

 QtIntPropertyManager *intManager;
 QtDoublePropertyManager *doubleManager;

 QtProperty *myInteger = intManager->addProperty();
 QtProperty *myDouble = doubleManager->addProperty();

 QtSpinBoxFactory  *spinBoxFactory;
 QtDoubleSpinBoxFactory *doubleSpinBoxFactory;

 QtAbstractPropertyBrowser *editor;
 editor->setFactoryForManager(intManager, spinBoxFactory);
 editor->setFactoryForManager(doubleManager, doubleSpinBoxFactory);

 editor->addProperty(myInteger);
 editor->addProperty(myDouble);

In this example the myInteger property's value is displayed with a QSpinBox widget, while the myDouble property's value is displayed with a QDoubleSpinBox widget.

Note that a factory can be associated with many managers, but a manager can only be associated with one single factory. If the given manager already is associated with another factory, the old association is broken before the new one established.

This function ensures that the given manager and the given factory are compatible, and it automatically calls the QtAbstractEditorFactory::addPropertyManager() function if necessary.

See also unsetFactoryForManager().

QtBrowserItem * QtAbstractPropertyBrowser::topLevelItem ( QtProperty * property ) const

Returns the top-level items associated with the given property.

Returns 0 if property wasn't inserted into this property browser or isn't a top-level one.

See also topLevelItems() and items().

QList<QtBrowserItem *> QtAbstractPropertyBrowser::topLevelItems () const

Returns the list of top-level items.

See also topLevelItem().

void QtAbstractPropertyBrowser::unsetFactoryForManager ( QtAbstractPropertyManager * manager )

Removes the association between the given manager and the factory bound to it, automatically calling the QtAbstractEditorFactory::removePropertyManager() function if necessary.

See also setFactoryForManager().


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