Refactor BeRTOS to be in his own directory.
[bertos.git] / bertos / emul / emulwin.cpp
1 /**
2  * \file
3  * <!--
4  * This file is part of BeRTOS.
5  *
6  * Bertos is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  * As a special exception, you may use this file as part of a free software
21  * library without restriction.  Specifically, if other files instantiate
22  * templates or use macros or inline functions from this file, or you compile
23  * this file and link it with other files to produce an executable, this
24  * file does not by itself cause the resulting executable to be covered by
25  * the GNU General Public License.  This exception does not however
26  * invalidate any other reasons why the executable file might be covered by
27  * the GNU General Public License.
28  *
29  * Copyright 2006 Develer S.r.l. (http://www.develer.com/)
30  * Copyright 2000, 2001 Bernardo Innocenti <bernie@codewiz.org>
31  *
32  * -->
33  *
34  * \version $Id$
35  *
36  * \author Bernardo Innocenti <bernie@develer.com>
37  *
38  * \brief Main Qt window for embedded applications emulator (implementation)
39  */
40
41 #include "emulwin.h"
42
43 #include <drv/lcd_gfx_qt.h>
44 #include <emul/emul.h>
45 #include <emul/emulkbd.h>
46
47 #include <cassert>
48
49 #include <QtGui/QLayout>
50 #include <QtGui/QLabel>
51 #include <QtGui/QSlider>
52 #include <QtGui/QCheckBox>
53 #include <QtGui/QMenuBar>
54 #include <QtGui/QMessageBox>
55 #include <QtCore/QDateTime>
56 #include <QtCore/QTimer>
57 #include <QtGui/QApplication>
58 #include <QtGui/QCloseEvent>
59 using namespace Qt;
60
61 EmulWin::EmulWin(Emulator *e)
62 {
63         setWindowTitle(tr("BeRTOS Emul Demo"));
64         setAttribute(Qt::WA_DeleteOnClose);
65
66         // Create the menu bar
67         QMenu *file_menu = menuBar()->addMenu(tr("&File"));
68         file_menu->addAction(tr("&Quit"),
69                 e->emulApp, SLOT(closeAllWindows()), CTRL+Key_Q);
70
71         menuBar()->addSeparator();
72
73         QMenu *help_menu = menuBar()->addMenu(tr("&Help"));
74         help_menu->addAction(tr("&About"),
75                 this, SLOT(about()), Key_F1);
76
77         // Make a central widget to contain the other widgets
78         QWidget *central = new QWidget(this);
79         setCentralWidget(central);
80
81         // Create a layout to position the widgets
82         QHBoxLayout *box_main = new QHBoxLayout(central);
83
84         // Main layout
85         QVBoxLayout *box_right = new QVBoxLayout();
86         box_main->addLayout(box_right);
87
88                 // LCD
89                 QHBoxLayout *lay_lcd = new QHBoxLayout();
90                 box_right->addLayout(lay_lcd);
91                         lay_lcd->addStretch();
92                         lay_lcd->addWidget(e->emulLCD = new EmulLCD(central));
93                         lay_lcd->addStretch();
94
95                 // Keyboard
96                 box_right->addWidget(e->emulKbd = new EmulKbd(central));
97
98         // Setup keyboard: Label   Keycode     Row Col MRow MCol
99         e->emulKbd->addKey("^",    Key_Up,     0,  0,  0,   0);
100         e->emulKbd->addKey("v",    Key_Down,   1,  0,  0,   1);
101         e->emulKbd->addKey("OK",   Key_Return, 0,  1,  0,   2);
102         e->emulKbd->addKey("ESC",  Key_Escape, 1,  1,  0,   3);
103 }
104
105
106 EmulWin::~EmulWin()
107 {
108         emul->quit();
109 }
110
111
112 void EmulWin::closeEvent(QCloseEvent *ce)
113 {
114         emul->quit();
115         ce->accept();
116 }
117
118
119 void EmulWin::about()
120 {
121     QMessageBox::about(this,
122                 "BeRTOS Embedded Application Emulator",
123                 "Version 0.1\n"
124                 "Copyright 2006, 2008 Develer S.r.l. (http://www.develer.com/)\n"
125                 "Copyright 2001, 2002, 2003, 2005 Bernardo Innocenti <bernie@codewiz.org>\n"
126                 "All rights reserved."
127         );
128 }
129
130 #include "emulwin_moc.cpp"