]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/gui/about.h
Added logging of GPU/DSP states on exit.
[virtualjaguar] / src / gui / about.h
index c4486516f0ff9a63a2cf5aaa778950978d195bb2..90d825f03347cae5b185c5219d647dcd9c932e05 100644 (file)
@@ -1,41 +1,27 @@
 //
 // about.h: Credits where credits are due ;-)
 //
-// by James L. Hammons
+// by James Hammons
 // (C) 2010 Underground Software
 //
 
 #ifndef __ABOUT_H__
 #define __ABOUT_H__
 
-#include <QtGui>
+#include <QtWidgets>
 
 class AboutWindow: public QWidget
 {
        public:
                AboutWindow(QWidget * parent = 0);
 
+       protected:
+               void keyPressEvent(QKeyEvent *);
+
        private:
                QVBoxLayout * layout;
                QLabel * text;
+               QLabel * image;
 };
 
 #endif // __ABOUT_H__
-
-
-#if 0
-class AboutWindow : public QbWindow {
-  Q_OBJECT
-
-public:
-  QVBoxLayout *layout;
-  struct Logo : public QWidget {
-    void paintEvent(QPaintEvent*);
-  } *logo;
-  QLabel *info;
-
-  AboutWindow();
-};
-
-extern AboutWindow *aboutWindow;
-#endif