bsnes/qt/debugger/tools/breakpoint.moc.hpp

31 lines
494 B
C++
Executable File

class BreakpointItem : public QWidget {
Q_OBJECT
public:
QHBoxLayout *layout;
QCheckBox *enabled;
QLineEdit *addr;
QLineEdit *data;
QComboBox *mode;
QComboBox *source;
BreakpointItem(unsigned id);
public slots:
void toggle();
private:
const unsigned id;
};
class BreakpointEditor : public Window {
Q_OBJECT
public:
QVBoxLayout *layout;
BreakpointItem *breakpoint[SNES::Debugger::Breakpoints];
BreakpointEditor();
};
extern BreakpointEditor *breakpointEditor;