2018-03-16 11:39:53 +00:00
|
|
|
// Copyright 2018 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2018-03-16 11:39:53 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2022-04-25 05:03:26 +00:00
|
|
|
#include <QWidget>
|
2018-03-16 11:39:53 +00:00
|
|
|
|
|
|
|
#include "Common/CommonTypes.h"
|
2019-07-16 03:20:26 +00:00
|
|
|
|
2022-04-24 04:25:42 +00:00
|
|
|
class QPoint;
|
2022-04-26 00:13:18 +00:00
|
|
|
class QScrollBar;
|
2022-04-24 04:25:42 +00:00
|
|
|
|
2019-07-16 03:20:26 +00:00
|
|
|
namespace AddressSpace
|
|
|
|
{
|
|
|
|
enum class Type;
|
|
|
|
}
|
2018-03-16 11:39:53 +00:00
|
|
|
|
2022-04-25 05:03:26 +00:00
|
|
|
class MemoryViewTable;
|
|
|
|
|
|
|
|
class MemoryViewWidget final : public QWidget
|
2018-03-16 11:39:53 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2022-04-06 09:36:09 +00:00
|
|
|
enum class Type : int
|
2018-03-16 11:39:53 +00:00
|
|
|
{
|
2022-06-29 18:27:44 +00:00
|
|
|
Null = 0,
|
2022-04-06 09:36:09 +00:00
|
|
|
Hex8 = 1,
|
|
|
|
Hex16,
|
|
|
|
Hex32,
|
2022-04-17 07:47:05 +00:00
|
|
|
Hex64,
|
2022-06-29 18:27:44 +00:00
|
|
|
HexString,
|
2022-04-06 09:36:09 +00:00
|
|
|
Unsigned8,
|
|
|
|
Unsigned16,
|
|
|
|
Unsigned32,
|
|
|
|
Signed8,
|
|
|
|
Signed16,
|
|
|
|
Signed32,
|
2018-03-16 11:39:53 +00:00
|
|
|
ASCII,
|
2022-04-06 09:36:09 +00:00
|
|
|
Float32,
|
|
|
|
Double
|
2018-03-16 11:39:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum class BPType
|
|
|
|
{
|
|
|
|
ReadWrite,
|
|
|
|
ReadOnly,
|
|
|
|
WriteOnly
|
|
|
|
};
|
|
|
|
|
|
|
|
explicit MemoryViewWidget(QWidget* parent = nullptr);
|
|
|
|
|
|
|
|
void Update();
|
2022-03-28 23:08:31 +00:00
|
|
|
void UpdateFont();
|
2022-04-24 04:25:42 +00:00
|
|
|
void ToggleBreakpoint(u32 addr, bool row);
|
2018-03-16 11:39:53 +00:00
|
|
|
|
2022-06-29 18:27:44 +00:00
|
|
|
std::vector<u8> ConvertTextToBytes(Type type, QString input_text);
|
2019-04-11 05:50:52 +00:00
|
|
|
void SetAddressSpace(AddressSpace::Type address_space);
|
|
|
|
AddressSpace::Type GetAddressSpace() const;
|
2022-04-07 05:50:05 +00:00
|
|
|
void SetDisplay(Type type, int bytes_per_row, int alignment, bool dual_view);
|
2018-03-16 11:39:53 +00:00
|
|
|
void SetBPType(BPType type);
|
|
|
|
void SetAddress(u32 address);
|
|
|
|
|
|
|
|
void SetBPLoggingEnabled(bool enabled);
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void BreakpointsChanged();
|
2018-12-28 18:12:30 +00:00
|
|
|
void ShowCode(u32 address);
|
2021-02-17 17:12:27 +00:00
|
|
|
void RequestWatch(QString name, u32 address);
|
2018-03-16 11:39:53 +00:00
|
|
|
|
|
|
|
private:
|
2022-04-24 04:25:42 +00:00
|
|
|
void OnContextMenu(const QPoint& pos);
|
|
|
|
void OnCopyAddress(u32 addr);
|
|
|
|
void OnCopyHex(u32 addr);
|
2022-04-07 05:50:05 +00:00
|
|
|
void UpdateBreakpointTags();
|
|
|
|
void UpdateColumns(Type type, int first_column);
|
2022-04-26 00:13:18 +00:00
|
|
|
void ScrollbarActionTriggered(int action);
|
|
|
|
void ScrollbarSliderReleased();
|
2018-03-16 11:39:53 +00:00
|
|
|
|
2022-04-25 05:03:26 +00:00
|
|
|
MemoryViewTable* m_table;
|
2022-04-26 00:13:18 +00:00
|
|
|
QScrollBar* m_scrollbar;
|
2019-07-16 03:20:26 +00:00
|
|
|
AddressSpace::Type m_address_space{};
|
2022-04-17 07:47:05 +00:00
|
|
|
Type m_type = Type::Hex32;
|
2018-03-16 11:39:53 +00:00
|
|
|
BPType m_bp_type = BPType::ReadWrite;
|
|
|
|
bool m_do_log = true;
|
|
|
|
u32 m_address = 0;
|
2022-03-28 23:08:31 +00:00
|
|
|
int m_font_width = 0;
|
|
|
|
int m_font_vspace = 0;
|
2022-04-06 09:36:09 +00:00
|
|
|
int m_bytes_per_row = 16;
|
|
|
|
int m_alignment = 16;
|
2022-04-07 05:50:05 +00:00
|
|
|
bool m_dual_view = false;
|
2022-04-25 05:03:26 +00:00
|
|
|
|
|
|
|
friend class MemoryViewTable;
|
2018-03-16 11:39:53 +00:00
|
|
|
};
|