2018-02-14 22:25:01 +00:00
|
|
|
// Copyright 2018 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QDockWidget>
|
|
|
|
#include <QString>
|
|
|
|
|
2018-04-09 13:31:20 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2018-05-05 22:17:06 +00:00
|
|
|
#include "DolphinQt2/Debugger/CodeViewWidget.h"
|
2018-04-09 13:31:20 +00:00
|
|
|
|
2018-02-14 22:25:01 +00:00
|
|
|
class QCloseEvent;
|
|
|
|
class QLineEdit;
|
|
|
|
class QSplitter;
|
|
|
|
class QListWidget;
|
|
|
|
class QTableWidget;
|
|
|
|
struct Symbol;
|
|
|
|
|
|
|
|
class CodeWidget : public QDockWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit CodeWidget(QWidget* parent = nullptr);
|
|
|
|
~CodeWidget();
|
|
|
|
|
|
|
|
void Step();
|
|
|
|
void StepOver();
|
|
|
|
void StepOut();
|
|
|
|
void Skip();
|
|
|
|
void ShowPC();
|
|
|
|
void SetPC();
|
|
|
|
|
|
|
|
void ToggleBreakpoint();
|
|
|
|
void AddBreakpoint();
|
2018-05-05 22:17:06 +00:00
|
|
|
void SetAddress(u32 address, CodeViewWidget::SetAddressUpdate update);
|
2018-02-14 22:25:01 +00:00
|
|
|
|
2018-03-16 11:39:53 +00:00
|
|
|
void Update();
|
2018-05-11 20:38:32 +00:00
|
|
|
void UpdateSymbols();
|
2018-02-14 22:25:01 +00:00
|
|
|
signals:
|
|
|
|
void BreakpointsChanged();
|
2018-04-09 13:31:20 +00:00
|
|
|
void RequestPPCComparison(u32 addr);
|
2018-02-14 22:25:01 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
void CreateWidgets();
|
|
|
|
void ConnectWidgets();
|
|
|
|
void UpdateCallstack();
|
|
|
|
void UpdateFunctionCalls(Symbol* symbol);
|
|
|
|
void UpdateFunctionCallers(Symbol* symbol);
|
|
|
|
|
|
|
|
void OnSearchAddress();
|
|
|
|
void OnSearchSymbols();
|
|
|
|
void OnSelectSymbol();
|
|
|
|
void OnSelectCallstack();
|
|
|
|
void OnSelectFunctionCallers();
|
|
|
|
void OnSelectFunctionCalls();
|
|
|
|
|
|
|
|
void closeEvent(QCloseEvent*) override;
|
|
|
|
|
|
|
|
QLineEdit* m_search_address;
|
|
|
|
QLineEdit* m_search_symbols;
|
|
|
|
|
|
|
|
QListWidget* m_callstack_list;
|
|
|
|
QListWidget* m_symbols_list;
|
|
|
|
QListWidget* m_function_calls_list;
|
|
|
|
QListWidget* m_function_callers_list;
|
|
|
|
CodeViewWidget* m_code_view;
|
|
|
|
QSplitter* m_box_splitter;
|
|
|
|
QSplitter* m_code_splitter;
|
|
|
|
|
|
|
|
QString m_symbol_filter;
|
|
|
|
};
|