2023-12-31 02:05:16 +00:00
|
|
|
// SPDX-FileCopyrightText: 2002-2024 PCSX2 Dev Team
|
2024-07-30 11:42:36 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0+
|
2023-12-31 02:05:16 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QtCore/QAbstractTableModel>
|
|
|
|
#include <QtWidgets/QHeaderView>
|
|
|
|
|
|
|
|
#include "DebugTools/DebugInterface.h"
|
|
|
|
|
|
|
|
class SavedAddressesModel : public QAbstractTableModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
struct SavedAddress
|
|
|
|
{
|
|
|
|
u32 address;
|
|
|
|
QString label;
|
|
|
|
QString description;
|
|
|
|
};
|
|
|
|
|
2024-01-19 01:15:40 +00:00
|
|
|
enum HeaderColumns: int
|
2023-12-31 02:05:16 +00:00
|
|
|
{
|
|
|
|
ADDRESS = 0,
|
|
|
|
LABEL,
|
|
|
|
DESCRIPTION,
|
|
|
|
COLUMN_COUNT
|
|
|
|
};
|
|
|
|
|
|
|
|
static constexpr QHeaderView::ResizeMode HeaderResizeModes[HeaderColumns::COLUMN_COUNT] =
|
|
|
|
{
|
|
|
|
QHeaderView::ResizeMode::ResizeToContents,
|
|
|
|
QHeaderView::ResizeMode::ResizeToContents,
|
|
|
|
QHeaderView::ResizeMode::Stretch,
|
|
|
|
};
|
|
|
|
|
|
|
|
explicit SavedAddressesModel(DebugInterface& cpu, QObject* parent = nullptr);
|
|
|
|
QVariant data(const QModelIndex& index, int role) const override;
|
|
|
|
QVariant headerData(int section, Qt::Orientation orientation, int role) const override;
|
|
|
|
int rowCount(const QModelIndex& parent = QModelIndex()) const override;
|
|
|
|
int columnCount(const QModelIndex& parent = QModelIndex()) const override;
|
|
|
|
Qt::ItemFlags flags(const QModelIndex& index) const override;
|
|
|
|
void addRow();
|
|
|
|
void addRow(SavedAddress addresstoSave);
|
|
|
|
bool removeRows(int row, int count, const QModelIndex& parent = QModelIndex()) override;
|
|
|
|
bool setData(const QModelIndex& index, const QVariant& value, int role) override;
|
2024-01-19 01:15:40 +00:00
|
|
|
void loadSavedAddressFromFieldList(QStringList fields);
|
|
|
|
void clear();
|
2023-12-31 02:05:16 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
DebugInterface& m_cpu;
|
|
|
|
std::vector<SavedAddress> m_savedAddresses;
|
|
|
|
};
|