]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/gui/debug/cpubrowser.h
Replace QtGui includes with QtWidgets, add QT += widgets for qmake
[virtualjaguar] / src / gui / debug / cpubrowser.h
index 0ea0cdae99f3563f547db54b848eb6eb9390695c..04fa775773bc6de175bd8dc28d5ad69a10c0a081 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,8 @@ class CPUBrowserWindow: public QWidget
        public slots:
 //             void DefineAllKeys(void);
                void RefreshContents(void);
+               void HandleBPM(bool);
+               void HandleBPMAddress(const QString &);
 
        protected:
                void keyPressEvent(QKeyEvent *);
@@ -31,8 +33,10 @@ class CPUBrowserWindow: public QWidget
 //             QTextBrowser * text;
                QLabel * text;
                QPushButton * refresh;
+               QCheckBox * bpm;
+               QLineEdit * bpmAddress;
 
-               int32_t memBase;
+//             int32_t memBase;
 };
 
 #endif // __CPUBROWSER_H__