emulwin.h

Go to the documentation of this file.
00001 
00041 /*#*
00042  *#* $Log$
00043  *#* Revision 1.4  2006/05/28 12:17:56  bernie
00044  *#* Drop almost all the Qt3 cruft.
00045  *#*
00046  *#* Revision 1.3  2006/02/20 02:00:39  bernie
00047  *#* Port to Qt 4.1.
00048  *#*
00049  *#* Revision 1.2  2006/01/16 03:51:51  bernie
00050  *#* Fix boilerplate.
00051  *#*
00052  *#* Revision 1.1  2006/01/16 03:37:12  bernie
00053  *#* Add emulator skeleton.
00054  *#*
00055  *#*/
00056 
00057 #ifndef EMUL_EMULWIN_H
00058 #define EMUL_EMULWIN_H
00059 
00060 #include <QtGui/QMainWindow>
00061 
00062 // fwd decls
00063 class Emulator;
00064 
00065 class EmulWin : public QMainWindow
00066 {
00067     Q_OBJECT
00068 
00069 // construction
00070 public:
00071     EmulWin(Emulator *emul);
00072     ~EmulWin();
00073 
00074 protected:
00075     void closeEvent(QCloseEvent *);
00076 
00077 private slots:
00078     void about();
00079 };
00080 
00081 #endif // EMUL_EMULWIN_H
00082