bsnes-plus/bsnes/ui-qt/debugger/tools/properties.moc.hpp
devinacker 49d66ef630 add superfx to debug properties tab
(no actual stuff in it yet...)
2015-03-31 00:36:14 -04:00

41 lines
826 B
C++

class PropertiesWidget : public QWidget {
Q_OBJECT
public:
QVBoxLayout *layout;
QTreeWidget *list;
PropertiesWidget(SNES::ChipDebugger &object);
public slots:
void refresh();
private:
SNES::ChipDebugger &object;
};
class PropertiesViewer : public Window {
Q_OBJECT
public:
QVBoxLayout *layout;
QTabWidget *tabWidget;
QHBoxLayout *controlLayout;
QCheckBox *autoUpdateBox;
QPushButton *refreshButton;
void autoUpdate();
PropertiesViewer();
public slots:
void refresh();
void show();
};
extern PropertiesWidget *cpuPropertiesTab;
extern PropertiesWidget *smpPropertiesTab;
extern PropertiesWidget *ppuPropertiesTab;
extern PropertiesWidget *dspPropertiesTab;
extern PropertiesWidget *sa1PropertiesTab;
extern PropertiesWidget *sfxPropertiesTab;
extern PropertiesViewer *propertiesViewer;