]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/gui/mainwin.h
Added some icons, reconnected settings, added start of GUI control over
[virtualjaguar] / src / gui / mainwin.h
index 831b56bed704f33b119bd8cc094899b9b71743d0..781ac29fcd6ea6e2f43e724e23927374e0f1b882 100644 (file)
@@ -31,6 +31,11 @@ class MainWin: public QMainWindow
        private slots:
                void Open(void);
                void Timer(void);
+               void ToggleRunState(void);
+               void SetZoom100(void);
+               void SetZoom200(void);
+               void SetZoom300(void);
+               void ToggleBlur(void);
 
        private:
                void ReadSettings(void);
@@ -39,8 +44,17 @@ class MainWin: public QMainWindow
 //     public:
                GLWidget * videoWidget;
                QTimer * timer;
+               bool running;
 //             EditWindow * editWnd;
 //             CharWindow * charWnd;
+               QActionGroup * zoomActs;
+
+               QAction * action;
+               QAction * quitAppAct;
+               QAction * x1Act;
+               QAction * x2Act;
+               QAction * x3Act;
+               QAction * blurAct;
 };
 
 #endif // __MAINWIN_H__