qscriptcontextinfo.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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 QSCRIPTCONTEXTINFO_H
  24. #define QSCRIPTCONTEXTINFO_H
  25. #include <QtCore/qobjectdefs.h>
  26. #include <QtCore/qlist.h>
  27. #include <QtCore/qstringlist.h>
  28. #include <QtCore/qsharedpointer.h>
  29. #include <QtScript/qtscriptglobal.h>
  30. QT_BEGIN_NAMESPACE
  31. class QScriptContext;
  32. #ifndef QT_NO_DATASTREAM
  33. class QDataStream;
  34. #endif
  35. class QScriptContextInfoPrivate;
  36. class Q_SCRIPT_EXPORT QScriptContextInfo
  37. {
  38. public:
  39. #ifndef QT_NO_DATASTREAM
  40. friend Q_SCRIPT_EXPORT QDataStream &operator<<(QDataStream &, const QScriptContextInfo &);
  41. friend Q_SCRIPT_EXPORT QDataStream &operator>>(QDataStream &, QScriptContextInfo &);
  42. #endif
  43. enum FunctionType {
  44. ScriptFunction,
  45. QtFunction,
  46. QtPropertyFunction,
  47. NativeFunction
  48. };
  49. QScriptContextInfo(const QScriptContext *context);
  50. QScriptContextInfo(const QScriptContextInfo &other);
  51. QScriptContextInfo();
  52. ~QScriptContextInfo();
  53. QScriptContextInfo &operator=(const QScriptContextInfo &other);
  54. bool isNull() const;
  55. qint64 scriptId() const;
  56. QString fileName() const;
  57. int lineNumber() const;
  58. int columnNumber() const;
  59. QString functionName() const;
  60. FunctionType functionType() const;
  61. QStringList functionParameterNames() const;
  62. int functionStartLineNumber() const;
  63. int functionEndLineNumber() const;
  64. int functionMetaIndex() const;
  65. bool operator==(const QScriptContextInfo &other) const;
  66. bool operator!=(const QScriptContextInfo &other) const;
  67. private:
  68. QExplicitlySharedDataPointer<QScriptContextInfoPrivate> d_ptr;
  69. Q_DECLARE_PRIVATE(QScriptContextInfo)
  70. };
  71. typedef QList<QScriptContextInfo> QScriptContextInfoList;
  72. #ifndef QT_NO_DATASTREAM
  73. Q_SCRIPT_EXPORT QDataStream &operator<<(QDataStream &, const QScriptContextInfo &);
  74. Q_SCRIPT_EXPORT QDataStream &operator>>(QDataStream &, QScriptContextInfo &);
  75. #endif
  76. QT_END_NAMESPACE
  77. #endif