qscriptcontext.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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 QSCRIPTCONTEXT_H
  24. #define QSCRIPTCONTEXT_H
  25. #include <QtCore/qobjectdefs.h>
  26. #include <QtScript/qscriptvalue.h>
  27. QT_BEGIN_NAMESPACE
  28. class QScriptContextPrivate;
  29. class Q_SCRIPT_EXPORT QScriptContext
  30. {
  31. public:
  32. enum ExecutionState {
  33. NormalState,
  34. ExceptionState
  35. };
  36. enum Error {
  37. UnknownError,
  38. ReferenceError,
  39. SyntaxError,
  40. TypeError,
  41. RangeError,
  42. URIError
  43. };
  44. ~QScriptContext();
  45. QScriptContext *parentContext() const;
  46. QScriptEngine *engine() const;
  47. ExecutionState state() const;
  48. QScriptValue callee() const;
  49. int argumentCount() const;
  50. QScriptValue argument(int index) const;
  51. QScriptValue argumentsObject() const;
  52. QScriptValueList scopeChain() const;
  53. void pushScope(const QScriptValue &object);
  54. QScriptValue popScope();
  55. QScriptValue returnValue() const;
  56. void setReturnValue(const QScriptValue &result);
  57. QScriptValue activationObject() const;
  58. void setActivationObject(const QScriptValue &activation);
  59. QScriptValue thisObject() const;
  60. void setThisObject(const QScriptValue &thisObject);
  61. bool isCalledAsConstructor() const;
  62. QScriptValue throwValue(const QScriptValue &value);
  63. QScriptValue throwError(Error error, const QString &text);
  64. QScriptValue throwError(const QString &text);
  65. QStringList backtrace() const;
  66. QString toString() const;
  67. private:
  68. QScriptContext();
  69. QScriptContextPrivate *d_ptr;
  70. Q_DECLARE_PRIVATE(QScriptContext)
  71. Q_DISABLE_COPY(QScriptContext)
  72. };
  73. QT_END_NAMESPACE
  74. #endif