qscriptenginedebugger.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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 QtSCriptTools module of the Qt Toolkit.
  7. **
  8. ** $QT_BEGIN_LICENSE:LGPL21$
  9. ** Commercial License Usage
  10. ** Licensees holding valid commercial Qt licenses may use this file in
  11. ** accordance with the commercial license agreement provided with the
  12. ** Software or, alternatively, in accordance with the terms contained in
  13. ** a written agreement between you and The Qt Company. For licensing terms
  14. ** and conditions see http://www.qt.io/terms-conditions. For further
  15. ** information use the contact form at http://www.qt.io/contact-us.
  16. **
  17. ** GNU Lesser General Public License Usage
  18. ** Alternatively, this file may be used under the terms of the GNU Lesser
  19. ** General Public License version 2.1 or version 3 as published by the Free
  20. ** Software Foundation and appearing in the file LICENSE.LGPLv21 and
  21. ** LICENSE.LGPLv3 included in the packaging of this file. Please review the
  22. ** following information to ensure the GNU Lesser General Public License
  23. ** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
  24. ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
  25. **
  26. ** As a special exception, The Qt Company gives you certain additional
  27. ** rights. These rights are described in The Qt Company LGPL Exception
  28. ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
  29. **
  30. ** $QT_END_LICENSE$
  31. **
  32. ****************************************************************************/
  33. #ifndef QSCRIPTENGINEDEBUGGER_H
  34. #define QSCRIPTENGINEDEBUGGER_H
  35. #include <QtCore/qobject.h>
  36. #include <QtScript/qtscriptglobal.h>
  37. QT_BEGIN_NAMESPACE
  38. class QAction;
  39. class QScriptEngine;
  40. class QWidget;
  41. #ifndef QT_NO_MAINWINDOW
  42. class QMainWindow;
  43. #endif
  44. class QMenu;
  45. class QToolBar;
  46. class QScriptEngineDebuggerPrivate;
  47. class Q_SCRIPTTOOLS_EXPORT QScriptEngineDebugger : public QObject
  48. {
  49. Q_OBJECT
  50. public:
  51. enum DebuggerWidget {
  52. ConsoleWidget,
  53. StackWidget,
  54. ScriptsWidget,
  55. LocalsWidget,
  56. CodeWidget,
  57. CodeFinderWidget,
  58. BreakpointsWidget,
  59. DebugOutputWidget,
  60. ErrorLogWidget
  61. };
  62. enum DebuggerAction {
  63. InterruptAction,
  64. ContinueAction,
  65. StepIntoAction,
  66. StepOverAction,
  67. StepOutAction,
  68. RunToCursorAction,
  69. RunToNewScriptAction,
  70. ToggleBreakpointAction,
  71. ClearDebugOutputAction,
  72. ClearErrorLogAction,
  73. ClearConsoleAction,
  74. FindInScriptAction,
  75. FindNextInScriptAction,
  76. FindPreviousInScriptAction,
  77. GoToLineAction
  78. };
  79. enum DebuggerState {
  80. RunningState,
  81. SuspendedState
  82. };
  83. explicit QScriptEngineDebugger(QObject *parent = Q_NULLPTR);
  84. ~QScriptEngineDebugger();
  85. void attachTo(QScriptEngine *engine);
  86. void detach();
  87. bool autoShowStandardWindow() const;
  88. void setAutoShowStandardWindow(bool autoShow);
  89. #ifndef QT_NO_MAINWINDOW
  90. QMainWindow *standardWindow() const;
  91. #endif
  92. QToolBar *createStandardToolBar(QWidget *parent = Q_NULLPTR);
  93. QMenu *createStandardMenu(QWidget *parent = Q_NULLPTR);
  94. QWidget *widget(DebuggerWidget widget) const;
  95. QAction *action(DebuggerAction action) const;
  96. DebuggerState state() const;
  97. Q_SIGNALS:
  98. void evaluationSuspended();
  99. void evaluationResumed();
  100. private:
  101. Q_DECLARE_PRIVATE(QScriptEngineDebugger)
  102. Q_DISABLE_COPY(QScriptEngineDebugger)
  103. Q_PRIVATE_SLOT(d_func(), void _q_showStandardWindow())
  104. };
  105. QT_END_NAMESPACE
  106. #endif