summaryrefslogtreecommitdiffstats
path: root/uisimulator
diff options
context:
space:
mode:
authorDominik Wenger <domonoky@googlemail.com>2009-10-28 17:56:00 +0000
committerDominik Wenger <domonoky@googlemail.com>2009-10-28 17:56:00 +0000
commite5086076a0071f4e02d87305355a968670594ec9 (patch)
treefeb84a6a9127e5966dc256edd7630ba766006942 /uisimulator
parentbee59000324bfd74a38d6d652dae62fc61b3b344 (diff)
downloadrockbox-e5086076a0071f4e02d87305355a968670594ec9.tar.gz
rockbox-e5086076a0071f4e02d87305355a968670594ec9.zip
make the mini2440 simulator compile.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23379 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator')
-rw-r--r--uisimulator/sdl/UI-mini2440.bmpbin0 -> 577320 bytes
-rw-r--r--uisimulator/sdl/button.c35
-rw-r--r--uisimulator/sdl/uisdl.h6
3 files changed, 41 insertions, 0 deletions
diff --git a/uisimulator/sdl/UI-mini2440.bmp b/uisimulator/sdl/UI-mini2440.bmp
new file mode 100644
index 0000000000..556026a5ca
--- /dev/null
+++ b/uisimulator/sdl/UI-mini2440.bmp
Binary files differ
diff --git a/uisimulator/sdl/button.c b/uisimulator/sdl/button.c
index f8889bafb8..3a6b9ce09f 100644
--- a/uisimulator/sdl/button.c
+++ b/uisimulator/sdl/button.c
@@ -1190,6 +1190,41 @@ void button_event(int key, bool pressed)
case SDLK_KP_PLUS:
new_btn = BUTTON_REC;
break;
+#elif CONFIG_KEYPAD == MINI2440_PAD
+ case SDLK_LEFT:
+ new_btn = BUTTON_LEFT;
+ break;
+ case SDLK_RIGHT:
+ new_btn = BUTTON_RIGHT;
+ break;
+ case SDLK_UP:
+ new_btn = BUTTON_UP;
+ break;
+ case SDLK_DOWN:
+ new_btn = BUTTON_DOWN;
+ break;
+ case SDLK_F8:
+ case SDLK_ESCAPE:
+ new_btn = BUTTON_POWER;
+ break;
+ case SDLK_KP_ENTER:
+ case SDLK_RETURN:
+ case SDLK_a:
+ new_btn = BUTTON_A;
+ break;
+ case SDLK_SPACE:
+ new_btn = BUTTON_SELECT;
+ break;
+ case SDLK_KP_PERIOD:
+ case SDLK_INSERT:
+ new_btn = BUTTON_MENU;
+ break;
+ case SDLK_KP_PLUS:
+ new_btn = BUTTON_VOL_UP;
+ break;
+ case SDLK_KP_MINUS:
+ new_btn = BUTTON_VOL_DOWN;
+ break;
#else
#error No keymap defined!
#endif /* CONFIG_KEYPAD */
diff --git a/uisimulator/sdl/uisdl.h b/uisimulator/sdl/uisdl.h
index 8e60735d05..911f2a3f50 100644
--- a/uisimulator/sdl/uisdl.h
+++ b/uisimulator/sdl/uisdl.h
@@ -353,6 +353,12 @@
#define UI_LCD_POSX 124 /* x position of lcd */
#define UI_LCD_POSY 42 /* y position of lcd */
+#elif defined(MINI2440)
+#define UI_TITLE "Mini2440"
+#define UI_WIDTH 441 /* width of GUI window */
+#define UI_HEIGHT 436 /* height of GUI window */
+#define UI_LCD_POSX 148 /* x position of lcd */
+#define UI_LCD_POSY 50 /* y position of lcd */
#else
#error no UI defines
#endif