pcsx2/pcsx2-qt/Debugger/StackView.h
chaoticgd 0ffb6d6362
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
Debugger: Rename DebuggerView subclasses
2025-04-14 18:48:36 -04:00

27 lines
442 B
C++

// SPDX-FileCopyrightText: 2002-2025 PCSX2 Dev Team
// SPDX-License-Identifier: GPL-3.0+
#pragma once
#include "ui_StackView.h"
#include "StackModel.h"
#include "DebuggerView.h"
class StackView final : public DebuggerView
{
Q_OBJECT
public:
StackView(const DebuggerViewParameters& parameters);
void openContextMenu(QPoint pos);
void onDoubleClick(const QModelIndex& index);
private:
Ui::StackView m_ui;
StackModel* m_model;
};