qscriptclass.h 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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 QSCRIPTCLASS_H
  24. #define QSCRIPTCLASS_H
  25. #include <QtCore/qstring.h>
  26. #include <QtCore/qvariant.h>
  27. #include <QtCore/qscopedpointer.h>
  28. #include <QtScript/qscriptvalue.h>
  29. QT_BEGIN_NAMESPACE
  30. class QScriptString;
  31. class QScriptClassPropertyIterator;
  32. class QScriptClassPrivate;
  33. class Q_SCRIPT_EXPORT QScriptClass
  34. {
  35. public:
  36. enum QueryFlag {
  37. HandlesReadAccess = 0x01,
  38. HandlesWriteAccess = 0x02
  39. };
  40. Q_DECLARE_FLAGS(QueryFlags, QueryFlag)
  41. enum Extension {
  42. Callable,
  43. HasInstance
  44. };
  45. QScriptClass(QScriptEngine *engine);
  46. virtual ~QScriptClass();
  47. QScriptEngine *engine() const;
  48. virtual QueryFlags queryProperty(const QScriptValue &object,
  49. const QScriptString &name,
  50. QueryFlags flags, uint *id);
  51. virtual QScriptValue property(const QScriptValue &object,
  52. const QScriptString &name, uint id);
  53. virtual void setProperty(QScriptValue &object, const QScriptString &name,
  54. uint id, const QScriptValue &value);
  55. virtual QScriptValue::PropertyFlags propertyFlags(
  56. const QScriptValue &object, const QScriptString &name, uint id);
  57. virtual QScriptClassPropertyIterator *newIterator(const QScriptValue &object);
  58. virtual QScriptValue prototype() const;
  59. virtual QString name() const;
  60. virtual bool supportsExtension(Extension extension) const;
  61. virtual QVariant extension(Extension extension,
  62. const QVariant &argument = QVariant());
  63. protected:
  64. QScriptClass(QScriptEngine *engine, QScriptClassPrivate &dd);
  65. QScopedPointer<QScriptClassPrivate> d_ptr;
  66. private:
  67. Q_DECLARE_PRIVATE(QScriptClass)
  68. Q_DISABLE_COPY(QScriptClass)
  69. };
  70. Q_DECLARE_OPERATORS_FOR_FLAGS(QScriptClass::QueryFlags)
  71. QT_END_NAMESPACE
  72. #endif