-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
74 lines (62 loc) · 1.5 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/*
Copyright (C) 2012 MoSync AB
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License,
version 2, as published by the Free Software Foundation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
MA 02110-1301, USA.
*/
/**
* @file main.cpp
* @author Bogdan Iusco
*
* @brief Application entry point.
*/
#include <MAUtil/Moblet.h>
#include "Controller/Controller.h"
namespace EuropeanCountries
{
/**
* Application moblet.
*/
class NativeUIMoblet : public MAUtil::Moblet
{
public:
/**
* Constructor.
*/
NativeUIMoblet()
{
mController = new EuropeanCountries::Controller();
}
/**
* Called when a key is pressed.
*/
void keyPressEvent(int keyCode, int nativeCode)
{
if (MAK_BACK == keyCode || MAK_0 == keyCode)
{
mController->backButtonPressed();
}
}
private:
/**
* Application controller.
*/
Controller* mController;
};
} // end of EuropeanCountries
/**
* Main function that is called when the program starts.
*/
extern "C" int MAMain()
{
MAUtil::Moblet::run(new EuropeanCountries::NativeUIMoblet());
return 0;
}