Remove \version svn tag.
[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 Bernie Innocenti <bernie@codewiz.org>
31  *
32  * -->
33  *
34  *
35  * \author Bernie Innocenti <bernie@codewiz.org>
36  *
37  * \brief Main Qt window for embedded applications emulator (implementation)
38  */
39
40 #include "emulwin.h"
41
42 #include <drv/lcd_gfx_qt.h>
43 #include <emul/emul.h>
44 #include <emul/emulkbd.h>
45
46 #include <cassert>
47
48 #include <QtGui/QLayout>
49 #include <QtGui/QLabel>
50 #include <QtGui/QSlider>
51 #include <QtGui/QCheckBox>
52 #include <QtGui/QMenuBar>
53 #include <QtGui/QMessageBox>
54 #include <QtCore/QDateTime>
55 #include <QtCore/QTimer>
56 #include <QtGui/QApplication>
57 #include <QtGui/QCloseEvent>
58 using namespace Qt;
59
60 EmulWin::EmulWin(Emulator *e)
61 {
62         setWindowTitle(tr("BeRTOS Emul Demo"));
63         setAttribute(Qt::WA_DeleteOnClose);
64
65         // Create the menu bar
66         QMenu *file_menu = menuBar()->addMenu(tr("&File"));
67         file_menu->addAction(tr("&Quit"),
68                 e->emulApp, SLOT(closeAllWindows()), CTRL+Key_Q);
69
70         menuBar()->addSeparator();
71
72         QMenu *help_menu = menuBar()->addMenu(tr("&Help"));
73         help_menu->addAction(tr("&About"),
74                 this, SLOT(about()), Key_F1);
75
76         // Make a central widget to contain the other widgets
77         QWidget *central = new QWidget(this);
78         setCentralWidget(central);
79
80         // Create a layout to position the widgets
81         QHBoxLayout *box_main = new QHBoxLayout(central);
82
83         // Main layout
84         QVBoxLayout *box_right = new QVBoxLayout();
85         box_main->addLayout(box_right);
86
87                 // LCD
88                 QHBoxLayout *lay_lcd = new QHBoxLayout();
89                 box_right->addLayout(lay_lcd);
90                         lay_lcd->addStretch(1);
91                         lay_lcd->addWidget(e->emulLCD = new EmulLCD(central), 8);
92                         lay_lcd->addStretch(1);
93
94                 // Keyboard
95                 box_right->addWidget(e->emulKbd = new EmulKbd(central));
96
97         // Setup keyboard: Label   Keycode     Row Col MRow MCol
98         e->emulKbd->addKey("^",    Key_Up,     0,  0,  0,   0);
99         e->emulKbd->addKey("v",    Key_Down,   1,  0,  0,   1);
100         e->emulKbd->addKey("OK",   Key_Return, 0,  1,  0,   2);
101         e->emulKbd->addKey("ESC",  Key_Escape, 1,  1,  0,   3);
102 }
103
104
105 EmulWin::~EmulWin()
106 {
107         emul->quit();
108 }
109
110
111 void EmulWin::closeEvent(QCloseEvent *ce)
112 {
113         emul->quit();
114         ce->accept();
115 }
116
117
118 void EmulWin::about()
119 {
120     QMessageBox::about(this,
121                 "BeRTOS Embedded Application Emulator",
122                 "Version 0.1\n"
123                 "Copyright 2006, 2008 Develer S.r.l. (http://www.develer.com/)\n"
124                 "Copyright 2001, 2002, 2003, 2005 Bernie Innocenti <bernie@codewiz.org>\n"
125                 "All rights reserved."
126         );
127 }
128
129 #include "emulwin_moc.cpp"