mirror of
https://github.com/devinacker/bsnes-plus.git
synced 2025-04-02 10:52:46 -04:00
23 lines
351 B
C++
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;
|