2010-06-26 09:14:53 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010 Yoshihisa Uchida
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2010-06-29 11:37:58 +00:00
|
|
|
#include "plugin.h"
|
2010-06-26 09:14:53 +00:00
|
|
|
#include "tv_display.h"
|
|
|
|
#include "tv_preferences.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* display layout
|
|
|
|
*
|
|
|
|
* when is defined HAVE_LCD_BITMAP
|
|
|
|
* +-------------------------+
|
|
|
|
* |statusbar (1) |
|
|
|
|
* +-------------------------+
|
|
|
|
* |filename (2) |
|
|
|
|
* +---+---------------------+
|
|
|
|
* |s | |
|
|
|
|
* |c | |
|
|
|
|
* |r | draw area |
|
|
|
|
* |o | |
|
|
|
|
* |l | |
|
|
|
|
* |l | |
|
|
|
|
* |b | |
|
|
|
|
* |a | |
|
|
|
|
* |r | |
|
|
|
|
* |(3)| |
|
|
|
|
* +---+---------------------+
|
|
|
|
* | |scrollbar (4) |
|
|
|
|
* +---+---------------------+
|
|
|
|
* |page (5) |
|
|
|
|
* +-------------------------+
|
|
|
|
* |statusbar (6) |
|
|
|
|
* +-------------------------+
|
|
|
|
*
|
2010-06-26 12:17:01 +00:00
|
|
|
* (1) displays when rb->global_settings->statusbar == STATUSBAR_TOP.
|
|
|
|
* (2) displays when preferences->header_mode is HD_PATH.
|
2010-06-26 09:14:53 +00:00
|
|
|
* (3) displays when preferences->vertical_scrollbar is SB_ON.
|
|
|
|
* (4) displays when preferences->horizontal_scrollbar is SB_ON.
|
2010-06-26 12:17:01 +00:00
|
|
|
* (5) displays when preferences->footer_mode is FT_PAGE.
|
|
|
|
* (6) displays when rb->global_settings->statusbar == STATUSBAR_BOTTOM.
|
2010-06-26 09:14:53 +00:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* when isn't defined HAVE_LCD_BITMAP
|
|
|
|
* +---+---------------------+
|
|
|
|
* | | |
|
|
|
|
* |(7)| draw area |
|
|
|
|
* | | |
|
|
|
|
* +---+---------------------+
|
|
|
|
* (7) bookmark
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define TV_SCROLLBAR_WIDTH rb->global_settings->scrollbar_width
|
|
|
|
#define TV_SCROLLBAR_HEIGHT 4
|
|
|
|
|
|
|
|
#ifndef HAVE_LCD_BITMAP
|
|
|
|
#define TV_BOOKMARK_ICON 0xe101
|
|
|
|
#endif
|
|
|
|
|
|
|
|
struct tv_rect {
|
|
|
|
int x;
|
|
|
|
int y;
|
|
|
|
int w;
|
|
|
|
int h;
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct viewport vp_info;
|
2010-10-06 12:35:37 +00:00
|
|
|
static struct viewport vp_text;
|
2010-06-26 09:14:53 +00:00
|
|
|
static bool is_initialized_vp = false;
|
|
|
|
|
2010-06-28 11:17:47 +00:00
|
|
|
static struct screen* display;
|
|
|
|
|
2010-06-26 09:14:53 +00:00
|
|
|
/* layout */
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
static struct tv_rect header;
|
|
|
|
static struct tv_rect footer;
|
|
|
|
static struct tv_rect horizontal_scrollbar;
|
|
|
|
static struct tv_rect vertical_scrollbar;
|
|
|
|
#else
|
|
|
|
static struct tv_rect bookmark;
|
|
|
|
#endif
|
|
|
|
|
2010-07-01 11:31:28 +00:00
|
|
|
static bool show_horizontal_scrollbar;
|
2010-06-28 11:17:47 +00:00
|
|
|
static bool show_vertical_scrollbar;
|
|
|
|
|
2010-06-26 09:14:53 +00:00
|
|
|
static int display_columns;
|
|
|
|
static int display_rows;
|
|
|
|
|
2010-06-27 11:36:37 +00:00
|
|
|
static int col_width = 1;
|
|
|
|
static int row_height = 1;
|
2010-06-26 09:14:53 +00:00
|
|
|
|
2010-06-28 11:17:47 +00:00
|
|
|
static int totalsize;
|
|
|
|
|
2010-06-26 09:14:53 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
|
2010-06-28 11:17:47 +00:00
|
|
|
static void tv_show_header(void)
|
2010-06-26 09:14:53 +00:00
|
|
|
{
|
2010-06-29 12:23:41 +00:00
|
|
|
if (preferences->header_mode)
|
2010-06-26 09:14:53 +00:00
|
|
|
display->putsxy(header.x, header.y, preferences->file_name);
|
|
|
|
}
|
|
|
|
|
2010-06-28 11:17:47 +00:00
|
|
|
static void tv_show_footer(const struct tv_screen_pos *pos)
|
2010-06-26 09:14:53 +00:00
|
|
|
{
|
|
|
|
unsigned char buf[12];
|
|
|
|
|
2010-06-29 12:23:41 +00:00
|
|
|
if (preferences->footer_mode)
|
2010-06-26 09:14:53 +00:00
|
|
|
{
|
|
|
|
if (pos->line == 0)
|
|
|
|
rb->snprintf(buf, sizeof(buf), "%d", pos->page + 1);
|
|
|
|
else
|
|
|
|
rb->snprintf(buf, sizeof(buf), "%d - %d", pos->page + 1, pos->page + 2);
|
2010-06-26 12:17:01 +00:00
|
|
|
display->putsxy(footer.x, footer.y + 1, buf);
|
2010-06-26 09:14:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-28 11:17:47 +00:00
|
|
|
static void tv_show_scrollbar(int window, int col, off_t cur_pos, int size)
|
2010-06-26 09:14:53 +00:00
|
|
|
{
|
|
|
|
int items;
|
|
|
|
int min_shown;
|
|
|
|
int max_shown;
|
|
|
|
|
2010-07-01 11:31:28 +00:00
|
|
|
if (show_horizontal_scrollbar)
|
2010-06-26 09:14:53 +00:00
|
|
|
{
|
|
|
|
items = preferences->windows * display_columns;
|
|
|
|
min_shown = window * display_columns + col;
|
|
|
|
max_shown = min_shown + display_columns;
|
|
|
|
|
|
|
|
rb->gui_scrollbar_draw(display,
|
2010-06-26 12:17:01 +00:00
|
|
|
horizontal_scrollbar.x, horizontal_scrollbar.y + 1,
|
2010-06-26 09:14:53 +00:00
|
|
|
horizontal_scrollbar.w, TV_SCROLLBAR_HEIGHT,
|
|
|
|
items, min_shown, max_shown, HORIZONTAL);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (show_vertical_scrollbar)
|
|
|
|
{
|
|
|
|
items = (int) totalsize;
|
|
|
|
min_shown = (int) cur_pos;
|
|
|
|
max_shown = min_shown + size;
|
|
|
|
|
|
|
|
rb->gui_scrollbar_draw(display,
|
|
|
|
vertical_scrollbar.x, vertical_scrollbar.y,
|
2010-06-26 12:17:01 +00:00
|
|
|
TV_SCROLLBAR_WIDTH, vertical_scrollbar.h,
|
2010-06-26 09:14:53 +00:00
|
|
|
items, min_shown, max_shown, VERTICAL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-27 08:08:33 +00:00
|
|
|
#endif
|
2010-06-26 09:14:53 +00:00
|
|
|
|
2010-06-28 11:17:47 +00:00
|
|
|
void tv_init_scrollbar(off_t total, bool show_scrollbar)
|
|
|
|
{
|
|
|
|
totalsize = total;
|
2010-07-01 11:31:28 +00:00
|
|
|
show_horizontal_scrollbar = (show_scrollbar && preferences->horizontal_scrollbar);
|
|
|
|
show_vertical_scrollbar = (show_scrollbar && preferences->vertical_scrollbar);
|
2010-06-28 11:17:47 +00:00
|
|
|
}
|
|
|
|
|
2010-06-27 08:08:33 +00:00
|
|
|
void tv_show_bookmarks(const int *rows, int count)
|
2010-06-26 09:14:53 +00:00
|
|
|
{
|
2010-06-27 08:08:33 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2010-10-06 12:35:37 +00:00
|
|
|
display->set_viewport(&vp_text);
|
|
|
|
display->set_drawmode(DRMODE_COMPLEMENT);
|
2010-06-27 08:08:33 +00:00
|
|
|
#endif
|
2010-06-26 09:14:53 +00:00
|
|
|
|
2010-06-27 08:08:33 +00:00
|
|
|
while (count--)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2010-10-06 12:35:37 +00:00
|
|
|
display->fillrect(0, rows[count] * row_height,
|
|
|
|
vp_text.width, row_height);
|
2010-06-27 08:08:33 +00:00
|
|
|
#else
|
2010-10-06 12:35:37 +00:00
|
|
|
display->putchar(bookmark.x, bookmark.y + rows[count], TV_BOOKMARK_ICON);
|
2010-06-26 09:14:53 +00:00
|
|
|
#endif
|
2010-06-27 08:08:33 +00:00
|
|
|
}
|
2010-10-06 12:35:37 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
display->set_drawmode(DRMODE_SOLID);
|
|
|
|
display->set_viewport(&vp_info);
|
|
|
|
#endif
|
2010-06-27 08:08:33 +00:00
|
|
|
}
|
2010-06-26 09:14:53 +00:00
|
|
|
|
2010-06-28 11:17:47 +00:00
|
|
|
void tv_update_extra(int window, int col, const struct tv_screen_pos *pos, int size)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
tv_show_scrollbar(window, col, pos->file_pos, size);
|
|
|
|
tv_show_header();
|
|
|
|
tv_show_footer(pos);
|
|
|
|
#else
|
|
|
|
(void)window;
|
|
|
|
(void)col;
|
|
|
|
(void)pos;
|
|
|
|
(void)size;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2010-06-26 09:14:53 +00:00
|
|
|
void tv_draw_text(int row, const unsigned char *text, int offset)
|
|
|
|
{
|
|
|
|
int xpos = -offset * col_width;
|
|
|
|
int text_width;
|
|
|
|
|
|
|
|
if (row < 0 || row >= display_rows)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (preferences->alignment == AL_RIGHT)
|
|
|
|
{
|
|
|
|
display->getstringsize(text, &text_width, NULL);
|
2010-10-06 12:35:37 +00:00
|
|
|
xpos += ((offset > 0)? vp_text.width * 2 : vp_text.width) - text_width;
|
2010-06-26 09:14:53 +00:00
|
|
|
}
|
|
|
|
|
2010-10-06 12:35:37 +00:00
|
|
|
display->set_viewport(&vp_text);
|
2010-06-26 09:14:53 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2010-10-06 12:35:37 +00:00
|
|
|
display->putsxy(xpos, row * row_height, text);
|
2010-06-26 09:14:53 +00:00
|
|
|
#else
|
2010-10-06 12:35:37 +00:00
|
|
|
display->puts(xpos, row, text);
|
2010-06-26 09:14:53 +00:00
|
|
|
#endif
|
2010-10-06 12:35:37 +00:00
|
|
|
display->set_viewport(&vp_info);
|
2010-06-26 09:14:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void tv_start_display(void)
|
|
|
|
{
|
|
|
|
display->set_viewport(&vp_info);
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2010-10-06 12:35:37 +00:00
|
|
|
display->set_drawmode(DRMODE_SOLID);
|
2010-06-26 09:14:53 +00:00
|
|
|
#endif
|
2010-06-27 08:08:33 +00:00
|
|
|
|
|
|
|
#if LCD_DEPTH > 1
|
|
|
|
rb->lcd_set_backdrop(NULL);
|
|
|
|
#endif
|
|
|
|
display->clear_viewport();
|
2010-06-26 09:14:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void tv_end_display(void)
|
|
|
|
{
|
2010-06-28 11:17:47 +00:00
|
|
|
display->update_viewport();
|
|
|
|
display->set_viewport(NULL);
|
2010-06-26 09:14:53 +00:00
|
|
|
}
|
|
|
|
|
2010-06-27 11:36:37 +00:00
|
|
|
void tv_set_layout(bool show_scrollbar)
|
2010-06-26 09:14:53 +00:00
|
|
|
{
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2010-07-01 11:31:28 +00:00
|
|
|
int scrollbar_width = (show_scrollbar && preferences->vertical_scrollbar)?
|
|
|
|
TV_SCROLLBAR_WIDTH + 1 : 0;
|
|
|
|
int scrollbar_height = (show_scrollbar && preferences->horizontal_scrollbar)?
|
|
|
|
TV_SCROLLBAR_HEIGHT + 1 : 0;
|
2010-06-26 09:14:53 +00:00
|
|
|
|
2011-09-24 13:19:34 +00:00
|
|
|
row_height = rb->font_get(preferences->font_id)->height;
|
2010-06-26 09:14:53 +00:00
|
|
|
|
|
|
|
header.x = 0;
|
2010-10-06 12:35:37 +00:00
|
|
|
header.y = 0;
|
2010-06-26 09:14:53 +00:00
|
|
|
header.w = vp_info.width;
|
2010-06-29 12:23:41 +00:00
|
|
|
header.h = (preferences->header_mode)? row_height + 1 : 0;
|
2010-06-26 09:14:53 +00:00
|
|
|
|
|
|
|
footer.x = 0;
|
|
|
|
footer.w = vp_info.width;
|
2010-06-29 12:23:41 +00:00
|
|
|
footer.h = (preferences->footer_mode)? row_height + 1 : 0;
|
2010-10-06 12:35:37 +00:00
|
|
|
footer.y = vp_info.height - footer.h;
|
2010-06-26 09:14:53 +00:00
|
|
|
|
2010-10-06 12:35:37 +00:00
|
|
|
horizontal_scrollbar.x = scrollbar_width;
|
2010-06-26 09:14:53 +00:00
|
|
|
horizontal_scrollbar.y = footer.y - scrollbar_height;
|
2010-10-06 12:35:37 +00:00
|
|
|
horizontal_scrollbar.w = vp_info.width - scrollbar_width;
|
2010-06-26 09:14:53 +00:00
|
|
|
horizontal_scrollbar.h = scrollbar_height;
|
|
|
|
|
|
|
|
vertical_scrollbar.x = 0;
|
2010-10-06 12:35:37 +00:00
|
|
|
vertical_scrollbar.y = header.y + header.h;
|
2010-06-26 09:14:53 +00:00
|
|
|
vertical_scrollbar.w = scrollbar_width;
|
2010-10-06 12:35:37 +00:00
|
|
|
vertical_scrollbar.h = footer.y - vertical_scrollbar.y - scrollbar_height;
|
|
|
|
|
|
|
|
vp_text = vp_info;
|
|
|
|
vp_text.x += horizontal_scrollbar.x;
|
|
|
|
vp_text.y += vertical_scrollbar.y;
|
|
|
|
vp_text.width = horizontal_scrollbar.w;
|
|
|
|
vp_text.height = vertical_scrollbar.h;
|
2011-09-24 13:19:34 +00:00
|
|
|
vp_text.font = preferences->font_id;
|
2010-06-26 09:14:53 +00:00
|
|
|
#else
|
2010-06-27 11:36:37 +00:00
|
|
|
(void) show_scrollbar;
|
|
|
|
|
2010-06-26 09:14:53 +00:00
|
|
|
row_height = 1;
|
|
|
|
|
|
|
|
bookmark.x = 0;
|
|
|
|
bookmark.y = 0;
|
|
|
|
bookmark.w = 1;
|
|
|
|
bookmark.h = vp_info.height;
|
|
|
|
|
2010-10-06 12:35:37 +00:00
|
|
|
vp_text = vp_info;
|
|
|
|
vp_text.x += 1;
|
|
|
|
vp_text.width -= 1;
|
2010-06-26 09:14:53 +00:00
|
|
|
#endif
|
|
|
|
|
2010-10-06 12:35:37 +00:00
|
|
|
display_columns = vp_text.width / col_width;
|
|
|
|
display_rows = vp_text.height / row_height;
|
2010-06-26 09:14:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void tv_get_drawarea_info(int *width, int *cols, int *rows)
|
|
|
|
{
|
2010-10-06 12:35:37 +00:00
|
|
|
*width = vp_text.width;
|
2010-06-26 09:14:53 +00:00
|
|
|
*cols = display_columns;
|
|
|
|
*rows = display_rows;
|
|
|
|
}
|
|
|
|
|
2010-06-27 11:36:37 +00:00
|
|
|
static void tv_change_viewport(void)
|
|
|
|
{
|
2010-06-28 11:17:47 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2010-10-06 12:35:37 +00:00
|
|
|
bool show_statusbar = preferences->statusbar;
|
2010-07-08 14:17:04 +00:00
|
|
|
|
2010-06-26 09:14:53 +00:00
|
|
|
if (is_initialized_vp)
|
2010-06-28 11:17:47 +00:00
|
|
|
rb->viewportmanager_theme_undo(SCREEN_MAIN, false);
|
2010-06-26 09:14:53 +00:00
|
|
|
else
|
|
|
|
is_initialized_vp = true;
|
|
|
|
|
2010-07-08 14:17:04 +00:00
|
|
|
rb->viewportmanager_theme_enable(SCREEN_MAIN, show_statusbar, &vp_info);
|
2010-06-26 09:14:53 +00:00
|
|
|
vp_info.flags &= ~VP_FLAG_ALIGNMENT_MASK;
|
2010-07-07 12:07:23 +00:00
|
|
|
display->set_viewport(&vp_info);
|
2010-06-28 11:17:47 +00:00
|
|
|
#else
|
|
|
|
if (!is_initialized_vp)
|
|
|
|
{
|
|
|
|
rb->viewport_set_defaults(&vp_info, SCREEN_MAIN);
|
|
|
|
is_initialized_vp = true;
|
|
|
|
}
|
|
|
|
#endif
|
2010-06-27 11:36:37 +00:00
|
|
|
}
|
2010-06-26 09:14:53 +00:00
|
|
|
|
2010-06-28 11:17:47 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2010-06-27 11:36:37 +00:00
|
|
|
static bool tv_set_font(const unsigned char *font)
|
|
|
|
{
|
|
|
|
unsigned char path[MAX_PATH];
|
|
|
|
if (font != NULL && *font != '\0')
|
|
|
|
{
|
|
|
|
rb->snprintf(path, MAX_PATH, "%s/%s.fnt", FONT_DIR, font);
|
2011-09-24 13:19:34 +00:00
|
|
|
if (preferences->font_id >= 0 &&
|
|
|
|
(preferences->font_id != rb->global_status->font_id[SCREEN_MAIN]))
|
|
|
|
rb->font_unload(preferences->font_id);
|
|
|
|
tv_change_fontid(rb->font_load(path));
|
|
|
|
if (preferences->font_id < 0)
|
2010-06-27 11:36:37 +00:00
|
|
|
{
|
|
|
|
rb->splash(HZ/2, "font load failed");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2011-09-24 13:19:34 +00:00
|
|
|
vp_text.font = preferences->font_id;
|
2010-06-27 11:36:37 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-06-29 11:05:36 +00:00
|
|
|
static int tv_change_preferences(const struct tv_preferences *oldp)
|
2010-06-27 11:36:37 +00:00
|
|
|
{
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
static bool font_changing = false;
|
|
|
|
const unsigned char *font_str;
|
|
|
|
struct tv_preferences new_prefs;
|
|
|
|
|
|
|
|
font_str = (oldp && !font_changing)? oldp->font_name : rb->global_settings->font_file;
|
|
|
|
|
|
|
|
/* change font */
|
|
|
|
if (font_changing || rb->strcmp(font_str, preferences->font_name))
|
|
|
|
{
|
|
|
|
if (!tv_set_font(preferences->font_name))
|
|
|
|
{
|
2010-06-29 11:05:36 +00:00
|
|
|
/*
|
|
|
|
* tv_set_font(rb->global_settings->font_file) doesn't fail usually.
|
|
|
|
* if it fails, a fatal problem occurs in Rockbox.
|
|
|
|
*/
|
|
|
|
if (!rb->strcmp(preferences->font_name, rb->global_settings->font_file))
|
|
|
|
return TV_CALLBACK_ERROR;
|
|
|
|
|
2010-06-27 11:36:37 +00:00
|
|
|
font_changing = true;
|
|
|
|
tv_copy_preferences(&new_prefs);
|
|
|
|
rb->strlcpy(new_prefs.font_name, font_str, MAX_PATH);
|
2010-06-29 11:05:36 +00:00
|
|
|
|
|
|
|
return (tv_set_preferences(&new_prefs))? TV_CALLBACK_STOP : TV_CALLBACK_ERROR;
|
2010-06-27 11:36:37 +00:00
|
|
|
}
|
2011-09-24 13:19:34 +00:00
|
|
|
col_width = 2 * rb->font_get_width(rb->font_get(preferences->font_id), ' ');
|
2010-06-28 11:17:47 +00:00
|
|
|
font_changing = false;
|
2010-06-27 11:36:37 +00:00
|
|
|
}
|
2010-06-26 09:14:53 +00:00
|
|
|
#else
|
2010-06-27 11:36:37 +00:00
|
|
|
(void)oldp;
|
2010-06-26 09:14:53 +00:00
|
|
|
#endif
|
2010-06-28 11:17:47 +00:00
|
|
|
tv_change_viewport();
|
2010-06-29 11:05:36 +00:00
|
|
|
return TV_CALLBACK_OK;
|
2010-06-26 09:14:53 +00:00
|
|
|
}
|
|
|
|
|
2010-06-27 11:36:37 +00:00
|
|
|
bool tv_init_display(unsigned char **buf, size_t *size)
|
|
|
|
{
|
|
|
|
(void)buf;
|
|
|
|
(void)size;
|
|
|
|
|
|
|
|
display = rb->screens[SCREEN_MAIN];
|
|
|
|
display->clear_viewport();
|
|
|
|
|
|
|
|
tv_add_preferences_change_listner(tv_change_preferences);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void tv_finalize_display(void)
|
2010-06-26 09:14:53 +00:00
|
|
|
{
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2010-06-27 11:36:37 +00:00
|
|
|
/* restore font */
|
2011-09-24 13:19:34 +00:00
|
|
|
if (preferences->font_id >= 0 &&
|
|
|
|
(preferences->font_id != rb->global_status->font_id[SCREEN_MAIN]))
|
2010-06-27 11:36:37 +00:00
|
|
|
{
|
2011-09-24 13:19:34 +00:00
|
|
|
rb->font_unload(preferences->font_id);
|
2010-06-27 11:36:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* undo viewport */
|
2010-07-07 12:07:23 +00:00
|
|
|
if (is_initialized_vp)
|
|
|
|
rb->viewportmanager_theme_undo(SCREEN_MAIN, false);
|
2010-06-28 11:17:47 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
bool tv_exist_scrollbar(void)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
return true;
|
|
|
|
#else
|
|
|
|
return false;
|
2010-06-26 09:14:53 +00:00
|
|
|
#endif
|
|
|
|
}
|