diff options
| author | Marcoen Hirschberg <marcoen@gmail.com> | 2006-02-24 15:42:52 +0000 |
|---|---|---|
| committer | Marcoen Hirschberg <marcoen@gmail.com> | 2006-02-24 15:42:52 +0000 |
| commit | 338e2bbb0c6673452c64378ef9e609d5c19c7558 (patch) | |
| tree | 7314096e43a7eedfd7091c39fed97c0c33400827 /uisimulator | |
| parent | b902428180c11def61f2d3caa2612b9f80d7d41a (diff) | |
| download | rockbox-338e2bbb0c6673452c64378ef9e609d5c19c7558.zip rockbox-338e2bbb0c6673452c64378ef9e609d5c19c7558.tar.gz rockbox-338e2bbb0c6673452c64378ef9e609d5c19c7558.tar.bz2 rockbox-338e2bbb0c6673452c64378ef9e609d5c19c7558.tar.xz | |
first gigabeat commit
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8831 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator')
| -rw-r--r-- | uisimulator/sdl/UI-gigabeatf.bmp | bin | 0 -> 1050742 bytes | |||
| -rw-r--r-- | uisimulator/sdl/button.c | 8 | ||||
| -rw-r--r-- | uisimulator/sdl/uisdl.h | 10 |
3 files changed, 16 insertions, 2 deletions
diff --git a/uisimulator/sdl/UI-gigabeatf.bmp b/uisimulator/sdl/UI-gigabeatf.bmp Binary files differnew file mode 100644 index 0000000..3f41044 --- /dev/null +++ b/uisimulator/sdl/UI-gigabeatf.bmp diff --git a/uisimulator/sdl/button.c b/uisimulator/sdl/button.c index 7222431..9571bea 100644 --- a/uisimulator/sdl/button.c +++ b/uisimulator/sdl/button.c @@ -86,14 +86,18 @@ void button_event(int key, bool pressed) new_btn = BUTTON_ON; #elif defined(BUTTON_SELECT) && defined(BUTTON_PLAY) new_btn = BUTTON_PLAY; +#elif defined BUTTON_POWER + new_btn = BUTTON_POWER; #endif break; + case SDLK_KP_ENTER: #ifdef BUTTON_OFF - case SDLK_RETURN: new_btn = BUTTON_OFF; - break; +#elif defined BUTTON_A + new_btn = BUTTON_A; #endif + break; #ifdef BUTTON_F1 case SDLK_KP_DIVIDE: diff --git a/uisimulator/sdl/uisdl.h b/uisimulator/sdl/uisdl.h index 800a7f8..70b8e18 100644 --- a/uisimulator/sdl/uisdl.h +++ b/uisimulator/sdl/uisdl.h @@ -180,6 +180,16 @@ #define UI_REMOTE_BGCOLORLIGHT 250, 180, 130 // bkgnd of remote lcd (bklight) #define UI_REMOTE_BGCOLOR 90, 145, 90 // bkgnd of remote lcd (no bklight) + +#elif defined(GIGABEAT_F) +#define UI_TITLE "Toshiba Gigabeat" +#define UI_WIDTH 401 // width of GUI window +#define UI_HEIGHT 655 // height of GUI window +/* high-colour */ +#define UI_LCD_POSX 48 // x position of lcd +#define UI_LCD_POSY 60 // y position of lcd +#define UI_LCD_WIDTH 240 +#define UI_LCD_HEIGHT 320 #endif extern SDL_Surface *gui_surface; |