X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fgui%2Fhelp.h;h=511a359cf79398f3ddab213b077d83ccdc9fbad3;hb=56f80e7876367f9da3cff765b46e842270d45a0d;hp=7b4b48e1b4e2c5ce7986906c9003d05801db48eb;hpb=2e3a9a7467a1740dff9985203f10f7bae01c9d0d;p=virtualjaguar diff --git a/src/gui/help.h b/src/gui/help.h index 7b4b48e..511a359 100644 --- a/src/gui/help.h +++ b/src/gui/help.h @@ -1,25 +1,26 @@ // // help.h: Built-in help system // -// by James L. Hammons +// by James Hammons // (C) 2011 Underground Software // #ifndef __HELP_H__ #define __HELP_H__ -#include +#include class HelpWindow: public QWidget { public: HelpWindow(QWidget * parent = 0); + protected: + void keyPressEvent(QKeyEvent *); + private: QVBoxLayout * layout; QTextBrowser * text; -// QLabel * text; -// QLabel * image; }; #endif // __HELP_H__