Home |
The QtVariantProperty class is a convenience class handling QVariant based properties. More...
#include <QtVariantProperty>
Inherits QtProperty.
The QtVariantProperty class is a convenience class handling QVariant based properties.
QtVariantProperty provides additional API: A property's type, value type, attribute values and current value can easily be retrieved using the propertyType(), valueType(), attributeValue() and value() functions respectively. In addition, the attribute values and the current value can be set using the corresponding setValue() and setAttribute() functions.
For example, instead of writing:
QtVariantPropertyManager *variantPropertyManager; QtProperty *property; variantPropertyManager->setValue(property, 10);
you can write:
QtVariantPropertyManager *variantPropertyManager; QtVariantProperty *property; property->setValue(10);
QtVariantProperty instances can only be created by the QtVariantPropertyManager class.
See also QtProperty, QtVariantPropertyManager, and QtVariantEditorFactory.
Creates a variant property using the given manager.
Do not use this constructor to create variant property instances; use the QtVariantPropertyManager::addProperty() function instead. This constructor is used internally by the QtVariantPropertyManager::createProperty() function.
See also QtVariantPropertyManager.
Destroys this property.
See also QtProperty::~QtProperty().
Returns this property's value for the specified attribute.
QtVariantPropertyManager provides a couple of related functions: attributes() and attributeType().
See also setAttribute().
Returns this property's type.
QtVariantPropertyManager provides several related functions: enumTypeId(), flagTypeId() and groupTypeId().
See also valueType().
Sets the attribute of property to value.
QtVariantPropertyManager provides the related setAttribute() function.
See also attributeValue().
Sets the value of this property to value.
The specified value must be of the type returned by valueType(), or of a type that can be converted to valueType() using the QVariant::canConvert() function; otherwise this function does nothing.
See also value().
Returns the property's current value.
See also valueType() and setValue().
Returns the type of this property's value.
See also propertyType().
Copyright © 2009 Nokia Corporation and/or its subsidiary(-ies) | Trademarks | Qt Solutions |