qscriptvalue.h 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2015 The Qt Company Ltd.
  4. ** Contact: http://www.qt.io/licensing/
  5. **
  6. ** This file is part of the QtScript module of the Qt Toolkit.
  7. **
  8. ** $QT_BEGIN_LICENSE:LGPL-ONLY$
  9. ** GNU Lesser General Public License Usage
  10. ** This file may be used under the terms of the GNU Lesser
  11. ** General Public License version 2.1 as published by the Free Software
  12. ** Foundation and appearing in the file LICENSE.LGPL included in the
  13. ** packaging of this file. Please review the following information to
  14. ** ensure the GNU Lesser General Public License version 2.1 requirements
  15. ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
  16. **
  17. ** If you have questions regarding the use of this file, please contact
  18. ** us via http://www.qt.io/contact-us/.
  19. **
  20. ** $QT_END_LICENSE$
  21. **
  22. ****************************************************************************/
  23. #ifndef QSCRIPTVALUE_H
  24. #define QSCRIPTVALUE_H
  25. #include <QtCore/qstring.h>
  26. #include <QtCore/qlist.h>
  27. #include <QtCore/qsharedpointer.h>
  28. #include <QtScript/qtscriptglobal.h>
  29. QT_BEGIN_NAMESPACE
  30. class QScriptClass;
  31. class QScriptValue;
  32. class QScriptEngine;
  33. class QScriptString;
  34. class QVariant;
  35. class QObject;
  36. struct QMetaObject;
  37. class QDateTime;
  38. #ifndef QT_NO_REGEXP
  39. class QRegExp;
  40. #endif
  41. typedef QList<QScriptValue> QScriptValueList;
  42. typedef double qsreal;
  43. class QScriptValuePrivate;
  44. class QScriptEnginePrivate;
  45. struct QScriptValuePrivatePointerDeleter;
  46. class Q_SCRIPT_EXPORT QScriptValue
  47. {
  48. public:
  49. enum ResolveFlag {
  50. ResolveLocal = 0x00,
  51. ResolvePrototype = 0x01,
  52. ResolveScope = 0x02,
  53. ResolveFull = ResolvePrototype | ResolveScope
  54. };
  55. Q_DECLARE_FLAGS(ResolveFlags, ResolveFlag)
  56. enum PropertyFlag {
  57. ReadOnly = 0x00000001,
  58. Undeletable = 0x00000002,
  59. SkipInEnumeration = 0x00000004,
  60. PropertyGetter = 0x00000008,
  61. PropertySetter = 0x00000010,
  62. QObjectMember = 0x00000020,
  63. KeepExistingFlags = 0x00000800,
  64. UserRange = 0xff000000 // Users may use these as they see fit.
  65. };
  66. Q_DECLARE_FLAGS(PropertyFlags, PropertyFlag)
  67. enum SpecialValue {
  68. NullValue,
  69. UndefinedValue
  70. };
  71. public:
  72. QScriptValue();
  73. ~QScriptValue();
  74. QScriptValue(const QScriptValue &other);
  75. QScriptValue(QScriptEngine *engine, SpecialValue val);
  76. QScriptValue(QScriptEngine *engine, bool val);
  77. QScriptValue(QScriptEngine *engine, int val);
  78. QScriptValue(QScriptEngine *engine, uint val);
  79. QScriptValue(QScriptEngine *engine, qsreal val);
  80. QScriptValue(QScriptEngine *engine, const QString &val);
  81. #ifndef QT_NO_CAST_FROM_ASCII
  82. QT_ASCII_CAST_WARN QScriptValue(QScriptEngine *engine, const char *val);
  83. #endif
  84. QScriptValue(SpecialValue value);
  85. QScriptValue(bool value);
  86. QScriptValue(int value);
  87. QScriptValue(uint value);
  88. QScriptValue(qsreal value);
  89. QScriptValue(const QString &value);
  90. QScriptValue(const QLatin1String &value);
  91. #ifndef QT_NO_CAST_FROM_ASCII
  92. QT_ASCII_CAST_WARN QScriptValue(const char *value);
  93. #endif
  94. QScriptValue &operator=(const QScriptValue &other);
  95. QScriptEngine *engine() const;
  96. bool isValid() const;
  97. bool isBool() const;
  98. bool isBoolean() const;
  99. bool isNumber() const;
  100. bool isFunction() const;
  101. bool isNull() const;
  102. bool isString() const;
  103. bool isUndefined() const;
  104. bool isVariant() const;
  105. bool isQObject() const;
  106. bool isQMetaObject() const;
  107. bool isObject() const;
  108. bool isDate() const;
  109. bool isRegExp() const;
  110. bool isArray() const;
  111. bool isError() const;
  112. QString toString() const;
  113. qsreal toNumber() const;
  114. bool toBool() const;
  115. bool toBoolean() const;
  116. qsreal toInteger() const;
  117. qint32 toInt32() const;
  118. quint32 toUInt32() const;
  119. quint16 toUInt16() const;
  120. QVariant toVariant() const;
  121. QObject *toQObject() const;
  122. const QMetaObject *toQMetaObject() const;
  123. QScriptValue toObject() const;
  124. QDateTime toDateTime() const;
  125. #ifndef QT_NO_REGEXP
  126. QRegExp toRegExp() const;
  127. #endif
  128. bool instanceOf(const QScriptValue &other) const;
  129. bool lessThan(const QScriptValue &other) const;
  130. bool equals(const QScriptValue &other) const;
  131. bool strictlyEquals(const QScriptValue &other) const;
  132. QScriptValue prototype() const;
  133. void setPrototype(const QScriptValue &prototype);
  134. QScriptValue scope() const;
  135. void setScope(const QScriptValue &scope);
  136. QScriptValue property(const QString &name,
  137. const ResolveFlags &mode = ResolvePrototype) const;
  138. void setProperty(const QString &name, const QScriptValue &value,
  139. const PropertyFlags &flags = KeepExistingFlags);
  140. QScriptValue property(quint32 arrayIndex,
  141. const ResolveFlags &mode = ResolvePrototype) const;
  142. void setProperty(quint32 arrayIndex, const QScriptValue &value,
  143. const PropertyFlags &flags = KeepExistingFlags);
  144. QScriptValue property(const QScriptString &name,
  145. const ResolveFlags &mode = ResolvePrototype) const;
  146. void setProperty(const QScriptString &name, const QScriptValue &value,
  147. const PropertyFlags &flags = KeepExistingFlags);
  148. QScriptValue::PropertyFlags propertyFlags(
  149. const QString &name, const ResolveFlags &mode = ResolvePrototype) const;
  150. QScriptValue::PropertyFlags propertyFlags(
  151. const QScriptString &name, const ResolveFlags &mode = ResolvePrototype) const;
  152. QScriptValue call(const QScriptValue &thisObject = QScriptValue(),
  153. const QScriptValueList &args = QScriptValueList());
  154. QScriptValue call(const QScriptValue &thisObject,
  155. const QScriptValue &arguments);
  156. QScriptValue construct(const QScriptValueList &args = QScriptValueList());
  157. QScriptValue construct(const QScriptValue &arguments);
  158. QScriptValue data() const;
  159. void setData(const QScriptValue &data);
  160. QScriptClass *scriptClass() const;
  161. void setScriptClass(QScriptClass *scriptClass);
  162. qint64 objectId() const;
  163. private:
  164. // force compile error, prevent QScriptValue(bool) to be called
  165. QScriptValue(void *);
  166. // force compile error, prevent QScriptValue(QScriptEngine*, bool) to be called
  167. QScriptValue(QScriptEngine *, void *);
  168. QScriptValue(QScriptValuePrivate*);
  169. private:
  170. QExplicitlySharedDataPointer<QScriptValuePrivate> d_ptr;
  171. Q_DECLARE_PRIVATE(QScriptValue)
  172. friend class QScriptEnginePrivate;
  173. };
  174. Q_DECLARE_OPERATORS_FOR_FLAGS(QScriptValue::ResolveFlags)
  175. Q_DECLARE_OPERATORS_FOR_FLAGS(QScriptValue::PropertyFlags)
  176. QT_END_NAMESPACE
  177. #endif