Computer Assisted Medical Intervention Tool Kit  version 6.0
Loading...
Searching...
No Matches
QtAbstractPropertyManager Class Referenceabstract

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

#include <qtpropertybrowser.h>

Signals

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

QtPropertyaddProperty (const QString &name=QString())
void clear () const
QSet< QtProperty * > properties () const
 QtAbstractPropertyManager (QObject *parent=nullptr)
 ~QtAbstractPropertyManager () override

Protected Member Functions

virtual QtPropertycreateProperty ()
virtual QString displayText (const QtProperty *property) const
virtual EchoMode echoMode (const QtProperty *) const
virtual bool hasValue (const QtProperty *property) const
virtual void initializeProperty (QtProperty *property)=0
virtual void uninitializeProperty (QtProperty *property)
virtual QIcon valueIcon (const QtProperty *property) const
virtual QString valueText (const QtProperty *property) const

Friends

class QtProperty

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, QtProperty

Constructor & Destructor Documentation

◆ QtAbstractPropertyManager()

QtAbstractPropertyManager::QtAbstractPropertyManager ( QObject * parent = nullptr)
explicit

Creates an abstract property manager with the given parent.

Referenced by QtVariantPropertyManager::attributeValue(), QtVariantPropertyManager::initializeProperty(), QtBoolPropertyManager::QtBoolPropertyManager(), QtCharPropertyManager::QtCharPropertyManager(), QtColorPropertyManager::QtColorPropertyManager(), QtCursorPropertyManager::QtCursorPropertyManager(), QtDatePropertyManager::QtDatePropertyManager(), QtDateTimePropertyManager::QtDateTimePropertyManager(), QtDoublePropertyManager::QtDoublePropertyManager(), QtEnumPropertyManager::QtEnumPropertyManager(), QtFlagPropertyManager::QtFlagPropertyManager(), QtFontPropertyManager::QtFontPropertyManager(), QtGroupPropertyManager::QtGroupPropertyManager(), QtIntPropertyManager::QtIntPropertyManager(), QtKeySequencePropertyManager::QtKeySequencePropertyManager(), QtLocalePropertyManager::QtLocalePropertyManager(), QtPointFPropertyManager::QtPointFPropertyManager(), QtPointPropertyManager::QtPointPropertyManager(), QtProperty, QtRectFPropertyManager::QtRectFPropertyManager(), QtRectPropertyManager::QtRectPropertyManager(), QtSizeFPropertyManager::QtSizeFPropertyManager(), QtSizePolicyPropertyManager::QtSizePolicyPropertyManager(), QtSizePropertyManager::QtSizePropertyManager(), QtStringPropertyManager::QtStringPropertyManager(), QtTimePropertyManager::QtTimePropertyManager(), QtVariantPropertyManager::QtVariantPropertyManager(), QtVector3DPropertyManager::QtVector3DPropertyManager(), QtVariantPropertyManager::setAttribute(), QtVariantPropertyManager::setAttribute(), QtVariantPropertyManager::setValue(), and QtVariantPropertyManager::value().

◆ ~QtAbstractPropertyManager()

QtAbstractPropertyManager::~QtAbstractPropertyManager ( )
override

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

References clear().

Member Function Documentation

◆ addProperty()

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(), properties()

References createProperty(), initializeProperty(), and QtProperty.

Referenced by QtVariantPropertyManager::addProperty(), QtVariantPropertyManager::initializeProperty(), and main().

◆ clear()

◆ createProperty()

QtProperty * QtAbstractPropertyManager::createProperty ( )
protectedvirtual

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(), initializeProperty()

Reimplemented in QtVariantPropertyManager.

References QtProperty.

Referenced by addProperty(), and initializeProperty().

◆ displayText()

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

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()

Reimplemented in QtStringPropertyManager.

References QtProperty.

Referenced by propertyDestroyed().

◆ echoMode()

EchoMode QtAbstractPropertyManager::echoMode ( const QtProperty * property) const
protectedvirtual

Returns the echo mode representing the current state of the given property.

The default implementation of this function returns QLineEdit::Normal.

See also
QtProperty::valueText()

Reimplemented in QtStringPropertyManager.

References QtProperty.

Referenced by propertyDestroyed().

◆ hasValue()

bool QtAbstractPropertyManager::hasValue ( const QtProperty * property) const
protectedvirtual

Returns whether the given property has a value.

The default implementation of this function returns true.

See also
QtProperty::hasValue()

Reimplemented in QtGroupPropertyManager, and QtVariantPropertyManager.

References QtProperty.

Referenced by QtProperty::hasValue(), and propertyDestroyed().

◆ initializeProperty()

virtual void QtAbstractPropertyManager::initializeProperty ( QtProperty * property)
protectedpure virtual

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
{QtIntPropertyManager::value()}{value},
{QtIntPropertyManager::minimum()}{minimum} and
{QtIntPropertyManager::maximum()}{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(), createProperty()

Implemented in DecoratedDoublePropertyManager, QtBoolPropertyManager, QtCharPropertyManager, QtColorPropertyManager, QtCursorPropertyManager, QtDatePropertyManager, QtDateTimePropertyManager, QtDoublePropertyManager, QtEnumPropertyManager, QtFlagPropertyManager, QtFontPropertyManager, QtGroupPropertyManager, QtIntPropertyManager, QtKeySequencePropertyManager, QtLocalePropertyManager, QtPointFPropertyManager, QtPointPropertyManager, QtRectFPropertyManager, QtRectPropertyManager, QtSizeFPropertyManager, QtSizePolicyPropertyManager, QtSizePropertyManager, QtStringPropertyManager, QtTimePropertyManager, QtVariantPropertyManager, QtVector3DPropertyManager, and VariantManager.

References createProperty(), QtProperty, and uninitializeProperty().

Referenced by addProperty().

◆ properties()

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

Returns the set of properties created by this manager.

See also
addProperty()

Referenced by clear().

◆ propertyChanged

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()

References QtProperty.

Referenced by QtRectFPropertyManager::setConstraint(), QtRectPropertyManager::setConstraint(), QtStringPropertyManager::setEchoMode(), QtEnumPropertyManager::setEnumIcons(), QtEnumPropertyManager::setEnumNames(), QtFlagPropertyManager::setFlagNames(), QtDatePropertyManager::setMaximum(), QtDoublePropertyManager::setMaximum(), QtIntPropertyManager::setMaximum(), QtSizeFPropertyManager::setMaximum(), QtSizePropertyManager::setMaximum(), QtDatePropertyManager::setMinimum(), QtDoublePropertyManager::setMinimum(), QtIntPropertyManager::setMinimum(), QtSizeFPropertyManager::setMinimum(), QtSizePropertyManager::setMinimum(), DecoratedDoublePropertyManager::setPrefix(), QtDatePropertyManager::setRange(), QtDoublePropertyManager::setRange(), QtIntPropertyManager::setRange(), QtSizeFPropertyManager::setRange(), QtSizePropertyManager::setRange(), QtDoublePropertyManager::setReadOnly(), QtIntPropertyManager::setReadOnly(), QtStringPropertyManager::setReadOnly(), DecoratedDoublePropertyManager::setSuffix(), QtBoolPropertyManager::setTextVisible(), QtBoolPropertyManager::setValue(), QtCharPropertyManager::setValue(), QtColorPropertyManager::setValue(), QtCursorPropertyManager::setValue(), QtDatePropertyManager::setValue(), QtDateTimePropertyManager::setValue(), QtDoublePropertyManager::setValue(), QtEnumPropertyManager::setValue(), QtFlagPropertyManager::setValue(), QtFontPropertyManager::setValue(), QtIntPropertyManager::setValue(), QtKeySequencePropertyManager::setValue(), QtLocalePropertyManager::setValue(), QtPointFPropertyManager::setValue(), QtPointPropertyManager::setValue(), QtRectFPropertyManager::setValue(), QtRectPropertyManager::setValue(), QtSizeFPropertyManager::setValue(), QtSizePolicyPropertyManager::setValue(), QtSizePropertyManager::setValue(), QtStringPropertyManager::setValue(), QtTimePropertyManager::setValue(), QtVector3DPropertyManager::setValue(), and VariantManager::setValue().

◆ propertyDestroyed

◆ propertyInserted

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()

References QtProperty.

Referenced by QtVariantPropertyManager::QtVariantPropertyManager().

◆ propertyRemoved

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()

References QtProperty.

Referenced by QtVariantPropertyManager::QtVariantPropertyManager().

◆ uninitializeProperty()

◆ valueIcon()

QIcon QtAbstractPropertyManager::valueIcon ( const QtProperty * property) const
protectedvirtual

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()

Reimplemented in QtBoolPropertyManager, QtColorPropertyManager, QtCursorPropertyManager, QtEnumPropertyManager, QtFontPropertyManager, and QtVariantPropertyManager.

References QtProperty.

Referenced by propertyDestroyed().

◆ valueText()

◆ QtProperty

friend class QtProperty
friend

References QtAbstractPropertyManager(), and QtProperty.

Referenced by addProperty(), QtVariantPropertyManager::addProperty(), QtVariantPropertyManager::attributeChanged(), QtVariantPropertyManager::attributeValue(), clear(), QtRectFPropertyManager::constraint(), QtRectPropertyManager::constraint(), QtRectFPropertyManager::constraintChanged(), QtRectPropertyManager::constraintChanged(), createProperty(), QtVariantPropertyManager::createProperty(), QtDoublePropertyManager::decimals(), QtPointFPropertyManager::decimals(), QtRectFPropertyManager::decimals(), QtSizeFPropertyManager::decimals(), QtVector3DPropertyManager::decimals(), QtDoublePropertyManager::decimalsChanged(), QtPointFPropertyManager::decimalsChanged(), QtRectFPropertyManager::decimalsChanged(), QtSizeFPropertyManager::decimalsChanged(), QtVector3DPropertyManager::decimalsChanged(), displayText(), QtStringPropertyManager::displayText(), echoMode(), QtStringPropertyManager::echoMode(), QtStringPropertyManager::echoModeChanged(), QtEnumPropertyManager::enumIcons(), QtEnumPropertyManager::enumIconsChanged(), QtEnumPropertyManager::enumNames(), QtEnumPropertyManager::enumNamesChanged(), QtFlagPropertyManager::flagNames(), QtFlagPropertyManager::flagNamesChanged(), hasValue(), QtGroupPropertyManager::hasValue(), QtVariantPropertyManager::hasValue(), DecoratedDoublePropertyManager::initializeProperty(), initializeProperty(), QtBoolPropertyManager::initializeProperty(), QtCharPropertyManager::initializeProperty(), QtColorPropertyManager::initializeProperty(), QtCursorPropertyManager::initializeProperty(), QtDatePropertyManager::initializeProperty(), QtDateTimePropertyManager::initializeProperty(), QtDoublePropertyManager::initializeProperty(), QtEnumPropertyManager::initializeProperty(), QtFlagPropertyManager::initializeProperty(), QtFontPropertyManager::initializeProperty(), QtGroupPropertyManager::initializeProperty(), QtIntPropertyManager::initializeProperty(), QtKeySequencePropertyManager::initializeProperty(), QtLocalePropertyManager::initializeProperty(), QtPointFPropertyManager::initializeProperty(), QtPointPropertyManager::initializeProperty(), QtRectFPropertyManager::initializeProperty(), QtRectPropertyManager::initializeProperty(), QtSizeFPropertyManager::initializeProperty(), QtSizePolicyPropertyManager::initializeProperty(), QtSizePropertyManager::initializeProperty(), QtStringPropertyManager::initializeProperty(), QtTimePropertyManager::initializeProperty(), QtVariantPropertyManager::initializeProperty(), QtVector3DPropertyManager::initializeProperty(), VariantManager::initializeProperty(), QtDoublePropertyManager::isReadOnly(), QtIntPropertyManager::isReadOnly(), QtStringPropertyManager::isReadOnly(), QtDatePropertyManager::maximum(), QtDoublePropertyManager::maximum(), QtIntPropertyManager::maximum(), QtSizeFPropertyManager::maximum(), QtSizePropertyManager::maximum(), QtDatePropertyManager::minimum(), QtDoublePropertyManager::minimum(), QtIntPropertyManager::minimum(), QtSizeFPropertyManager::minimum(), QtSizePropertyManager::minimum(), DecoratedDoublePropertyManager::prefix(), DecoratedDoublePropertyManager::prefixChanged(), propertyChanged(), propertyDestroyed(), propertyInserted(), propertyRemoved(), QtVariantPropertyManager::propertyType(), QtColorPropertyManager::QtColorPropertyManager(), QtFlagPropertyManager::QtFlagPropertyManager(), QtFontPropertyManager::QtFontPropertyManager(), QtLocalePropertyManager::QtLocalePropertyManager(), QtPointFPropertyManager::QtPointFPropertyManager(), QtPointPropertyManager::QtPointPropertyManager(), QtProperty, QtRectFPropertyManager::QtRectFPropertyManager(), QtRectPropertyManager::QtRectPropertyManager(), QtSizeFPropertyManager::QtSizeFPropertyManager(), QtSizePolicyPropertyManager::QtSizePolicyPropertyManager(), QtSizePropertyManager::QtSizePropertyManager(), QtVariantPropertyManager::QtVariantPropertyManager(), QtVector3DPropertyManager::QtVector3DPropertyManager(), QtDatePropertyManager::rangeChanged(), QtDoublePropertyManager::rangeChanged(), QtIntPropertyManager::rangeChanged(), QtSizeFPropertyManager::rangeChanged(), QtSizePropertyManager::rangeChanged(), QtDoublePropertyManager::readOnlyChanged(), QtIntPropertyManager::readOnlyChanged(), QtStringPropertyManager::readOnlyChanged(), QtStringPropertyManager::regExp(), QtStringPropertyManager::regExpChanged(), QtVariantPropertyManager::setAttribute(), QtVariantPropertyManager::setAttribute(), QtRectFPropertyManager::setConstraint(), QtRectPropertyManager::setConstraint(), QtDoublePropertyManager::setDecimals(), QtPointFPropertyManager::setDecimals(), QtRectFPropertyManager::setDecimals(), QtSizeFPropertyManager::setDecimals(), QtVector3DPropertyManager::setDecimals(), QtStringPropertyManager::setEchoMode(), QtEnumPropertyManager::setEnumIcons(), QtEnumPropertyManager::setEnumNames(), QtFlagPropertyManager::setFlagNames(), QtDatePropertyManager::setMaximum(), QtDoublePropertyManager::setMaximum(), QtIntPropertyManager::setMaximum(), QtSizeFPropertyManager::setMaximum(), QtSizePropertyManager::setMaximum(), QtDatePropertyManager::setMinimum(), QtDoublePropertyManager::setMinimum(), QtIntPropertyManager::setMinimum(), QtSizeFPropertyManager::setMinimum(), QtSizePropertyManager::setMinimum(), DecoratedDoublePropertyManager::setPrefix(), QtDatePropertyManager::setRange(), QtDoublePropertyManager::setRange(), QtIntPropertyManager::setRange(), QtSizeFPropertyManager::setRange(), QtSizePropertyManager::setRange(), QtDoublePropertyManager::setReadOnly(), QtIntPropertyManager::setReadOnly(), QtStringPropertyManager::setReadOnly(), QtStringPropertyManager::setRegExp(), QtDoublePropertyManager::setSingleStep(), QtIntPropertyManager::setSingleStep(), DecoratedDoublePropertyManager::setSuffix(), QtBoolPropertyManager::setTextVisible(), QtBoolPropertyManager::setValue(), QtCharPropertyManager::setValue(), QtColorPropertyManager::setValue(), QtCursorPropertyManager::setValue(), QtDatePropertyManager::setValue(), QtDateTimePropertyManager::setValue(), QtDoublePropertyManager::setValue(), QtEnumPropertyManager::setValue(), QtFlagPropertyManager::setValue(), QtFontPropertyManager::setValue(), QtIntPropertyManager::setValue(), QtKeySequencePropertyManager::setValue(), QtLocalePropertyManager::setValue(), QtPointFPropertyManager::setValue(), QtPointPropertyManager::setValue(), QtRectFPropertyManager::setValue(), QtRectPropertyManager::setValue(), QtSizeFPropertyManager::setValue(), QtSizePolicyPropertyManager::setValue(), QtSizePropertyManager::setValue(), QtStringPropertyManager::setValue(), QtTimePropertyManager::setValue(), QtVariantPropertyManager::setValue(), QtVector3DPropertyManager::setValue(), VariantManager::setValue(), QtDoublePropertyManager::singleStep(), QtIntPropertyManager::singleStep(), QtDoublePropertyManager::singleStepChanged(), QtIntPropertyManager::singleStepChanged(), DecoratedDoublePropertyManager::suffix(), DecoratedDoublePropertyManager::suffixChanged(), QtBoolPropertyManager::textVisible(), QtBoolPropertyManager::textVisibleChanged(), DecoratedDoublePropertyManager::uninitializeProperty(), uninitializeProperty(), QtBoolPropertyManager::uninitializeProperty(), QtCharPropertyManager::uninitializeProperty(), QtColorPropertyManager::uninitializeProperty(), QtCursorPropertyManager::uninitializeProperty(), QtDatePropertyManager::uninitializeProperty(), QtDateTimePropertyManager::uninitializeProperty(), QtDoublePropertyManager::uninitializeProperty(), QtEnumPropertyManager::uninitializeProperty(), QtFlagPropertyManager::uninitializeProperty(), QtFontPropertyManager::uninitializeProperty(), QtGroupPropertyManager::uninitializeProperty(), QtIntPropertyManager::uninitializeProperty(), QtKeySequencePropertyManager::uninitializeProperty(), QtLocalePropertyManager::uninitializeProperty(), QtPointFPropertyManager::uninitializeProperty(), QtPointPropertyManager::uninitializeProperty(), QtRectFPropertyManager::uninitializeProperty(), QtRectPropertyManager::uninitializeProperty(), QtSizeFPropertyManager::uninitializeProperty(), QtSizePolicyPropertyManager::uninitializeProperty(), QtSizePropertyManager::uninitializeProperty(), QtStringPropertyManager::uninitializeProperty(), QtTimePropertyManager::uninitializeProperty(), QtVariantPropertyManager::uninitializeProperty(), QtVector3DPropertyManager::uninitializeProperty(), VariantManager::uninitializeProperty(), QtBoolPropertyManager::value(), QtCharPropertyManager::value(), QtColorPropertyManager::value(), QtCursorPropertyManager::value(), QtDatePropertyManager::value(), QtDateTimePropertyManager::value(), QtDoublePropertyManager::value(), QtEnumPropertyManager::value(), QtFlagPropertyManager::value(), QtFontPropertyManager::value(), QtIntPropertyManager::value(), QtKeySequencePropertyManager::value(), QtLocalePropertyManager::value(), QtPointFPropertyManager::value(), QtPointPropertyManager::value(), QtRectFPropertyManager::value(), QtRectPropertyManager::value(), QtSizeFPropertyManager::value(), QtSizePolicyPropertyManager::value(), QtSizePropertyManager::value(), QtStringPropertyManager::value(), QtTimePropertyManager::value(), QtVariantPropertyManager::value(), QtVector3DPropertyManager::value(), VariantManager::value(), QtBoolPropertyManager::valueChanged(), QtCharPropertyManager::valueChanged(), QtColorPropertyManager::valueChanged(), QtCursorPropertyManager::valueChanged(), QtDatePropertyManager::valueChanged(), QtDateTimePropertyManager::valueChanged(), QtDoublePropertyManager::valueChanged(), QtEnumPropertyManager::valueChanged(), QtFlagPropertyManager::valueChanged(), QtFontPropertyManager::valueChanged(), QtIntPropertyManager::valueChanged(), QtKeySequencePropertyManager::valueChanged(), QtLocalePropertyManager::valueChanged(), QtPointFPropertyManager::valueChanged(), QtPointPropertyManager::valueChanged(), QtRectFPropertyManager::valueChanged(), QtRectPropertyManager::valueChanged(), QtSizeFPropertyManager::valueChanged(), QtSizePolicyPropertyManager::valueChanged(), QtSizePropertyManager::valueChanged(), QtStringPropertyManager::valueChanged(), QtTimePropertyManager::valueChanged(), QtVariantPropertyManager::valueChanged(), QtVector3DPropertyManager::valueChanged(), valueIcon(), QtBoolPropertyManager::valueIcon(), QtColorPropertyManager::valueIcon(), QtCursorPropertyManager::valueIcon(), QtEnumPropertyManager::valueIcon(), QtFontPropertyManager::valueIcon(), QtVariantPropertyManager::valueIcon(), DecoratedDoublePropertyManager::valueText(), valueText(), QtBoolPropertyManager::valueText(), QtCharPropertyManager::valueText(), QtColorPropertyManager::valueText(), QtCursorPropertyManager::valueText(), QtDatePropertyManager::valueText(), QtDateTimePropertyManager::valueText(), QtDoublePropertyManager::valueText(), QtEnumPropertyManager::valueText(), QtFlagPropertyManager::valueText(), QtFontPropertyManager::valueText(), QtIntPropertyManager::valueText(), QtKeySequencePropertyManager::valueText(), QtLocalePropertyManager::valueText(), QtPointFPropertyManager::valueText(), QtPointPropertyManager::valueText(), QtRectFPropertyManager::valueText(), QtRectPropertyManager::valueText(), QtSizeFPropertyManager::valueText(), QtSizePolicyPropertyManager::valueText(), QtSizePropertyManager::valueText(), QtStringPropertyManager::valueText(), QtTimePropertyManager::valueText(), QtVariantPropertyManager::valueText(), QtVector3DPropertyManager::valueText(), VariantManager::valueText(), QtVariantPropertyManager::valueType(), VariantManager::VariantManager(), QtVariantPropertyManager::variantProperty(), and QtGroupPropertyManager::~QtGroupPropertyManager().


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