mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 21:39:52 +00:00
39 lines
592 B
C++
39 lines
592 B
C++
#ifndef CTRLVFPUVIEW_H
|
|
#define CTRLVFPUVIEW_H
|
|
|
|
#include <QWidget>
|
|
#include "Core/Debugger/DebugInterface.h"
|
|
|
|
class Debugger_Vfpu;
|
|
class CtrlVfpuView : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit CtrlVfpuView(QWidget *parent = 0);
|
|
|
|
void setParentWindow(Debugger_Vfpu* win)
|
|
{
|
|
parentWindow = win;
|
|
}
|
|
|
|
void setCPU(DebugInterface *deb)
|
|
{
|
|
cpu = deb;
|
|
}
|
|
DebugInterface *getCPU()
|
|
{
|
|
return cpu;
|
|
}
|
|
void setMode(int newMode);
|
|
void redraw();
|
|
protected:
|
|
void paintEvent(QPaintEvent *);
|
|
|
|
private:
|
|
DebugInterface *cpu;
|
|
Debugger_Vfpu* parentWindow;
|
|
int mode;
|
|
};
|
|
|
|
#endif // CTRLVFPUVIEW_H
|