61 lines
1.3 KiB
C++
61 lines
1.3 KiB
C++
// Copyright 2017 Dolphin Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <functional>
|
|
|
|
#include <QDockWidget>
|
|
|
|
#include "Common/CommonTypes.h"
|
|
#include "DolphinQt/Debugger/RegisterColumn.h"
|
|
|
|
class QTableWidget;
|
|
class QCloseEvent;
|
|
class QShowEvent;
|
|
namespace Core
|
|
{
|
|
class System;
|
|
}
|
|
|
|
class RegisterWidget : public QDockWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit RegisterWidget(QWidget* parent = nullptr);
|
|
~RegisterWidget();
|
|
|
|
signals:
|
|
void RequestTableUpdate();
|
|
void RequestViewInCode(u32 addr);
|
|
void RequestViewInMemory(u32 addr);
|
|
void RequestMemoryBreakpoint(u32 addr);
|
|
void RequestWatch(QString name, u32 addr);
|
|
void UpdateTable();
|
|
void UpdateValue(QTableWidgetItem* item);
|
|
void UpdateValueType(QTableWidgetItem* item);
|
|
|
|
protected:
|
|
void closeEvent(QCloseEvent*) override;
|
|
void showEvent(QShowEvent* event) override;
|
|
|
|
private:
|
|
void CreateWidgets();
|
|
void ConnectWidgets();
|
|
void PopulateTable();
|
|
|
|
void ShowContextMenu();
|
|
void OnItemChanged(QTableWidgetItem* item);
|
|
|
|
void AddRegister(int row, int column, RegisterType type, std::string register_name,
|
|
std::function<u64()> get_reg, std::function<void(u64)> set_reg);
|
|
|
|
void AutoStep(const std::string& reg) const;
|
|
void Update();
|
|
|
|
Core::System& m_system;
|
|
|
|
QTableWidget* m_table;
|
|
bool m_updating = false;
|
|
};
|