qscriptable.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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 QSCRIPTABLE_H
  24. #define QSCRIPTABLE_H
  25. #include <QtCore/qobjectdefs.h>
  26. #include <QtCore/qscopedpointer.h>
  27. #include <QtScript/qtscriptglobal.h>
  28. QT_BEGIN_NAMESPACE
  29. #ifndef QT_NO_QOBJECT
  30. class QScriptEngine;
  31. class QScriptContext;
  32. class QScriptValue;
  33. class QScriptablePrivate;
  34. class Q_SCRIPT_EXPORT QScriptable
  35. {
  36. public:
  37. QScriptable();
  38. ~QScriptable();
  39. QScriptEngine *engine() const;
  40. QScriptContext *context() const;
  41. QScriptValue thisObject() const;
  42. int argumentCount() const;
  43. QScriptValue argument(int index) const;
  44. private:
  45. QScopedPointer<QScriptablePrivate> d_ptr;
  46. Q_DISABLE_COPY(QScriptable)
  47. Q_DECLARE_PRIVATE(QScriptable)
  48. };
  49. #endif // QT_NO_QOBJECT
  50. QT_END_NAMESPACE
  51. #endif // QSCRIPTABLE_H