2018-06-12 08:43:14 +00:00
|
|
|
#pragma once
|
|
|
|
|
2019-02-22 16:50:45 +00:00
|
|
|
#include "core/Cutter.h"
|
2018-06-12 08:43:14 +00:00
|
|
|
|
|
|
|
class MainWindow;
|
2018-12-21 20:36:40 +00:00
|
|
|
class QToolBar;
|
2018-06-12 08:43:14 +00:00
|
|
|
|
2018-12-21 20:36:40 +00:00
|
|
|
class DebugActions : public QObject
|
2018-06-12 08:43:14 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2018-12-21 20:36:40 +00:00
|
|
|
explicit DebugActions(QToolBar *toolBar, MainWindow *main);
|
|
|
|
|
|
|
|
void addToToolBar(QToolBar *toolBar);
|
|
|
|
|
2018-07-17 07:26:20 +00:00
|
|
|
QAction *actionStart;
|
|
|
|
QAction *actionStartEmul;
|
|
|
|
QAction *actionAttach;
|
|
|
|
QAction *actionContinue;
|
|
|
|
QAction *actionContinueUntilMain;
|
|
|
|
QAction *actionContinueUntilCall;
|
|
|
|
QAction *actionContinueUntilSyscall;
|
|
|
|
QAction *actionStep;
|
|
|
|
QAction *actionStepOver;
|
2018-07-30 06:55:39 +00:00
|
|
|
QAction *actionStepOut;
|
2018-07-31 17:16:05 +00:00
|
|
|
QAction *actionStop;
|
2018-10-03 11:30:12 +00:00
|
|
|
QAction *actionAllContinues;
|
2018-06-12 08:43:14 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
MainWindow *main;
|
2018-10-03 11:30:12 +00:00
|
|
|
QList<QAction *> allActions;
|
2018-06-12 08:43:14 +00:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void continueUntilMain();
|
2018-07-01 21:29:38 +00:00
|
|
|
void attachProcessDialog();
|
|
|
|
void attachProcess(int pid);
|
2018-10-03 11:30:12 +00:00
|
|
|
void setAllActionsVisible(bool visible);
|
2018-06-12 08:43:14 +00:00
|
|
|
};
|