Sistema l'errore da me commesso in fase di conversione...
[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  * This file is part of DevLib - See README.devlib for information.
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.4  2006/05/28 12:17:56  bernie
19  *#* Drop almost all the Qt3 cruft.
20  *#*
21  *#* Revision 1.3  2006/02/20 02:00:39  bernie
22  *#* Port to Qt 4.1.
23  *#*
24  *#* Revision 1.2  2006/01/16 03:51:51  bernie
25  *#* Fix boilerplate.
26  *#*
27  *#* Revision 1.1  2006/01/16 03:37:12  bernie
28  *#* Add emulator skeleton.
29  *#*
30  *#*/
31
32 #ifndef EMUL_EMULWIN_H
33 #define EMUL_EMULWIN_H
34
35 #include <QtGui/QMainWindow>
36
37 // fwd decls
38 class Emulator;
39
40 class EmulWin : public QMainWindow
41 {
42         Q_OBJECT
43
44 // construction
45 public:
46         EmulWin(Emulator *emul);
47         ~EmulWin();
48
49 protected:
50         void closeEvent(QCloseEvent *);
51
52 private slots:
53         void about();
54 };
55
56 #endif // EMUL_EMULWIN_H
57