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