Qt:Документация 4.3.2/qscriptvalue
Материал из Wiki.crossplatform.ru
Внимание: Актуальная версия перевода документации находится здесь |
__NOTOC__
Главная · Все классы · Основные классы · Классы по группам · Модули · Функции |
[править] QScriptValue Class Reference
[ QtScript module]
The QScriptValue class acts as a container for the Qt Script data types. Далее...
#include <QScriptValue>
Класс был добавлен в Qt 4.3.
[править] Открытые типы
- enum PropertyFlag { ReadOnly, Undeletable, SkipInEnumeration, PropertyGetter, ..., UserRange }
- flags PropertyFlags
- enum ResolveFlag { ResolveLocal, ResolvePrototype, ResolveScope, ResolveFull }
- flags ResolveFlags
- enum SpecialValue { UndefinedValue, NullValue }
[править] Открытые функции
- QScriptValue ()
- QScriptValue ( const QScriptValue & other )
- QScriptValue ( QScriptEngine * engine, SpecialValue value )
- QScriptValue ( QScriptEngine * engine, bool value )
- QScriptValue ( QScriptEngine * engine, int value )
- QScriptValue ( QScriptEngine * engine, uint value )
- QScriptValue ( QScriptEngine * engine, qsreal value )
- QScriptValue ( QScriptEngine * engine, const QString & value )
- QScriptValue ( QScriptEngine * engine, const char * value )
- ~QScriptValue ()
- QScriptValue call ( const QScriptValue & thisObject = QScriptValue(), const QScriptValueList & args = QScriptValueList() )
- QScriptValue call ( const QScriptValue & thisObject, const QScriptValue & arguments )
- QScriptValue construct ( const QScriptValueList & args = QScriptValueList() )
- QScriptValue construct ( const QScriptValue & arguments )
- QScriptEngine * engine () const
- bool equals ( const QScriptValue & other ) const
- bool instanceOf ( const QScriptValue & other ) const
- bool isArray () const
- bool isBoolean () const
- bool isDate () const
- bool isError () const
- bool isFunction () const
- bool isNull () const
- bool isNumber () const
- bool isObject () const
- bool isQMetaObject () const
- bool isQObject () const
- bool isRegExp () const
- bool isString () const
- bool isUndefined () const
- bool isValid () const
- bool isVariant () const
- bool lessThan ( const QScriptValue & other ) const
- QScriptValue property ( const QString & name, const ResolveFlags & mode = ResolvePrototype ) const
- QScriptValue property ( quint32 arrayIndex, const ResolveFlags & mode = ResolvePrototype ) const
- QScriptValue::PropertyFlags propertyFlags ( const QString & name, const ResolveFlags & mode = ResolvePrototype ) const
- QScriptValue prototype () const
- void setProperty ( const QString & name, const QScriptValue & value, const PropertyFlags & flags = KeepExistingFlags )
- void setProperty ( quint32 arrayIndex, const QScriptValue & value, const PropertyFlags & flags = KeepExistingFlags )
- void setPrototype ( const QScriptValue & prototype )
- bool strictlyEquals ( const QScriptValue & other ) const
- bool toBoolean () const
- QDateTime toDateTime () const
- qint32 toInt32 () const
- qsreal toInteger () const
- qsreal toNumber () const
- QScriptValue toObject () const
- const QMetaObject * toQMetaObject () const
- QObject * toQObject () const
- QRegExp toRegExp () const
- QString toString () const
- quint16 toUInt16 () const
- quint32 toUInt32 () const
- QVariant toVariant () const
- QScriptValue & operator= ( const QScriptValue & other )
[править] Связанные не-члены
- T qscriptvalue_cast ( const QScriptValue & value )
[править] Подробное описание
The QScriptValue class acts as a container for the Qt Script data types.
QScriptValue supports the types defined in the ECMA-262 standard: The primitive types, which are Undefined, Null, Boolean, Number, and String; and the Object type. Additionally, Qt Script has built-in support for QVariant, QObject and QMetaObject.
For the object-based types (including Date and RegExp), use the newT() functions in QScriptEngine (e.g. QScriptEngine::newObject()) to create a QScriptValue of the desired type. For the primitive types, use one of the QScriptValue constructor overloads.
The methods named isT() (e.g. isBoolean(), isUndefined()) can be used to test if a value is of a certain type. The methods named toT() (e.g. toBoolean(), toString()) can be used to convert a QScriptValue to another type. You can also use the generic qscriptvalue_cast() function.
Object values have zero or more properties which are themselves QScriptValues. Use setProperty() to set a property of an object, and call property() to retrieve the value of a property.
Note that a QScriptValue for which isObject() is true only carries a reference to an actual object; copying the QScriptValue will only copy the object reference, not the object itself. If you want to clone an object (i.e. copy an object's properties to another object), you can do so with the help of a for-in statement in script code, or QScriptValueIterator in C++.
Object values have an internal prototype property, which can be accessed with prototype() and setPrototype(). Properties added to a prototype are shared by all objects having that prototype; this is referred to as prototype-based inheritance. For more information, see the QtScript documentation.
Function objects (objects for which isFunction() returns true) can be invoked by calling call(). Constructor functions can be used to construct new objects by calling construct().
Use equals(), strictlyEquals() and lessThan() to compare a QScriptValue to another.
See also QScriptEngine and QScriptValueIterator.
[править] Описание типов
[править] enum QScriptValue::PropertyFlag
flags QScriptValue::PropertyFlags
This enum describes the attributes of a property.
Константа | Значение | Описание |
---|---|---|
QScriptValue::ReadOnly | 0x00000001 | The property is read-only. Attempts by Qt Script code to write to the property will be ignored. |
QScriptValue::Undeletable | 0x00000002 | Attempts by Qt Script code to delete the property will be ignored. |
QScriptValue::SkipInEnumeration | 0x00000004 | The property is not to be enumerated by a for-in enumeration. |
QScriptValue::PropertyGetter | 0x00000008 | The property is defined by a function which will be called to get the property value. |
QScriptValue::PropertySetter | 0x00000010 | The property is defined by a function which will be called to set the property value. |
QScriptValue::QObjectMember | 0x00000020 | This flag is used to indicate that an existing property is a QObject member (a property or method). |
QScriptValue::KeepExistingFlags | 0x00000800 | This value is used to indicate to setProperty() that the property's flags should be left unchanged. If the property doesn't exist, the default flags (0) will be used. |
QScriptValue::UserRange | 0xff000000 | Flags in this range are not used by Qt Script, and can be used for custom purposes. |
The PropertyFlags type is a typedef for QFlags<PropertyFlag>. It stores an OR combination of PropertyFlag values.
[править] enum QScriptValue::ResolveFlag
flags QScriptValue::ResolveFlags
This enum specifies how to look up a property of an object.
Константа | Значение | Описание |
---|---|---|
QScriptValue::ResolveLocal | 0x00 | Only check the object's own properties. |
QScriptValue::ResolvePrototype | 0x01 | Check the object's own properties first, then search the prototype chain. Это значение и установлено по умолчанию. |
QScriptValue::ResolveScope | 0x02 | Check the object's own properties first, then search the scope chain. |
QScriptValue::ResolveFull | ResolvePrototype | ResolveScope | Check the object's own properties first, then search the prototype chain, and finally search the scope chain. |
The ResolveFlags type is a typedef for QFlags<ResolveFlag>. It stores an OR combination of ResolveFlag values.
[править] enum QScriptValue::SpecialValue
This enum is used to specify a single-valued type.
Константа | Значение | Описание |
---|---|---|
QScriptValue::UndefinedValue | 1 | An undefined value. |
QScriptValue::NullValue | 0 | A null value. |
[править] Описание функций-членов
[править] QScriptValue::QScriptValue ()
Constructs an invalid QScriptValue.
[править] QScriptValue::QScriptValue ( const QScriptValue & other )
Constructs a new QScriptValue that is a copy of other.
Note that if other is an object (i.e., isObject() would return true), then only a reference to the underlying object is copied into the new script value (i.e., the object itself is not copied).
[править] QScriptValue::QScriptValue ( QScriptEngine * engine, SpecialValue value )
Constructs a new QScriptValue with the special value and registers it with the script engine.
[править] QScriptValue::QScriptValue ( QScriptEngine * engine, bool value )
Constructs a new QScriptValue with the boolean value and registers it with the script engine.
[править] QScriptValue::QScriptValue ( QScriptEngine * engine, int value )
Constructs a new QScriptValue with the integer value and registers it with the script engine.
[править] QScriptValue::QScriptValue ( QScriptEngine * engine, uint value )
Constructs a new QScriptValue with the unsigned integer value and registers it with the script engine.
[править] QScriptValue::QScriptValue ( QScriptEngine * engine, qsreal value )
Constructs a new QScriptValue with the qsreal value and registers it with the script engine.
[править] QScriptValue::QScriptValue ( QScriptEngine * engine, const QString & value )
Constructs a new QScriptValue with the string value and registers it with the script engine.
[править] QScriptValue::QScriptValue ( QScriptEngine * engine, const char * value )
Constructs a new QScriptValue with the string value and registers it with the script engine.
[править] QScriptValue::~QScriptValue ()
Destroys this QScriptValue.
[править] QScriptValue QScriptValue::call ( const QScriptValue & thisObject = QScriptValue(), const QScriptValueList & args = QScriptValueList() )
Calls this QScriptValue as a function, using thisObject as the `this' object in the function call, and passing args as arguments to the function. Returns the value returned from the function.
If this QScriptValue is not a function, call() does nothing and returns an invalid QScriptValue.
Note that if thisObject is not an object, the global object (see QScriptEngine::globalObject()) will be used as the `this' object.
Calling call() can cause an exception to occur in the script engine; in that case, call() returns the value that was thrown (typically an Error object). You can call QScriptEngine::hasUncaughtException() to determine if an exception occurred.
See also construct().
[править] QScriptValue QScriptValue::call ( const QScriptValue & thisObject, const QScriptValue & arguments )
Эта перегруженная функция предоставлена для удобства.
Calls this QScriptValue as a function, using thisObject as the `this' object in the function call, and passing arguments as arguments to the function. Returns the value returned from the function.
If this QScriptValue is not a function, call() does nothing and returns an invalid QScriptValue.
arguments can be an arguments object, an array, null or undefined; any other type will cause a TypeError to be thrown.
Note that if thisObject is not an object, the global object (see QScriptEngine::globalObject()) will be used as the `this' object.
See also construct() and QScriptContext::argumentsObject().
[править] QScriptValue QScriptValue::construct ( const QScriptValueList & args = QScriptValueList() )
Creates a new Object and calls this QScriptValue as a constructor, using the created object as the `this' object and passing args as arguments. If the return value from the constructor call is an object, then that object is returned; otherwise the created object is returned.
If this QScriptValue is not a function, construct() does nothing and returns an invalid QScriptValue.
args can be an arguments object, an array, null or undefined; any other type will cause a TypeError to be thrown.
Calling construct() can cause an exception to occur in the script engine; in that case, construct() returns the value that was thrown (typically an Error object). You can call QScriptEngine::hasUncaughtException() to determine if an exception occurred.
See also call() and QScriptEngine::newObject().
[править] QScriptValue QScriptValue::construct ( const QScriptValue & arguments )
Эта перегруженная функция предоставлена для удобства.
Creates a new Object and calls this QScriptValue as a constructor, using the created object as the `this' object and passing arguments as arguments. If the return value from the constructor call is an object, then that object is returned; otherwise the created object is returned.
If this QScriptValue is not a function, construct() does nothing and returns an invalid QScriptValue.
arguments can be an arguments object, an array, null or undefined. Any other type will cause a TypeError to be thrown.
See also call(), QScriptEngine::newObject(), and QScriptContext::argumentsObject().
[править] QScriptEngine * QScriptValue::engine () const
Returns the QScriptEngine that created this QScriptValue, or 0 if this QScriptValue is invalid.
[править] bool QScriptValue::equals ( const QScriptValue & other ) const
Returns true if this QScriptValue is equal to other, otherwise returns false. The comparison follows the behavior described in ECMA-262 section 11.9.3, "The Abstract Equality Comparison Algorithm".
Note that if this QScriptValue or the other value are objects, calling this function has side effects on the script engine, since the engine will call the object's valueOf() function (and possibly toString()) in an attempt to convert the object to a primitive value (possibly resulting in an uncaught script exception).
See also strictlyEquals() and lessThan().
[править] bool QScriptValue::instanceOf ( const QScriptValue & other ) const
Returns true if this QScriptValue is an instance of other; otherwise returns false.
This QScriptValue is considered to be an instance of other if other is a function and the value of the prototype property of other is in the prototype chain of this QScriptValue.
[править] bool QScriptValue::isArray () const
Returns true if this QScriptValue is an object of the Array class; otherwise returns false.
See also QScriptEngine::newArray().
[править] bool QScriptValue::isBoolean () const
Returns true if this QScriptValue is of the primitive type Boolean; otherwise returns false.
See also toBoolean().
[править] bool QScriptValue::isDate () const
Returns true if this QScriptValue is an object of the Date class; otherwise returns false.
See also QScriptEngine::newDate().
[править] bool QScriptValue::isError () const
Returns true if this QScriptValue is an object of the Error class; otherwise returns false.
See also QScriptContext::throwError().
[править] bool QScriptValue::isFunction () const
Returns true if this QScriptValue is a function; otherwise returns false.
See also call().
[править] bool QScriptValue::isNull () const
Returns true if this QScriptValue is of the primitive type Null; otherwise returns false.
See also QScriptEngine::nullValue().
[править] bool QScriptValue::isNumber () const
Returns true if this QScriptValue is of the primitive type Number; otherwise returns false.
See also toNumber().
[править] bool QScriptValue::isObject () const
Returns true if this QScriptValue is of the Object type; otherwise returns false.
Note that function values, variant values, and QObject values are objects, so this function returns true for such values.
See also toObject() and QScriptEngine::newObject().
[править] bool QScriptValue::isQMetaObject () const
Returns true if this QScriptValue is a QMetaObject; otherwise returns false.
See also toQMetaObject() and QScriptEngine::newQMetaObject().
[править] bool QScriptValue::isQObject () const
Returns true if this QScriptValue is a QObject; otherwise returns false.
Note: This function returns true even if the QObject that this QScriptValue wraps has been deleted.
See also toQObject() and QScriptEngine::newQObject().
[править] bool QScriptValue::isRegExp () const
Returns true if this QScriptValue is an object of the RegExp class; otherwise returns false.
See also QScriptEngine::newRegExp().
[править] bool QScriptValue::isString () const
Returns true if this QScriptValue is of the primitive type String; otherwise returns false.
Смотрите также toString().
[править] bool QScriptValue::isUndefined () const
Returns true if this QScriptValue is of the primitive type Undefined; otherwise returns false.
See also QScriptEngine::undefinedValue().
[править] bool QScriptValue::isValid () const
Returns true if this QScriptValue is valid; otherwise returns false.
[править] bool QScriptValue::isVariant () const
Returns true if this QScriptValue is a variant value; otherwise returns false.
See also toVariant() and QScriptEngine::newVariant().
[править] bool QScriptValue::lessThan ( const QScriptValue & other ) const
Returns true if this QScriptValue is less than other, otherwise returns false. The comparison follows the behavior described in ECMA-262 section 11.8.5, "The Abstract Relational Comparison Algorithm".
Note that if this QScriptValue or the other value are objects, calling this function has side effects on the script engine, since the engine will call the object's valueOf() function (and possibly toString()) in an attempt to convert the object to a primitive value (possibly resulting in an uncaught script exception).
See also equals().
[править] QScriptValue QScriptValue::property ( const QString & name, const ResolveFlags & mode = ResolvePrototype ) const
Returns the value of this QScriptValue's property with the given name, using the given mode to resolve the property.
If no such property exists, an invalid QScriptValue is returned.
If the property is implemented using a getter function (i.e. has the PropertyGetter flag set), calling property() has side-effects on the script engine, since the getter function will be called (possibly resulting in an uncaught script exception). If an exception occurred, property() returns the value that was thrown (typically an Error object).
See also setProperty() and propertyFlags().
[править] QScriptValue QScriptValue::property ( quint32 arrayIndex, const ResolveFlags & mode = ResolvePrototype ) const
Эта перегруженная функция предоставлена для удобства.
Returns the property at the given arrayIndex, using the given mode to resolve the property.
This function is provided for convenience and performance when working with array objects.
If this QScriptValue is not an Array object, this function behaves as if property() was called with the string representation of arrayIndex.
[править] QScriptValue::PropertyFlags QScriptValue::propertyFlags ( const QString & name, const ResolveFlags & mode = ResolvePrototype ) const
Returns the flags of the property with the given name, using the given mode to resolve the property.
See also property().
[править] QScriptValue QScriptValue::prototype () const
If this QScriptValue is an object, returns the internal prototype (__proto__ property) of this object; otherwise returns an invalid QScriptValue.
See also setPrototype() and isObject().
[править] void QScriptValue::setProperty ( const QString & name, const QScriptValue & value, const PropertyFlags & flags = KeepExistingFlags )
Sets the value of this QScriptValue's property with the given name to the given value.
If this QScriptValue is not an object, this function does nothing.
If this QScriptValue does not already have a property with name name, a new property is created; the given flags then specify how this property may be accessed by script code.
If value is invalid, the property is removed.
If the property is implemented using a setter function (i.e. has the PropertySetter flag set), calling setProperty() has side-effects on the script engine, since the setter function will be called with the given value as argument (possibly resulting in an uncaught script exception).
Note that you cannot specify custom getter or setter functions for built-in properties, such as the length property of Array objects or meta properties of QObject objects.
See also property().
[править] void QScriptValue::setProperty ( quint32 arrayIndex, const QScriptValue & value, const PropertyFlags & flags = KeepExistingFlags )
Эта перегруженная функция предоставлена для удобства.
Sets the property at the given arrayIndex to the given value.
This function is provided for convenience and performance when working with array objects.
If this QScriptValue is not an Array object, this function behaves as if setProperty() was called with the string representation of arrayIndex.
[править] void QScriptValue::setPrototype ( const QScriptValue & prototype )
If this QScriptValue is an object, sets the internal prototype (__proto__ property) of this object to be prototype; otherwise does nothing.
The internal prototype should not be confused with the public property with name "prototype"; the public prototype is usually only set on functions that act as constructors.
See also prototype() and isObject().
[править] bool QScriptValue::strictlyEquals ( const QScriptValue & other ) const
Returns true if this QScriptValue is equal to other using strict comparison (no conversion), otherwise returns false. The comparison follows the behavior described in ECMA-262 section 11.9.6, "The Strict Equality Comparison Algorithm".
See also equals().
[править] bool QScriptValue::toBoolean () const
Returns the boolean value of this QScriptValue, using the conversion rules described in ECMA-262 section 9.2, "ToBoolean".
Note that if this QScriptValue is an object, calling this function has side effects on the script engine, since the engine will call the object's valueOf() function (and possibly toString()) in an attempt to convert the object to a primitive value (possibly resulting in an uncaught script exception).
See also isBoolean().
[править] QDateTime QScriptValue::toDateTime () const
Returns the QDateTime representation of this value. If this QScriptValue is not a date, or the value of the date is NaN (Not-a-Number), an invalid QDateTime is returned.
See also isDate().
[править] qint32 QScriptValue::toInt32 () const
Returns the signed 32-bit integer value of this QScriptValue, using the conversion rules described in ECMA-262 section 9.5, "ToInt32".
Note that if this QScriptValue is an object, calling this function has side effects on the script engine, since the engine will call the object's valueOf() function (and possibly toString()) in an attempt to convert the object to a primitive value (possibly resulting in an uncaught script exception).
See also toNumber() and toUInt32().
[править] qsreal QScriptValue::toInteger () const
Returns the integer value of this QScriptValue, using the conversion rules described in ECMA-262 section 9.4, "ToInteger".
Note that if this QScriptValue is an object, calling this function has side effects on the script engine, since the engine will call the object's valueOf() function (and possibly toString()) in an attempt to convert the object to a primitive value (possibly resulting in an uncaught script exception).
See also toNumber().
[править] qsreal QScriptValue::toNumber () const
Returns the number value of this QScriptValue, as defined in ECMA-262 section 9.3, "ToNumber".
Note that if this QScriptValue is an object, calling this function has side effects on the script engine, since the engine will call the object's valueOf() function (and possibly toString()) in an attempt to convert the object to a primitive value (possibly resulting in an uncaught script exception).
See also isNumber(), toInteger(), toInt32(), toUInt32(), and toUInt16().
[править] QScriptValue QScriptValue::toObject () const
Returns the object value of this QScriptValue, if it can be converted to an object; otherwise returns an invalid QScriptValue. The conversion is performed according to the following table:
Input Type | Result |
---|---|
Undefined | An invalid QScriptValue. |
Null | An invalid QScriptValue. |
Boolean | A new Boolean object whose internal value is set to the value of the boolean. |
Number | A new Number object whose internal value is set to the value of the number. |
String | A new String object whose internal value is set to the value of the string. |
Object | The result is the object itself (no conversion). |
See also isObject() and QScriptEngine::newObject().
[править] const QMetaObject * QScriptValue::toQMetaObject () const
If this QScriptValue is a QMetaObject, returns the QMetaObject pointer that the QScriptValue represents; otherwise, returns 0.
See also isQMetaObject().
[править] QObject * QScriptValue::toQObject () const
If this QScriptValue is a QObject, returns the QObject pointer that the QScriptValue represents; otherwise, returns 0.
If the QObject that this QScriptValue wraps has been deleted, this function returns 0 (i.e. it is possible for toQObject() to return 0 even when isQObject() returns true).
See also isQObject().
[править] QRegExp QScriptValue::toRegExp () const
Returns the QRegExp representation of this value. If this QScriptValue is not a regular expression, an empty QRegExp is returned.
See also isRegExp().
[править] QString QScriptValue::toString () const
Returns the string value of this QScriptValue, as defined in ECMA-262 section 9.8, "ToString".
Note that if this QScriptValue is an object, calling this function has side effects on the script engine, since the engine will call the object's toString() function (and possibly valueOf()) in an attempt to convert the object to a primitive value (possibly resulting in an uncaught script exception).
See also isString().
[править] quint16 QScriptValue::toUInt16 () const
Returns the unsigned 16-bit integer value of this QScriptValue, using the conversion rules described in ECMA-262 section 9.7, "ToUint16".
Note that if this QScriptValue is an object, calling this function has side effects on the script engine, since the engine will call the object's valueOf() function (and possibly toString()) in an attempt to convert the object to a primitive value (possibly resulting in an uncaught script exception).
See also toNumber().
[править] quint32 QScriptValue::toUInt32 () const
Returns the unsigned 32-bit integer value of this QScriptValue, using the conversion rules described in ECMA-262 section 9.6, "ToUint32".
Note that if this QScriptValue is an object, calling this function has side effects on the script engine, since the engine will call the object's valueOf() function (and possibly toString()) in an attempt to convert the object to a primitive value (possibly resulting in an uncaught script exception).
See also toNumber() and toInt32().
[править] QVariant QScriptValue::toVariant () const
Returns the QVariant value of this QScriptValue, if it can be converted to a QVariant; otherwise returns an invalid QVariant. The conversion is performed according to the following table:
Input Type | Result |
---|---|
Undefined | An invalid QVariant. |
Null | An invalid QVariant. |
Boolean | A QVariant containing the value of the boolean. |
Number | A QVariant containing the value of the number. |
String | A QVariant containing the value of the string. |
QVariant Object | The result is the QVariant value of the object (no conversion). |
QObject Object | A QVariant containing a pointer to the QObject. |
Date Object | A QVariant containing the date value ( toDateTime()). |
RegExp Object | A QVariant containing the regular expression value ( toRegExp()). |
Object | If the value is primitive, then the result is converted to a QVariant according to the above rules; otherwise, an invalid QVariant is returned. |
See also isVariant().
[править] QScriptValue & QScriptValue::operator= ( const QScriptValue & other )
Assigns the other value to this QScriptValue.
Note that if other is an object ( isObject() returns true), only a reference to the underlying object will be assigned; the object itself will not be copied.
[править] Связанные не-члены
[править] T qscriptvalue_cast ( const QScriptValue & value )
Returns the given value converted to the template type T.
Эта функция была введена в Qt 4.3.
See also qScriptRegisterMetaType() and QScriptEngine::toScriptValue().
Copyright © 2007 Trolltech | Trademarks | Qt 4.3.2
|