rpcsx/rpcs3/rpcs3qt/kernel_explorer.h
Eladash 2005c89baa memory viewer: Implement RSX mode
* Set the ground for RSX modes of register editor and insttruction editor, do not use shared ptrs directly.
* Make register editor and instruction editor modeless to allow to copypaste values from thread context etc in the background.
2021-02-02 01:05:36 +03:00

37 lines
475 B
C++

#pragma once
#include <QDialog>
#include "util/types.hpp"
class QTreeWidget;
class kernel_explorer : public QDialog
{
Q_OBJECT
static const usz sys_size = 256;
enum additional_nodes
{
memory_containers = sys_size,
virtual_memory,
sockets,
ppu_threads,
spu_threads,
spu_thread_groups,
rsx_contexts,
file_descriptors,
process_info,
};
public:
kernel_explorer(QWidget* parent);
private:
QTreeWidget* m_tree;
private Q_SLOTS:
void Update();
};