2008-03-05 09:58:30 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2008 by Jonathan Gordon
|
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2008-03-05 09:58:30 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2008-04-28 16:18:04 +00:00
|
|
|
#include <stdlib.h>
|
2008-03-05 09:58:30 +00:00
|
|
|
#include "config.h"
|
|
|
|
#include "lcd.h"
|
2008-03-09 23:53:46 +00:00
|
|
|
#include "lcd-remote.h"
|
2008-03-05 09:58:30 +00:00
|
|
|
#include "font.h"
|
|
|
|
#include "sprintf.h"
|
|
|
|
#include "string.h"
|
|
|
|
#include "settings.h"
|
|
|
|
#include "kernel.h"
|
|
|
|
#include "system.h"
|
|
|
|
#include "misc.h"
|
|
|
|
#include "viewport.h"
|
|
|
|
#include "statusbar.h"
|
|
|
|
#include "screen_access.h"
|
2008-12-31 05:59:26 +00:00
|
|
|
#include "appevents.h"
|
|
|
|
|
2009-02-27 08:24:39 +00:00
|
|
|
static int statusbar_enabled = 0;
|
2008-03-05 09:58:30 +00:00
|
|
|
|
|
|
|
int viewport_get_nb_lines(struct viewport *vp)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
return vp->height/font_get(vp->font)->height;
|
|
|
|
#else
|
|
|
|
(void)vp;
|
|
|
|
return 2;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2009-02-01 11:34:16 +00:00
|
|
|
static bool showing_bars(enum screen_type screen)
|
|
|
|
{
|
2009-02-01 13:43:08 +00:00
|
|
|
if (statusbar_enabled & VP_SB_ONSCREEN(screen))
|
2009-02-20 15:00:34 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2009-02-01 13:43:08 +00:00
|
|
|
return global_settings.statusbar ||
|
2009-02-20 15:00:34 +00:00
|
|
|
(statusbar_enabled & VP_SB_IGNORE_SETTING(screen));
|
|
|
|
#else
|
|
|
|
return true;
|
|
|
|
#endif
|
2009-02-01 11:34:16 +00:00
|
|
|
return false;
|
|
|
|
}
|
2008-03-05 09:58:30 +00:00
|
|
|
|
|
|
|
void viewport_set_defaults(struct viewport *vp, enum screen_type screen)
|
|
|
|
{
|
|
|
|
vp->x = 0;
|
2008-06-28 20:45:21 +00:00
|
|
|
vp->width = screens[screen].lcdwidth;
|
|
|
|
|
2009-02-01 13:08:31 +00:00
|
|
|
vp->y = showing_bars(screen)?STATUSBAR_HEIGHT:0;
|
2008-06-28 20:45:21 +00:00
|
|
|
vp->height = screens[screen].lcdheight - vp->y;
|
2008-03-05 09:58:30 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
vp->drawmode = DRMODE_SOLID;
|
|
|
|
vp->font = FONT_UI; /* default to UI to discourage SYSFONT use */
|
|
|
|
#endif
|
2008-03-09 23:53:46 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
/* We only need this test if there is a remote LCD */
|
|
|
|
if (screen == SCREEN_MAIN)
|
|
|
|
#endif
|
2008-03-05 09:58:30 +00:00
|
|
|
{
|
|
|
|
#ifdef HAVE_LCD_COLOR
|
|
|
|
vp->fg_pattern = global_settings.fg_color;
|
|
|
|
vp->bg_pattern = global_settings.bg_color;
|
|
|
|
vp->lss_pattern = global_settings.lss_color;
|
|
|
|
vp->lse_pattern = global_settings.lse_color;
|
|
|
|
vp->lst_pattern = global_settings.lst_color;
|
|
|
|
#elif LCD_DEPTH > 1
|
|
|
|
vp->fg_pattern = LCD_DEFAULT_FG;
|
|
|
|
vp->bg_pattern = LCD_DEFAULT_BG;
|
|
|
|
#endif
|
|
|
|
}
|
2008-03-09 23:53:46 +00:00
|
|
|
|
|
|
|
#if defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1
|
|
|
|
if (screen == SCREEN_REMOTE)
|
|
|
|
{
|
|
|
|
vp->fg_pattern = LCD_REMOTE_DEFAULT_FG;
|
|
|
|
vp->bg_pattern = LCD_REMOTE_DEFAULT_BG;
|
|
|
|
}
|
|
|
|
#endif
|
2008-03-05 09:58:30 +00:00
|
|
|
}
|
2008-12-31 05:59:26 +00:00
|
|
|
|
2009-02-01 13:43:08 +00:00
|
|
|
|
|
|
|
int viewportmanager_set_statusbar(int enabled)
|
2008-12-31 05:59:26 +00:00
|
|
|
{
|
2009-02-01 13:43:08 +00:00
|
|
|
int old = statusbar_enabled;
|
2009-02-27 08:24:39 +00:00
|
|
|
statusbar_enabled = enabled;
|
2009-02-01 11:34:16 +00:00
|
|
|
if (enabled)
|
2008-12-31 05:59:26 +00:00
|
|
|
{
|
2009-02-01 11:34:16 +00:00
|
|
|
int i;
|
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
{
|
|
|
|
if (showing_bars(i))
|
|
|
|
gui_statusbar_draw(&statusbars.statusbars[i], true);
|
|
|
|
}
|
2009-01-05 09:59:11 +00:00
|
|
|
add_event(GUI_EVENT_ACTIONUPDATE, false, viewportmanager_draw_statusbars);
|
2008-12-31 05:59:26 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-01-05 09:59:11 +00:00
|
|
|
remove_event(GUI_EVENT_ACTIONUPDATE, viewportmanager_draw_statusbars);
|
2008-12-31 05:59:26 +00:00
|
|
|
}
|
2009-01-02 01:29:13 +00:00
|
|
|
return old;
|
2008-12-31 05:59:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void viewportmanager_draw_statusbars(void* data)
|
|
|
|
{
|
2009-02-01 11:34:16 +00:00
|
|
|
int i;
|
2009-03-17 01:39:20 +00:00
|
|
|
|
2009-02-01 11:34:16 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
{
|
|
|
|
if (showing_bars(i))
|
2009-06-08 18:19:43 +00:00
|
|
|
gui_statusbar_draw(&statusbars.statusbars[i], (bool)data);
|
2009-02-01 11:34:16 +00:00
|
|
|
}
|
2008-12-31 05:59:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void viewportmanager_statusbar_changed(void* data)
|
|
|
|
{
|
|
|
|
(void)data;
|
|
|
|
viewportmanager_set_statusbar(statusbar_enabled);
|
|
|
|
}
|