summaryrefslogtreecommitdiff
path: root/uisimulator
diff options
context:
space:
mode:
authorMarcoen Hirschberg <marcoen@gmail.com>2008-03-27 11:29:24 +0000
committerMarcoen Hirschberg <marcoen@gmail.com>2008-03-27 11:29:24 +0000
commitc7e5d78241699500b18ce783607af7ae52ee021f (patch)
treea6aaf5c7d59fedf18fe944956c4e2c3b72cbd638 /uisimulator
parentbe40427baeacb88e27a4d8117addd60ca1fbc4c7 (diff)
downloadrockbox-c7e5d78241699500b18ce783607af7ae52ee021f.tar.gz
rockbox-c7e5d78241699500b18ce783607af7ae52ee021f.zip
initial Meizu M6SL port
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16844 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator')
-rw-r--r--uisimulator/sdl/button.c31
-rw-r--r--uisimulator/sdl/uisdl.h13
2 files changed, 44 insertions, 0 deletions
diff --git a/uisimulator/sdl/button.c b/uisimulator/sdl/button.c
index 03f7dc1e96..78be6700ec 100644
--- a/uisimulator/sdl/button.c
+++ b/uisimulator/sdl/button.c
@@ -772,6 +772,37 @@ void button_event(int key, bool pressed)
772 case SDLK_KP9: 772 case SDLK_KP9:
773 new_btn = BUTTON_MENU; 773 new_btn = BUTTON_MENU;
774 break; 774 break;
775
776#elif CONFIG_KEYPAD == MEIZU_M6SL_PAD
777 case SDLK_KP4:
778 case SDLK_LEFT:
779 new_btn = BUTTON_LEFT;
780 break;
781 case SDLK_KP6:
782 case SDLK_RIGHT:
783 new_btn = BUTTON_RIGHT;
784 break;
785 case SDLK_KP8:
786 case SDLK_UP:
787 new_btn = BUTTON_UP;
788 break;
789 case SDLK_KP2:
790 case SDLK_DOWN:
791 new_btn = BUTTON_DOWN;
792 break;
793 case SDLK_KP_ENTER:
794 case SDLK_RETURN:
795 case SDLK_a:
796 new_btn = BUTTON_PLAY;
797 break;
798 case SDLK_KP5:
799 case SDLK_SPACE:
800 new_btn = BUTTON_SELECT;
801 break;
802 case SDLK_KP_PERIOD:
803 case SDLK_INSERT:
804 new_btn = BUTTON_MENU;
805 break;
775#else 806#else
776#error No keymap defined! 807#error No keymap defined!
777#endif /* CONFIG_KEYPAD */ 808#endif /* CONFIG_KEYPAD */
diff --git a/uisimulator/sdl/uisdl.h b/uisimulator/sdl/uisdl.h
index 37989a682b..890c6d0638 100644
--- a/uisimulator/sdl/uisdl.h
+++ b/uisimulator/sdl/uisdl.h
@@ -374,6 +374,19 @@
374#define UI_LCD_FGCOLOR 0, 0, 0 /* foreground color of LCD (no backlight) */ 374#define UI_LCD_FGCOLOR 0, 0, 0 /* foreground color of LCD (no backlight) */
375#define UI_LCD_FGCOLORLIGHT 0, 0, 0 /* foreground color of LCD (backlight) */ 375#define UI_LCD_FGCOLORLIGHT 0, 0, 0 /* foreground color of LCD (backlight) */
376 376
377#elif defined(MEIZU_M6SL)
378#define UI_TITLE "Meizu M6"
379#define UI_WIDTH 512 /* width of GUI window */
380#define UI_HEIGHT 322 /* height of GUI window */
381#define UI_LCD_POSX 39 /* x position of lcd */
382#define UI_LCD_POSY 38 /* y position of lcd */
383#define UI_LCD_WIDTH 320
384#define UI_LCD_HEIGHT 240
385#define UI_LCD_BGCOLOR 32, 32, 32 /* bkgnd color of LCD (no backlight) */
386#define UI_LCD_BGCOLORLIGHT 192, 192, 192 /* bkgnd color of LCD (backlight) */
387#define UI_LCD_FGCOLOR 0, 0, 0 /* foreground color of LCD (no backlight) */
388#define UI_LCD_FGCOLORLIGHT 0, 0, 0 /* foreground color of LCD (backlight) */
389
377#endif 390#endif
378extern SDL_Surface *gui_surface; 391extern SDL_Surface *gui_surface;
379extern bool background; /* True if the background image is enabled */ 392extern bool background; /* True if the background image is enabled */