2017-09-27 06:53:05 +00:00
|
|
|
// Copyright 2017 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2017-09-27 06:53:05 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QDockWidget>
|
|
|
|
|
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
|
|
|
|
class QAction;
|
2020-03-21 07:48:49 +00:00
|
|
|
class QCloseEvent;
|
|
|
|
class QShowEvent;
|
2017-09-27 06:53:05 +00:00
|
|
|
class QTableWidget;
|
|
|
|
class QTableWidgetItem;
|
|
|
|
class QToolBar;
|
|
|
|
|
|
|
|
class WatchWidget : public QDockWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit WatchWidget(QWidget* parent = nullptr);
|
|
|
|
~WatchWidget();
|
|
|
|
|
|
|
|
void AddWatch(QString name, u32 addr);
|
|
|
|
signals:
|
|
|
|
void RequestMemoryBreakpoint(u32 addr);
|
2022-05-28 00:34:47 +00:00
|
|
|
void ShowMemory(u32 addr);
|
2017-09-27 06:53:05 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void closeEvent(QCloseEvent*) override;
|
2019-07-06 08:50:11 +00:00
|
|
|
void showEvent(QShowEvent* event) override;
|
2017-09-27 06:53:05 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
void CreateWidgets();
|
|
|
|
void ConnectWidgets();
|
|
|
|
|
2021-02-20 14:03:42 +00:00
|
|
|
void OnDelete();
|
|
|
|
void OnClear();
|
|
|
|
void OnNewWatch();
|
|
|
|
|
2017-09-27 06:53:05 +00:00
|
|
|
void OnLoad();
|
|
|
|
void OnSave();
|
|
|
|
|
2019-07-06 08:50:11 +00:00
|
|
|
void UpdateButtonsEnabled();
|
2017-09-27 06:53:05 +00:00
|
|
|
void Update();
|
|
|
|
|
|
|
|
void ShowContextMenu();
|
|
|
|
void OnItemChanged(QTableWidgetItem* item);
|
|
|
|
void DeleteWatch(int row);
|
|
|
|
void AddWatchBreakpoint(int row);
|
2022-05-28 00:34:47 +00:00
|
|
|
void ShowInMemory(int row);
|
2018-04-11 21:43:47 +00:00
|
|
|
void UpdateIcons();
|
|
|
|
|
2021-02-20 14:03:42 +00:00
|
|
|
QAction* m_new;
|
|
|
|
QAction* m_delete;
|
|
|
|
QAction* m_clear;
|
2017-09-27 06:53:05 +00:00
|
|
|
QAction* m_load;
|
|
|
|
QAction* m_save;
|
|
|
|
QToolBar* m_toolbar;
|
|
|
|
QTableWidget* m_table;
|
|
|
|
|
|
|
|
bool m_updating = false;
|
2019-06-28 21:04:23 +00:00
|
|
|
|
2019-09-30 21:38:36 +00:00
|
|
|
static constexpr int NUM_COLUMNS = 6;
|
2022-12-23 02:50:16 +00:00
|
|
|
static constexpr int COLUMN_INDEX_LABEL = 0;
|
|
|
|
static constexpr int COLUMN_INDEX_ADDRESS = 1;
|
|
|
|
static constexpr int COLUMN_INDEX_HEX = 2;
|
|
|
|
static constexpr int COLUMN_INDEX_DECIMAL = 3;
|
|
|
|
static constexpr int COLUMN_INDEX_STRING = 4;
|
|
|
|
static constexpr int COLUMN_INDEX_FLOAT = 5;
|
2017-09-27 06:53:05 +00:00
|
|
|
};
|