1
0
Fork 0
forked from len0rd/rockbox

pictureflow tweaks:

allow wider covers on landscape, bringing square covers closer to suggested size from pre-scaling pictureflow

tweak defaults for center margin and cover spacing a little bit

change default title display to bottom if LCD_HEIGHT <= 100

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19877 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Andrew Mahone 2009-01-29 03:30:41 +00:00
parent 83350f2fed
commit 8f1d8be7a7

View file

@ -106,8 +106,8 @@ typedef fb_data pix_t;
#define REFLECT_TOP (LCD_HEIGHT * 2 / 3) #define REFLECT_TOP (LCD_HEIGHT * 2 / 3)
#define REFLECT_HEIGHT (LCD_HEIGHT - REFLECT_TOP) #define REFLECT_HEIGHT (LCD_HEIGHT - REFLECT_TOP)
#define DISPLAY_HEIGHT REFLECT_TOP #define DISPLAY_HEIGHT REFLECT_TOP
#define DISPLAY_WIDTH (LCD_HEIGHT * LCD_PIXEL_ASPECT_HEIGHT / \ #define DISPLAY_WIDTH MAX((LCD_HEIGHT * LCD_PIXEL_ASPECT_HEIGHT / \
LCD_PIXEL_ASPECT_WIDTH / 2) LCD_PIXEL_ASPECT_WIDTH / 2), (LCD_WIDTH * 2 / 5))
#define REFLECT_SC ((0x10000U * 3 + (REFLECT_HEIGHT * 5 - 1)) / \ #define REFLECT_SC ((0x10000U * 3 + (REFLECT_HEIGHT * 5 - 1)) / \
(REFLECT_HEIGHT * 5)) (REFLECT_HEIGHT * 5))
#define DISPLAY_OFFS ((LCD_HEIGHT / 2) - REFLECT_HEIGHT) #define DISPLAY_OFFS ((LCD_HEIGHT / 2) - REFLECT_HEIGHT)
@ -205,14 +205,14 @@ static char* show_album_name_conf[] =
#define MAX_MARGIN 80 #define MAX_MARGIN 80
/* config values and their defaults */ /* config values and their defaults */
static int slide_spacing = (LCD_WIDTH - DISPLAY_WIDTH) / 8; static int slide_spacing = DISPLAY_WIDTH / 4;
static int center_margin = (LCD_WIDTH - DISPLAY_WIDTH) / 16; static int center_margin = (LCD_WIDTH - DISPLAY_WIDTH) / 12;
static int num_slides = 4; static int num_slides = 4;
static int zoom = 100; static int zoom = 100;
static bool show_fps = false; static bool show_fps = false;
static bool resize = true; static bool resize = true;
static int cache_version = 0; static int cache_version = 0;
static int show_album_name = album_name_top; static int show_album_name = (LCD_HEIGHT > 100) ? album_name_top : album_name_bottom;
static struct configdata config[] = static struct configdata config[] =
{ {