]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/gui/debug/cpubrowser.h
Minor update to debugger; added autoupdating to CPU/MEM windows.
[virtualjaguar] / src / gui / debug / cpubrowser.h
index 0ea0cdae99f3563f547db54b848eb6eb9390695c..1bf34426a27600a90972430caafd6f0a0c594a09 100644 (file)
@@ -8,7 +8,7 @@
 #ifndef __CPUBROWSER_H__
 #define __CPUBROWSER_H__
 
-#include <QtGui>
+#include <QtWidgets>
 #include <stdint.h>
 
 class CPUBrowserWindow: public QWidget
@@ -22,6 +22,9 @@ class CPUBrowserWindow: public QWidget
        public slots:
 //             void DefineAllKeys(void);
                void RefreshContents(void);
+               void HandleBPM(bool);
+               void HandleBPMAddress(const QString &);
+               void HandleBPMContinue(void);
 
        protected:
                void keyPressEvent(QKeyEvent *);
@@ -31,8 +34,11 @@ class CPUBrowserWindow: public QWidget
 //             QTextBrowser * text;
                QLabel * text;
                QPushButton * refresh;
+               QCheckBox * bpm;
+               QLineEdit * bpmAddress;
+               QPushButton * bpmContinue;
 
-               int32_t memBase;
+//             int32_t memBase;
 };
 
 #endif // __CPUBROWSER_H__