qscriptengineagent.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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 QSCRIPTENGINEAGENT_H
  24. #define QSCRIPTENGINEAGENT_H
  25. #include <QtCore/qobjectdefs.h>
  26. #include <QtCore/qvariant.h>
  27. #include <QtCore/qscopedpointer.h>
  28. #include <QtScript/qtscriptglobal.h>
  29. QT_BEGIN_NAMESPACE
  30. class QScriptEngine;
  31. class QScriptValue;
  32. class QScriptEngineAgentPrivate;
  33. class Q_SCRIPT_EXPORT QScriptEngineAgent
  34. {
  35. public:
  36. enum Extension {
  37. DebuggerInvocationRequest
  38. };
  39. QScriptEngineAgent(QScriptEngine *engine);
  40. virtual ~QScriptEngineAgent();
  41. virtual void scriptLoad(qint64 id, const QString &program,
  42. const QString &fileName, int baseLineNumber);
  43. virtual void scriptUnload(qint64 id);
  44. virtual void contextPush();
  45. virtual void contextPop();
  46. virtual void functionEntry(qint64 scriptId);
  47. virtual void functionExit(qint64 scriptId,
  48. const QScriptValue &returnValue);
  49. virtual void positionChange(qint64 scriptId,
  50. int lineNumber, int columnNumber);
  51. virtual void exceptionThrow(qint64 scriptId,
  52. const QScriptValue &exception,
  53. bool hasHandler);
  54. virtual void exceptionCatch(qint64 scriptId,
  55. const QScriptValue &exception);
  56. virtual bool supportsExtension(Extension extension) const;
  57. virtual QVariant extension(Extension extension,
  58. const QVariant &argument = QVariant());
  59. QScriptEngine *engine() const;
  60. protected:
  61. QScriptEngineAgent(QScriptEngineAgentPrivate &dd, QScriptEngine *engine);
  62. QScopedPointer<QScriptEngineAgentPrivate> d_ptr;
  63. private:
  64. Q_DECLARE_PRIVATE(QScriptEngineAgent)
  65. Q_DISABLE_COPY(QScriptEngineAgent)
  66. };
  67. QT_END_NAMESPACE
  68. #endif