QMetaProperty Class ReferenceThe QMetaProperty class provides meta-data about a property. Далее... #include <QMetaProperty>
Открытые функции
Подробное описаниеThe QMetaProperty class provides meta-data about a property. Property meta-data is obtained from an object's meta-object. See QMetaObject::property() and QMetaObject::propertyCount() for details. Property Meta-DataA property has a name() and a type(), as well as various attributes that specify its behavior: isReadable(), isWritable(), isDesignable(), isScriptable(), and isStored(). If the property is an enumeration, isEnumType() returns true; if the property is an enumeration that is also a flag (i.e. its values can be combined using the OR operator), isEnumType() and isFlagType() both return true. The enumerator for these types is available from enumerator(). The property's values are set and retrieved with read(), write(), and reset(); they can also be changed through QObject's set and get functions. See QObject::setProperty() and QObject::property() for details. Copying and AssignmentQMetaProperty objects can be copied by value. However, each copy will refer to the same underlying property meta-data. See also QMetaObject, QMetaEnum, QMetaMethod, and Qt's Property System. Описание функций-членовQMetaEnum QMetaProperty::enumerator () constReturns the enumerator if this property's type is an enumerator type; otherwise the returned value is undefined. See also isEnumType() and isFlagType(). bool QMetaProperty::hasNotifySignal () constReturns true if this property has a corresponding change notify signal; otherwise returns false. See also notifySignal(). bool QMetaProperty::isConstant () constReturns true if the property is constant; otherwise returns false. A property is constant if the Q_PROPERTY()'s CONSTANT attribute is set. Эта функция была введена в Qt 4.6. bool QMetaProperty::isDesignable ( const QObject * object = 0 ) constReturns true if this property is designable for the given object; otherwise returns false. If no object is given, the function returns false if the Q_PROPERTY()'s DESIGNABLE attribute is false; otherwise returns true (if the attribute is true or is a function or expression). See also isScriptable() and isStored(). bool QMetaProperty::isEnumType () constReturns true if the property's type is an enumeration value; otherwise returns false. See also enumerator() and isFlagType(). bool QMetaProperty::isFinal () constReturns true if the property is final; otherwise returns false. A property is final if the Q_PROPERTY()'s FINAL attribute is set. Эта функция была введена в Qt 4.6. bool QMetaProperty::isFlagType () constReturns true if the property's type is an enumeration value that is used as a flag; otherwise returns false. Flags can be combined using the OR operator. A flag type is implicitly also an enum type. See also isEnumType(), enumerator(), and QMetaEnum::isFlag(). bool QMetaProperty::isReadable () constReturns true if this property is readable; otherwise returns false. See also isWritable(), read(), and isValid(). bool QMetaProperty::isResettable () constReturns true if this property can be reset to a default value; otherwise returns false. See also reset(). bool QMetaProperty::isScriptable ( const QObject * object = 0 ) constReturns true if the property is scriptable for the given object; otherwise returns false. If no object is given, the function returns false if the Q_PROPERTY()'s SCRIPTABLE attribute is false; otherwise returns true (if the attribute is true or is a function or expression). See also isDesignable() and isStored(). bool QMetaProperty::isStored ( const QObject * object = 0 ) constReturns true if the property is stored for object; otherwise returns false. If no object is given, the function returns false if the Q_PROPERTY()'s STORED attribute is false; otherwise returns true (if the attribute is true or is a function or expression). See also isDesignable() and isScriptable(). bool QMetaProperty::isUser ( const QObject * object = 0 ) constReturns true if this property is designated as the USER property, i.e., the one that the user can edit for object or that is significant in some other way. Otherwise it returns false. e.g., the text property is the USER editable property of a QLineEdit. If object is null, the function returns false if the Q_PROPERTY()'s USER attribute is false. Otherwise it returns true. See also QMetaObject::userProperty(), isDesignable(), and isScriptable(). bool QMetaProperty::isValid () constReturns true if this property is valid (readable); otherwise returns false. See also isReadable(). bool QMetaProperty::isWritable () constReturns true if this property is writable; otherwise returns false. See also isReadable() and write(). const char * QMetaProperty::name () constReturns this property's name. See also type() and typeName(). QMetaMethod QMetaProperty::notifySignal () constReturns the QMetaMethod instance of the property change notifying signal if one was specified, otherwise returns an invalid QMetaMethod. Эта функция была введена в Qt 4.5. See also hasNotifySignal(). int QMetaProperty::notifySignalIndex () constReturns the index of the property change notifying signal if one was specified, otherwise returns -1. Эта функция была введена в Qt 4.6. See also hasNotifySignal(). int QMetaProperty::propertyIndex () constReturns this property's index. Эта функция была введена в Qt 4.6. QVariant QMetaProperty::read ( const QObject * object ) constReads the property's value from the given object. Returns the value if it was able to read it; otherwise returns an invalid variant. See also write(), reset(), and isReadable(). bool QMetaProperty::reset ( QObject * object ) constResets the property for the given object with a reset method. Returns true if the reset worked; otherwise returns false. Reset methods are optional; only a few properties support them. QVariant::Type QMetaProperty::type () constReturns this property's type. The return value is one of the values of the QVariant::Type enumeration. See also userType(), typeName(), and name(). const char * QMetaProperty::typeName () constReturns the name of this property's type. int QMetaProperty::userType () constReturns this property's user type. The return value is one of the values that are registered with QMetaType, or 0 if the type is not registered. Эта функция была введена в Qt 4.2. See also type(), QMetaType, and typeName(). bool QMetaProperty::write ( QObject * object, const QVariant & value ) constWrites value as the property's value to the given object. Returns true if the write succeeded; otherwise returns false. See also read(), reset(), and isWritable(). |
Попытка перевода Qt документации. Если есть желание присоединиться, или если есть замечания или пожелания, то заходите на форум: Перевод Qt документации на русский язык... Люди внесшие вклад в перевод: Команда переводчиков |