mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
FifoPlayer: Move instance to System.
This commit is contained in:
@ -9,6 +9,7 @@
|
||||
|
||||
#include "Common/CommonTypes.h"
|
||||
|
||||
class FifoPlayer;
|
||||
class QGroupBox;
|
||||
class QLabel;
|
||||
class QLineEdit;
|
||||
@ -23,7 +24,7 @@ class FIFOAnalyzer final : public QWidget
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit FIFOAnalyzer();
|
||||
explicit FIFOAnalyzer(FifoPlayer& fifo_player);
|
||||
~FIFOAnalyzer();
|
||||
|
||||
void Update();
|
||||
@ -42,6 +43,8 @@ private:
|
||||
void UpdateDetails();
|
||||
void UpdateDescription();
|
||||
|
||||
FifoPlayer& m_fifo_player;
|
||||
|
||||
QTreeWidget* m_tree_widget;
|
||||
QListWidget* m_detail_list;
|
||||
QTextBrowser* m_entry_detail_browser;
|
||||
|
Reference in New Issue
Block a user