X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fgui%2Fabout.h;h=90d825f03347cae5b185c5219d647dcd9c932e05;hb=240a6df48aebb5e17f82452c32e770cdfe9b5d5e;hp=7397e3b8a9679f185eac1b6ad909d248627f0dac;hpb=5da604521611a960140b58a2fb0f236c65610b70;p=virtualjaguar diff --git a/src/gui/about.h b/src/gui/about.h index 7397e3b..90d825f 100644 --- a/src/gui/about.h +++ b/src/gui/about.h @@ -1,20 +1,23 @@ // // 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 +#include class AboutWindow: public QWidget { public: AboutWindow(QWidget * parent = 0); + protected: + void keyPressEvent(QKeyEvent *); + private: QVBoxLayout * layout; QLabel * text; @@ -22,21 +25,3 @@ class AboutWindow: public QWidget }; #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