Add emulator skeleton.
[bertos.git] / emul / emulwin.h
1 /**
2  * \file
3  * <!--
4  * Copyright 2006 Develer S.r.l. (http://www.develer.com/)
5  * Copyright 2000, 2001 Bernardo Innocenti <bernie@codewiz.org>
6  * All Rights Reserved.
7  * -->
8  *
9  * \version $Id$
10  *
11  * \author Bernardo Innocenti <bernie@develer.com>
12  *
13  * \brief Main Qt window for embedded applications emulator (interface)
14  */
15
16 /*#*
17  *#* $Log$
18  *#* Revision 1.1  2006/01/16 03:37:12  bernie
19  *#* Add emulator skeleton.
20  *#*
21  *#*/
22
23 #ifndef EMUL_EMULWIN_H
24 #define EMUL_EMULWIN_H
25
26 #include <qmainwindow.h>
27
28 // fwd decls
29 class Emulator;
30
31 class EmulWin : public QMainWindow
32 {
33         Q_OBJECT
34
35 // construction
36 public:
37         EmulWin(Emulator *emul);
38         ~EmulWin();
39
40 protected:
41         void closeEvent(QCloseEvent *);
42
43 private slots:
44         void about();
45 };
46
47 #endif // EMUL_EMULWIN_H
48