mirror of
https://github.com/PCSX2/pcsx2.git
synced 2025-12-16 04:08:48 +00:00
Some checks are pending
🐧 Linux Builds / AppImage (push) Waiting to run
🐧 Linux Builds / Flatpak (push) Waiting to run
🍎 MacOS Builds / Defaults (push) Waiting to run
🖥️ Windows Builds / Lint VS Project Files (push) Waiting to run
🖥️ Windows Builds / SSE4 (push) Blocked by required conditions
🖥️ Windows Builds / AVX2 (push) Blocked by required conditions
🖥️ Windows Builds / CMake (push) Waiting to run
30 lines
560 B
C++
30 lines
560 B
C++
// SPDX-FileCopyrightText: 2002-2025 PCSX2 Dev Team
|
|
// SPDX-License-Identifier: GPL-3.0+
|
|
|
|
#pragma once
|
|
|
|
#include "ui_SavedAddressesView.h"
|
|
|
|
#include "SavedAddressesModel.h"
|
|
|
|
#include "Debugger/DebuggerView.h"
|
|
|
|
class SavedAddressesView : public DebuggerView
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
SavedAddressesView(const DebuggerViewParameters& parameters);
|
|
|
|
void openContextMenu(QPoint pos);
|
|
void contextPasteCSV();
|
|
void contextNew();
|
|
void addAddress(u32 address);
|
|
void saveToDebuggerSettings();
|
|
|
|
private:
|
|
Ui::SavedAddressesView m_ui;
|
|
|
|
SavedAddressesModel* m_model;
|
|
};
|