]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/gui/mainwin.h
Minor update to debugger; added autoupdating to CPU/MEM windows.
[virtualjaguar] / src / gui / mainwin.h
index c87ce997dd4ee1fe44ac96ebe83e86eae030dbfd..e9ff6c05d4327b5546dc2b9cb407c0af488f652f 100644 (file)
@@ -9,7 +9,7 @@
 #define __MAINWIN_H__
 
 //Hrm. uh??? I thought this wasn't the way to do this stuff...???
-#include <QtGui>
+#include <QtWidgets>
 #include "tom.h"
 
 #define RING_BUFFER_SIZE 32
@@ -92,7 +92,9 @@ class MainWin: public QMainWindow
                int zoomLevel;
                bool powerButtonOn;
                bool showUntunedTankCircuit;
+       public:
                bool cartridgeLoaded;
+       private:
                bool allowUnknownSoftware;
                bool CDActive;
 //             bool alpineLoadSuccessful;
@@ -100,6 +102,7 @@ class MainWin: public QMainWindow
                bool loadAndGo;
                bool keyHeld[8];
                bool fullScreen;
+               bool scannedSoftwareFolder;
        public:
                bool plzDontKillMyComputer;
                uint32_t oldTimestamp;
@@ -108,6 +111,7 @@ class MainWin: public QMainWindow
        private:
                QPoint mainWinPosition;
 //             QSize mainWinSize;
+               int lastEditedProfile;
                QMenu * fileMenu;
                QMenu * helpMenu;
                QMenu * debugMenu;
@@ -142,7 +146,9 @@ class MainWin: public QMainWindow
 
                QIcon powerGreen;
                QIcon powerRed;
+               QIcon blur;
                uint32_t testPattern[VIRTUAL_SCREEN_WIDTH * VIRTUAL_SCREEN_HEIGHT_PAL];
+               uint32_t testPattern2[VIRTUAL_SCREEN_WIDTH * VIRTUAL_SCREEN_HEIGHT_PAL];
 };
 
 #endif // __MAINWIN_H__