bsnes-plus/bsnes/ui-qt/debugger/ppu/cgram-viewer.moc.hpp
Marcus Rowe 64890654be Select VramViewer palette using a cgram widget
Also updated CgramViewer so that it uses the CgramWidget.
2016-10-23 22:09:06 +10:00

23 lines
351 B
C++

class CgramViewer : public Window {
Q_OBJECT
public:
CgramViewer();
void autoUpdate();
public slots:
void show();
void refresh();
private:
QHBoxLayout *layout;
QVBoxLayout *controlLayout;
QCheckBox *autoUpdateBox;
QPushButton *refreshButton;
CgramWidget *cgramWidget;
QLabel *colorInfo;
};
extern CgramViewer *cgramViewer;