-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmainwidget.h
61 lines (48 loc) · 1.74 KB
/
mainwidget.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#ifndef WIDGET_H
#define WIDGET_H
#include <QWidget>
#include "debugmanager.h"
QT_BEGIN_NAMESPACE
namespace Ui { class MainWidget; }
QT_END_NAMESPACE
class MainWidget : public QWidget
{
Q_OBJECT
public:
MainWidget(QWidget *parent = nullptr);
~MainWidget();
private:
Ui::MainWidget *ui;
protected:
virtual void closeEvent(QCloseEvent *e);
private slots:
void executeGdbCommand();
void ensureTreeViewVisible(const QString& fullpath);
void setItemsEnable(bool en);
void enableGuiItems() { setItemsEnable(true); }
void disableGuiItems() { setItemsEnable(false); }
void updateSourceFiles();
bool openFile(const QString& fullpath);
void toggleBreakpointAt(const QString& file, int line);
void buttonAddWatchClicked();
void buttonDelWatchClicked();
void buttonClrWatchClicked();
void editorMarginClicked(int margin, int line, Qt::KeyboardModifiers);
void fileViewActivate(const QModelIndex& idx);
void stackTraceClicked(const QModelIndex& idx);
void startDebuggin();
void triggerUpdateContext();
void toggleRunStop();
void debugUpdateLocalVariables(const QList<gdb::Variable>& locals);
void debugUpdateCurrentFrame(const gdb::Frame& frame);
void debugUpdateThreads(int curr, const QList<gdb::Thread>& threads);
void debugUpdateStackFrame(const QList<gdb::Frame>& stackTrace);
void debugAsyncStopped(const gdb::AsyncContext &ctx);
void debugAsyncRunning();
void debugBreakInserted(const gdb::Breakpoint& bp);
void debugBreakRemoved(const gdb::Breakpoint& bp);
void debugVariableCreated(const gdb::Variable& var);
void debugVariableRemoved(const gdb::Variable& var);
void debugVariablesUpdate(const QStringList& changes);
};
#endif // WIDGET_H