diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2006-02-04 22:37:44 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2006-02-04 22:37:44 +0000 |
| commit | 939417509142d0147926a706dd7ea64fd11af030 (patch) | |
| tree | 6f071b682d8982bee00c67d89cae92f5afe8a23e | |
| parent | 8a1da840096653bad868fef51c9be7176cd7da82 (diff) | |
| download | rockbox-939417509142d0147926a706dd7ea64fd11af030.zip rockbox-939417509142d0147926a706dd7ea64fd11af030.tar.gz rockbox-939417509142d0147926a706dd7ea64fd11af030.tar.bz2 rockbox-939417509142d0147926a706dd7ea64fd11af030.tar.xz | |
Added iAudio X5 SDl sim image
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8566 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | uisimulator/sdl/UI-x5.bmp | bin | 0 -> 415856 bytes | |||
| -rw-r--r-- | uisimulator/sdl/uisdl.h | 19 |
2 files changed, 19 insertions, 0 deletions
diff --git a/uisimulator/sdl/UI-x5.bmp b/uisimulator/sdl/UI-x5.bmp Binary files differnew file mode 100644 index 0000000..18bdf9a --- /dev/null +++ b/uisimulator/sdl/UI-x5.bmp diff --git a/uisimulator/sdl/uisdl.h b/uisimulator/sdl/uisdl.h index 02b21a0..9c4d0ad 100644 --- a/uisimulator/sdl/uisdl.h +++ b/uisimulator/sdl/uisdl.h @@ -139,6 +139,25 @@ #define UI_LCD_WIDTH 192 // * 1.5 #define UI_LCD_HEIGHT 96 // * 1.5 + +#elif defined(IAUDIO_X5) +#define UI_TITLE "iAudio X5" +#define UI_WIDTH 300 // width of GUI window +#define UI_HEIGHT 462 // height of GUI window +#define UI_LCD_BGCOLOR 90, 145, 90 // bkgnd color of LCD (no backlight) +#define UI_LCD_BGCOLORLIGHT 230, 160, 60 // bkgnd color of LCD (backlight) +#define UI_LCD_BLACK 0, 0, 0 // black +#define UI_LCD_POSX 55 // x position of lcd +#define UI_LCD_POSY 61 // y position of lcd (74 for real aspect) +#define UI_LCD_WIDTH LCD_WIDTH // * 1.5 +#define UI_LCD_HEIGHT LCD_HEIGHT // * 1.5 + +#define UI_REMOTE_POSX 12 // x position of remote lcd +#define UI_REMOTE_POSY 478 // y position of remote lcd +#define UI_REMOTE_WIDTH 128 +#define UI_REMOTE_HEIGHT 64 + +#define UI_REMOTE_BGCOLORLIGHT 250, 180, 130 // bkgnd of remote lcd (bklight) #endif extern SDL_Surface *gui_surface; |