2005-10-28 00:00:00 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
2005-10-30 01:24:35 +00:00
|
|
|
* Copyright (C) 2005 by Kevin Ferrare
|
2005-10-28 00:00:00 +00:00
|
|
|
*
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "lcd.h"
|
|
|
|
#include "font.h"
|
|
|
|
#include "button.h"
|
|
|
|
#include "sprintf.h"
|
2006-08-15 08:14:46 +00:00
|
|
|
#include "string.h"
|
2005-10-28 00:00:00 +00:00
|
|
|
#include "settings.h"
|
|
|
|
#include "kernel.h"
|
2007-06-05 02:57:43 +00:00
|
|
|
#include "system.h"
|
2005-10-28 00:00:00 +00:00
|
|
|
|
2006-08-15 12:27:07 +00:00
|
|
|
#include "action.h"
|
2005-10-28 00:00:00 +00:00
|
|
|
#include "screen_access.h"
|
|
|
|
#include "list.h"
|
|
|
|
#include "scrollbar.h"
|
|
|
|
#include "statusbar.h"
|
2005-11-01 23:56:03 +00:00
|
|
|
#include "textarea.h"
|
2007-03-05 00:32:33 +00:00
|
|
|
#include "lang.h"
|
2007-04-08 01:33:01 +00:00
|
|
|
#include "sound.h"
|
2007-05-30 18:08:29 +00:00
|
|
|
#include "misc.h"
|
2005-10-28 00:00:00 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_LCD_CHARCELLS
|
|
|
|
#define SCROLL_LIMIT 1
|
|
|
|
#else
|
2007-06-05 02:57:43 +00:00
|
|
|
#define SCROLL_LIMIT (nb_lines<3?1:2)
|
2005-10-28 00:00:00 +00:00
|
|
|
#endif
|
|
|
|
|
2007-03-11 10:52:36 +00:00
|
|
|
/* The minimum number of pending button events in queue before starting
|
|
|
|
* to limit list drawing interval.
|
|
|
|
*/
|
|
|
|
#define FRAMEDROP_TRIGGER 6
|
|
|
|
|
2006-01-22 04:24:26 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
static int offset_step = 16; /* pixels per screen scroll step */
|
|
|
|
/* should lines scroll out of the screen */
|
|
|
|
static bool offset_out_of_view = false;
|
|
|
|
#endif
|
2007-03-11 10:52:36 +00:00
|
|
|
static struct gui_list* last_list_displayed[NB_SCREENS];
|
2006-01-22 04:24:26 +00:00
|
|
|
|
2006-12-09 12:27:04 +00:00
|
|
|
#define SHOW_LIST_TITLE ((gui_list->title != NULL) && \
|
2007-04-11 10:34:44 +00:00
|
|
|
(gui_list->display->nb_lines > 2))
|
2005-10-28 00:00:00 +00:00
|
|
|
|
2007-06-05 02:57:43 +00:00
|
|
|
static void gui_list_select_at_offset(struct gui_list * gui_list, int offset);
|
2007-02-23 21:52:45 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Initializes a scrolling list
|
|
|
|
* - gui_list : the list structure to initialize
|
|
|
|
* - callback_get_item_name : pointer to a function that associates a label
|
|
|
|
* to a given item number
|
|
|
|
* - data : extra data passed to the list callback
|
2007-06-17 21:16:34 +00:00
|
|
|
* - scroll_all :
|
|
|
|
* - selected_size :
|
2007-02-23 21:52:45 +00:00
|
|
|
*/
|
|
|
|
static void gui_list_init(struct gui_list * gui_list,
|
2005-11-16 02:12:25 +00:00
|
|
|
list_get_name callback_get_item_name,
|
2006-07-02 12:28:27 +00:00
|
|
|
void * data,
|
|
|
|
bool scroll_all,
|
|
|
|
int selected_size
|
2005-10-29 02:33:19 +00:00
|
|
|
)
|
2005-10-28 00:00:00 +00:00
|
|
|
{
|
2005-11-16 17:23:49 +00:00
|
|
|
gui_list->callback_get_item_icon = NULL;
|
2005-10-28 00:00:00 +00:00
|
|
|
gui_list->callback_get_item_name = callback_get_item_name;
|
|
|
|
gui_list->display = NULL;
|
|
|
|
gui_list_set_nb_items(gui_list, 0);
|
|
|
|
gui_list->selected_item = 0;
|
|
|
|
gui_list->start_item = 0;
|
2005-10-29 02:33:19 +00:00
|
|
|
gui_list->limit_scroll = false;
|
|
|
|
gui_list->data=data;
|
2006-01-22 04:24:26 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
gui_list->offset_position = 0;
|
|
|
|
#endif
|
2006-07-02 12:28:27 +00:00
|
|
|
gui_list->scroll_all=scroll_all;
|
|
|
|
gui_list->selected_size=selected_size;
|
2006-08-15 08:14:46 +00:00
|
|
|
gui_list->title = NULL;
|
2006-08-15 12:23:55 +00:00
|
|
|
gui_list->title_width = 0;
|
2007-04-16 09:14:36 +00:00
|
|
|
gui_list->title_icon = Icon_NOICON;
|
2007-03-11 10:52:36 +00:00
|
|
|
|
|
|
|
gui_list->last_displayed_selected_item = -1 ;
|
|
|
|
gui_list->last_displayed_start_item = -1 ;
|
2007-06-07 12:14:31 +00:00
|
|
|
gui_list->show_selection_marker = true;
|
2007-06-17 21:16:34 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_LCD_COLOR
|
|
|
|
gui_list->title_color = -1;
|
|
|
|
gui_list->callback_get_item_color = NULL;
|
|
|
|
#endif
|
2007-06-07 12:14:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* this toggles the selection bar or cursor */
|
|
|
|
void gui_synclist_hide_selection_marker(struct gui_synclist * lists, bool hide)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
lists->gui_list[i].show_selection_marker = !hide;
|
2005-10-28 00:00:00 +00:00
|
|
|
}
|
|
|
|
|
2007-02-23 21:52:45 +00:00
|
|
|
/*
|
|
|
|
* Attach the scrolling list to a screen
|
|
|
|
* (The previous screen attachement is lost)
|
|
|
|
* - gui_list : the list structure
|
|
|
|
* - display : the screen to attach
|
|
|
|
*/
|
|
|
|
static void gui_list_set_display(struct gui_list * gui_list, struct screen * display)
|
2005-10-28 00:00:00 +00:00
|
|
|
{
|
|
|
|
if(gui_list->display != 0) /* we switched from a previous display */
|
|
|
|
gui_list->display->stop_scroll();
|
|
|
|
gui_list->display = display;
|
|
|
|
#ifdef HAVE_LCD_CHARCELLS
|
|
|
|
display->double_height(false);
|
|
|
|
#endif
|
2007-06-05 02:57:43 +00:00
|
|
|
gui_list_select_at_offset(gui_list, 0);
|
2005-10-28 00:00:00 +00:00
|
|
|
}
|
|
|
|
|
2006-08-23 20:02:06 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2006-12-25 14:01:47 +00:00
|
|
|
static int gui_list_get_item_offset(struct gui_list * gui_list, int item_width,
|
2006-08-23 20:02:06 +00:00
|
|
|
int text_pos)
|
|
|
|
{
|
|
|
|
struct screen * display=gui_list->display;
|
|
|
|
int item_offset;
|
2007-03-11 10:52:36 +00:00
|
|
|
|
2006-08-23 20:02:06 +00:00
|
|
|
if (offset_out_of_view)
|
|
|
|
{
|
|
|
|
item_offset = gui_list->offset_position;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* if text is smaller then view */
|
|
|
|
if (item_width <= display->width - text_pos)
|
|
|
|
{
|
|
|
|
item_offset = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* if text got out of view */
|
2007-03-11 10:52:36 +00:00
|
|
|
if (gui_list->offset_position >
|
2006-08-23 20:02:06 +00:00
|
|
|
item_width - (display->width - text_pos))
|
|
|
|
item_offset = item_width - (display->width - text_pos);
|
|
|
|
else
|
|
|
|
item_offset = gui_list->offset_position;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return item_offset;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2007-02-23 21:52:45 +00:00
|
|
|
/*
|
|
|
|
* Draws the list on the attached screen
|
|
|
|
* - gui_list : the list structure
|
|
|
|
*/
|
2007-03-11 10:52:36 +00:00
|
|
|
static void gui_list_draw_smart(struct gui_list *gui_list)
|
2005-10-28 00:00:00 +00:00
|
|
|
{
|
|
|
|
struct screen * display=gui_list->display;
|
|
|
|
int text_pos;
|
2007-03-01 18:25:13 +00:00
|
|
|
bool draw_icons = (gui_list->callback_get_item_icon != NULL && global_settings.show_icons);
|
2005-10-28 00:00:00 +00:00
|
|
|
bool draw_cursor;
|
|
|
|
int i;
|
2006-08-15 08:14:46 +00:00
|
|
|
int lines;
|
2007-06-21 13:21:33 +00:00
|
|
|
static int last_lines[NB_SCREENS] = {0};
|
2006-08-23 20:02:06 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
int item_offset;
|
2007-03-11 08:05:05 +00:00
|
|
|
int old_margin = display->getxmargin();
|
2006-08-23 20:02:06 +00:00
|
|
|
#endif
|
2007-03-11 10:52:36 +00:00
|
|
|
int start, end;
|
|
|
|
bool partial_draw = false;
|
2006-08-23 20:02:06 +00:00
|
|
|
|
2007-04-29 15:31:43 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
display->setfont(FONT_UI);
|
2007-06-21 13:21:33 +00:00
|
|
|
gui_textarea_update_nblines(display);
|
2007-04-29 15:31:43 +00:00
|
|
|
#endif
|
2007-03-11 10:52:36 +00:00
|
|
|
/* Speed up UI by drawing the changed contents only. */
|
|
|
|
if (gui_list == last_list_displayed[gui_list->display->screen_type]
|
|
|
|
&& gui_list->last_displayed_start_item == gui_list->start_item
|
|
|
|
&& gui_list->selected_size == 1)
|
|
|
|
{
|
|
|
|
partial_draw = true;
|
|
|
|
}
|
2005-10-28 23:52:49 +00:00
|
|
|
|
2007-06-21 13:21:33 +00:00
|
|
|
lines = display->nb_lines - SHOW_LIST_TITLE;
|
|
|
|
if (last_lines[display->screen_type] != lines)
|
|
|
|
{
|
|
|
|
gui_list_select_at_offset(gui_list, 0);
|
|
|
|
last_lines[display->screen_type] = lines;
|
|
|
|
}
|
2007-03-11 10:52:36 +00:00
|
|
|
|
|
|
|
if (partial_draw)
|
|
|
|
{
|
|
|
|
end = gui_list->last_displayed_selected_item - gui_list->start_item;
|
|
|
|
i = gui_list->selected_item - gui_list->start_item;
|
|
|
|
if (i < end )
|
|
|
|
{
|
|
|
|
start = i;
|
|
|
|
end++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
start = end;
|
|
|
|
end = i + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gui_textarea_clear(display);
|
|
|
|
start = 0;
|
|
|
|
end = display->nb_lines;
|
|
|
|
gui_list->last_displayed_start_item = gui_list->start_item;
|
|
|
|
last_list_displayed[gui_list->display->screen_type] = gui_list;
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_list->last_displayed_selected_item = gui_list->selected_item;
|
2006-08-23 20:02:06 +00:00
|
|
|
|
2007-03-11 10:52:36 +00:00
|
|
|
/* position and draw the list title & icon */
|
|
|
|
if (SHOW_LIST_TITLE && !partial_draw)
|
|
|
|
{
|
2007-03-01 18:25:13 +00:00
|
|
|
if (gui_list->title_icon != NOICON && draw_icons)
|
2006-08-23 20:02:06 +00:00
|
|
|
{
|
2007-04-16 09:14:36 +00:00
|
|
|
screen_put_icon(display, 0, 0, gui_list->title_icon);
|
2006-08-23 20:02:06 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2007-04-16 09:14:36 +00:00
|
|
|
text_pos = get_icon_width(display->screen_type)+2; /* pixels */
|
2006-08-23 20:02:06 +00:00
|
|
|
#else
|
|
|
|
text_pos = 1; /* chars */
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
text_pos = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2007-06-17 21:16:34 +00:00
|
|
|
int title_style = STYLE_DEFAULT;
|
|
|
|
#ifdef HAVE_LCD_COLOR
|
|
|
|
if (gui_list->title_color >= 0)
|
|
|
|
{
|
|
|
|
title_style |= STYLE_COLORED;
|
|
|
|
title_style |= gui_list->title_color;
|
|
|
|
}
|
|
|
|
#endif
|
2006-08-23 20:02:06 +00:00
|
|
|
screen_set_xmargin(display, text_pos); /* margin for title */
|
|
|
|
item_offset = gui_list_get_item_offset(gui_list, gui_list->title_width,
|
|
|
|
text_pos);
|
|
|
|
if (item_offset > gui_list->title_width - (display->width - text_pos))
|
2007-06-17 21:16:34 +00:00
|
|
|
display->puts_style_offset(0, 0, gui_list->title,
|
|
|
|
title_style, item_offset);
|
2006-08-23 20:02:06 +00:00
|
|
|
else
|
2007-06-17 21:16:34 +00:00
|
|
|
display->puts_scroll_style_offset(0, 0, gui_list->title,
|
|
|
|
title_style, item_offset);
|
2006-08-23 20:02:06 +00:00
|
|
|
#else
|
|
|
|
display->puts_scroll(text_pos, 0, gui_list->title);
|
|
|
|
#endif
|
2006-08-15 08:14:46 +00:00
|
|
|
}
|
2006-08-23 20:02:06 +00:00
|
|
|
|
|
|
|
/* Adjust the position of icon, cursor, text for the list */
|
2005-10-28 00:00:00 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2005-11-01 23:56:03 +00:00
|
|
|
gui_textarea_update_nblines(display);
|
2006-08-15 08:14:46 +00:00
|
|
|
bool draw_scrollbar;
|
2006-08-23 20:02:06 +00:00
|
|
|
|
2006-08-15 08:14:46 +00:00
|
|
|
draw_scrollbar = (global_settings.scrollbar &&
|
|
|
|
lines < gui_list->nb_items);
|
2007-03-11 10:52:36 +00:00
|
|
|
|
2007-09-27 15:42:55 +00:00
|
|
|
draw_cursor = !global_settings.cursor_style &&
|
2007-06-07 12:14:31 +00:00
|
|
|
gui_list->show_selection_marker;
|
2005-10-28 00:00:00 +00:00
|
|
|
text_pos = 0; /* here it's in pixels */
|
2006-12-09 12:27:04 +00:00
|
|
|
if(draw_scrollbar || SHOW_LIST_TITLE) /* indent if there's
|
|
|
|
a title */
|
2005-10-28 00:00:00 +00:00
|
|
|
{
|
|
|
|
text_pos += SCROLLBAR_WIDTH;
|
|
|
|
}
|
2007-04-16 09:14:36 +00:00
|
|
|
if(draw_cursor)
|
|
|
|
text_pos += get_icon_width(display->screen_type) + 2;
|
2005-10-28 23:52:49 +00:00
|
|
|
|
2005-10-28 00:00:00 +00:00
|
|
|
if(draw_icons)
|
2007-04-16 09:14:36 +00:00
|
|
|
text_pos += get_icon_width(display->screen_type) + 2;
|
2005-10-28 00:00:00 +00:00
|
|
|
#else
|
|
|
|
draw_cursor = true;
|
|
|
|
if(draw_icons)
|
|
|
|
text_pos = 2; /* here it's in chars */
|
|
|
|
else
|
|
|
|
text_pos = 1;
|
|
|
|
#endif
|
|
|
|
|
2005-11-01 23:56:03 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2006-08-23 20:02:06 +00:00
|
|
|
screen_set_xmargin(display, text_pos); /* margin for list */
|
2005-10-28 00:00:00 +00:00
|
|
|
#endif
|
|
|
|
|
2007-03-11 10:52:36 +00:00
|
|
|
if (SHOW_LIST_TITLE)
|
|
|
|
{
|
|
|
|
start++;
|
|
|
|
if (end < display->nb_lines)
|
|
|
|
end++;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = start; i < end; i++)
|
2005-10-28 00:00:00 +00:00
|
|
|
{
|
2007-03-05 00:32:33 +00:00
|
|
|
unsigned char *s;
|
2005-10-28 00:00:00 +00:00
|
|
|
char entry_buffer[MAX_PATH];
|
2005-12-05 23:37:14 +00:00
|
|
|
unsigned char *entry_name;
|
2007-03-11 10:52:36 +00:00
|
|
|
int current_item = gui_list->start_item +
|
2006-12-09 12:27:04 +00:00
|
|
|
(SHOW_LIST_TITLE ? i-1 : i);
|
2005-10-28 23:52:49 +00:00
|
|
|
|
2005-10-28 00:00:00 +00:00
|
|
|
/* When there are less items to display than the
|
|
|
|
* current available space on the screen, we stop*/
|
|
|
|
if(current_item >= gui_list->nb_items)
|
|
|
|
break;
|
2007-03-05 00:32:33 +00:00
|
|
|
s = gui_list->callback_get_item_name(current_item,
|
|
|
|
gui_list->data,
|
|
|
|
entry_buffer);
|
|
|
|
entry_name = P2STR(s);
|
|
|
|
|
2005-10-28 00:00:00 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2007-06-17 21:29:24 +00:00
|
|
|
int style = STYLE_DEFAULT;
|
2006-01-22 04:24:26 +00:00
|
|
|
/* position the string at the correct offset place */
|
|
|
|
int item_width,h;
|
|
|
|
display->getstringsize(entry_name, &item_width, &h);
|
2006-08-23 20:02:06 +00:00
|
|
|
item_offset = gui_list_get_item_offset(gui_list, item_width, text_pos);
|
2006-01-22 04:24:26 +00:00
|
|
|
#endif
|
2006-08-23 20:02:06 +00:00
|
|
|
|
2007-06-17 21:16:34 +00:00
|
|
|
#ifdef HAVE_LCD_COLOR
|
|
|
|
/* if the list has a color callback */
|
|
|
|
if (gui_list->callback_get_item_color)
|
|
|
|
{
|
|
|
|
int color = gui_list->callback_get_item_color(current_item,
|
|
|
|
gui_list->data);
|
|
|
|
/* if color selected */
|
|
|
|
if (color >= 0)
|
|
|
|
{
|
|
|
|
style |= STYLE_COLORED;
|
|
|
|
style |= color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2007-06-07 12:14:31 +00:00
|
|
|
if(gui_list->show_selection_marker &&
|
|
|
|
current_item >= gui_list->selected_item &&
|
2006-08-23 20:02:06 +00:00
|
|
|
current_item < gui_list->selected_item + gui_list->selected_size)
|
2006-07-02 12:28:27 +00:00
|
|
|
{/* The selected item must be displayed scrolling */
|
2006-01-22 01:42:05 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2007-09-27 15:42:55 +00:00
|
|
|
if (global_settings.cursor_style == 1
|
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
|| display->screen_type == SCREEN_REMOTE
|
|
|
|
#endif
|
|
|
|
)
|
2007-03-11 10:52:36 +00:00
|
|
|
{
|
2007-09-27 15:42:55 +00:00
|
|
|
/* Display inverted-line-style */
|
2007-06-17 21:16:34 +00:00
|
|
|
style |= STYLE_INVERT;
|
2007-03-11 10:52:36 +00:00
|
|
|
}
|
2007-09-27 15:42:55 +00:00
|
|
|
#ifdef HAVE_LCD_COLOR
|
|
|
|
else if (global_settings.cursor_style == 2)
|
|
|
|
{
|
|
|
|
/* Display colour line selector */
|
|
|
|
style |= STYLE_COLORBAR;
|
|
|
|
}
|
|
|
|
else if (global_settings.cursor_style == 3)
|
|
|
|
{
|
|
|
|
/* Display gradient line selector */
|
2007-09-28 19:47:28 +00:00
|
|
|
style = STYLE_GRADIENT;
|
2007-09-28 13:49:43 +00:00
|
|
|
|
|
|
|
/* Make the lcd driver know how many lines the gradient should
|
|
|
|
cover and only draw it for the first selected item. */
|
|
|
|
if (current_item == gui_list->selected_item)
|
|
|
|
style |= gui_list->selected_size & STYLE_COLOR_MASK;
|
2007-09-27 15:42:55 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
else /* if (!global_settings.cursor_style) */
|
2007-03-11 10:52:36 +00:00
|
|
|
{
|
2007-05-12 14:13:23 +00:00
|
|
|
if (current_item % gui_list->selected_size != 0)
|
|
|
|
draw_cursor = false;
|
2007-03-11 10:52:36 +00:00
|
|
|
}
|
2007-06-17 21:16:34 +00:00
|
|
|
/* if the text is smaller than the viewport size */
|
|
|
|
if (item_offset > item_width - (display->width - text_pos))
|
|
|
|
{
|
|
|
|
/* don't scroll */
|
|
|
|
display->puts_style_offset(0, i, entry_name,
|
|
|
|
style, item_offset);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
display->puts_scroll_style_offset(0, i, entry_name,
|
|
|
|
style, item_offset);
|
|
|
|
}
|
2005-10-28 00:00:00 +00:00
|
|
|
#else
|
2007-03-11 10:52:36 +00:00
|
|
|
display->puts_scroll(text_pos, i, entry_name);
|
2005-10-28 00:00:00 +00:00
|
|
|
#endif
|
|
|
|
|
2007-03-11 10:52:36 +00:00
|
|
|
if (draw_cursor)
|
2007-04-16 09:14:36 +00:00
|
|
|
{
|
|
|
|
screen_put_icon_with_offset(display, 0, i,
|
|
|
|
(draw_scrollbar || SHOW_LIST_TITLE)?
|
|
|
|
SCROLLBAR_WIDTH: 0,
|
|
|
|
0, Icon_Cursor);
|
|
|
|
}
|
2005-10-28 00:00:00 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{/* normal item */
|
2006-07-02 12:28:27 +00:00
|
|
|
if(gui_list->scroll_all)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2007-06-17 21:16:34 +00:00
|
|
|
display->puts_scroll_style_offset(0, i, entry_name,
|
|
|
|
style, item_offset);
|
2006-07-02 12:28:27 +00:00
|
|
|
#else
|
|
|
|
display->puts_scroll(text_pos, i, entry_name);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2005-10-28 00:00:00 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2007-06-17 21:16:34 +00:00
|
|
|
display->puts_style_offset(0, i, entry_name,
|
|
|
|
style, item_offset);
|
2005-10-28 00:00:00 +00:00
|
|
|
#else
|
2006-07-02 12:28:27 +00:00
|
|
|
display->puts(text_pos, i, entry_name);
|
2005-10-28 00:00:00 +00:00
|
|
|
#endif
|
2006-07-02 12:28:27 +00:00
|
|
|
}
|
2005-10-28 00:00:00 +00:00
|
|
|
}
|
|
|
|
/* Icons display */
|
|
|
|
if(draw_icons)
|
|
|
|
{
|
2007-04-16 09:14:36 +00:00
|
|
|
enum themable_icons icon;
|
|
|
|
icon = gui_list->callback_get_item_icon(current_item, gui_list->data);
|
|
|
|
if(icon > Icon_NOICON)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
int x = draw_cursor?1:0;
|
|
|
|
int x_off = (draw_scrollbar || SHOW_LIST_TITLE) ? SCROLLBAR_WIDTH: 0;
|
|
|
|
screen_put_icon_with_offset(display, x, i,
|
|
|
|
x_off, 0, icon);
|
|
|
|
#else
|
|
|
|
screen_put_icon(display, 1, i, icon);
|
|
|
|
#endif
|
|
|
|
}
|
2005-10-28 00:00:00 +00:00
|
|
|
}
|
|
|
|
}
|
2007-03-11 10:52:36 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2005-10-28 00:00:00 +00:00
|
|
|
/* Draw the scrollbar if needed*/
|
|
|
|
if(draw_scrollbar)
|
|
|
|
{
|
2005-11-01 23:56:03 +00:00
|
|
|
int y_start = gui_textarea_get_ystart(display);
|
2006-12-09 12:27:04 +00:00
|
|
|
if (SHOW_LIST_TITLE)
|
2006-08-15 08:14:46 +00:00
|
|
|
y_start += display->char_height;
|
2005-10-28 00:00:00 +00:00
|
|
|
int scrollbar_y_end = display->char_height *
|
2006-08-15 08:14:46 +00:00
|
|
|
lines + y_start;
|
2005-11-01 23:56:03 +00:00
|
|
|
gui_scrollbar_draw(display, 0, y_start, SCROLLBAR_WIDTH-1,
|
|
|
|
scrollbar_y_end - y_start, gui_list->nb_items,
|
2005-10-28 00:00:00 +00:00
|
|
|
gui_list->start_item,
|
2006-11-01 12:03:27 +00:00
|
|
|
gui_list->start_item + lines, VERTICAL);
|
2005-10-28 00:00:00 +00:00
|
|
|
}
|
2007-03-10 12:43:21 +00:00
|
|
|
|
2007-03-11 08:05:05 +00:00
|
|
|
screen_set_xmargin(display, old_margin);
|
2006-08-15 12:23:55 +00:00
|
|
|
#endif
|
2006-08-23 20:02:06 +00:00
|
|
|
|
2005-11-01 23:56:03 +00:00
|
|
|
gui_textarea_update(display);
|
2005-10-28 00:00:00 +00:00
|
|
|
}
|
|
|
|
|
2007-03-11 10:52:36 +00:00
|
|
|
/*
|
|
|
|
* Force a full screen update.
|
|
|
|
*/
|
|
|
|
static void gui_list_draw(struct gui_list *gui_list)
|
|
|
|
{
|
|
|
|
last_list_displayed[gui_list->display->screen_type] = NULL;
|
|
|
|
return gui_list_draw_smart(gui_list);
|
|
|
|
}
|
|
|
|
|
2007-02-23 21:52:45 +00:00
|
|
|
/*
|
|
|
|
* Selects an item in the list
|
|
|
|
* - gui_list : the list structure
|
|
|
|
* - item_number : the number of the item which will be selected
|
|
|
|
*/
|
|
|
|
static void gui_list_select_item(struct gui_list * gui_list, int item_number)
|
2005-10-28 00:00:00 +00:00
|
|
|
{
|
|
|
|
if( item_number > gui_list->nb_items-1 || item_number < 0 )
|
|
|
|
return;
|
|
|
|
gui_list->selected_item = item_number;
|
2007-06-05 02:57:43 +00:00
|
|
|
gui_list_select_at_offset(gui_list, 0);
|
2005-10-28 00:00:00 +00:00
|
|
|
}
|
|
|
|
|
2007-06-05 02:57:43 +00:00
|
|
|
/* select an item above the current one */
|
2007-06-10 08:18:19 +00:00
|
|
|
static void gui_list_select_above(struct gui_list * gui_list,
|
|
|
|
int items, int nb_lines)
|
2007-03-11 10:52:36 +00:00
|
|
|
{
|
2007-06-05 02:57:43 +00:00
|
|
|
gui_list->selected_item -= items;
|
2007-06-07 12:14:31 +00:00
|
|
|
|
2007-06-05 02:57:43 +00:00
|
|
|
/* in bottom "3rd" of the screen, so dont move the start item.
|
|
|
|
by 3rd I mean above SCROLL_LIMIT lines above the end of the screen */
|
|
|
|
if (items && gui_list->start_item + SCROLL_LIMIT < gui_list->selected_item)
|
2007-06-07 12:14:31 +00:00
|
|
|
{
|
|
|
|
if (gui_list->show_selection_marker == false)
|
|
|
|
{
|
|
|
|
gui_list->start_item -= items;
|
|
|
|
if (gui_list->start_item < 0)
|
|
|
|
gui_list->start_item = 0;
|
|
|
|
}
|
2007-06-05 02:57:43 +00:00
|
|
|
return;
|
2007-06-07 12:14:31 +00:00
|
|
|
}
|
2007-06-05 02:57:43 +00:00
|
|
|
if (gui_list->selected_item < 0)
|
2007-03-11 10:52:36 +00:00
|
|
|
{
|
2007-06-05 02:57:43 +00:00
|
|
|
if(gui_list->limit_scroll)
|
2007-03-11 10:52:36 +00:00
|
|
|
{
|
2007-06-05 02:57:43 +00:00
|
|
|
gui_list->selected_item = 0;
|
|
|
|
gui_list->start_item = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gui_list->selected_item += gui_list->nb_items;
|
|
|
|
if (global_settings.scroll_paginated)
|
2007-05-27 15:08:56 +00:00
|
|
|
{
|
2007-06-05 02:57:43 +00:00
|
|
|
gui_list->start_item = gui_list->nb_items - nb_lines;
|
2007-05-27 15:08:56 +00:00
|
|
|
}
|
2007-03-11 10:52:36 +00:00
|
|
|
}
|
2007-06-05 02:57:43 +00:00
|
|
|
}
|
|
|
|
if (gui_list->nb_items > nb_lines)
|
|
|
|
{
|
2007-05-27 15:08:56 +00:00
|
|
|
if (global_settings.scroll_paginated)
|
2007-03-11 10:52:36 +00:00
|
|
|
{
|
2007-06-05 02:57:43 +00:00
|
|
|
if (gui_list->start_item > gui_list->selected_item)
|
|
|
|
gui_list->start_item = MAX(0, gui_list->start_item - nb_lines);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int top_of_screen = gui_list->selected_item - SCROLL_LIMIT;
|
|
|
|
int temp = MIN(top_of_screen, gui_list->nb_items - nb_lines);
|
|
|
|
gui_list->start_item = MAX(0, temp);
|
2007-03-11 10:52:36 +00:00
|
|
|
}
|
|
|
|
}
|
2007-06-05 02:57:43 +00:00
|
|
|
else gui_list->start_item = 0;
|
|
|
|
if (gui_list->selected_size > 1)
|
2005-10-28 00:00:00 +00:00
|
|
|
{
|
2007-06-05 02:57:43 +00:00
|
|
|
if (gui_list->start_item + nb_lines == gui_list->selected_item)
|
|
|
|
gui_list->start_item++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* select an item below the current one */
|
2007-06-10 08:18:19 +00:00
|
|
|
static void gui_list_select_below(struct gui_list * gui_list,
|
|
|
|
int items, int nb_lines)
|
2007-06-05 02:57:43 +00:00
|
|
|
{
|
2007-06-07 12:14:31 +00:00
|
|
|
int bottom;
|
2007-06-05 02:57:43 +00:00
|
|
|
|
|
|
|
gui_list->selected_item += items;
|
2007-06-07 12:14:31 +00:00
|
|
|
bottom = gui_list->nb_items - nb_lines;
|
|
|
|
|
|
|
|
/* always move the screen if selection isnt "visible" */
|
|
|
|
if (items && gui_list->show_selection_marker == false)
|
|
|
|
{
|
|
|
|
if (bottom < 0)
|
|
|
|
bottom = 0;
|
|
|
|
gui_list->start_item = MIN(bottom, gui_list->start_item +
|
|
|
|
items);
|
|
|
|
return;
|
|
|
|
}
|
2007-06-05 02:57:43 +00:00
|
|
|
/* in top "3rd" of the screen, so dont move the start item */
|
|
|
|
if (items &&
|
|
|
|
(gui_list->start_item + nb_lines - SCROLL_LIMIT > gui_list->selected_item)
|
|
|
|
&& (gui_list->selected_item < gui_list->nb_items))
|
2007-06-07 12:14:31 +00:00
|
|
|
{
|
|
|
|
if (gui_list->show_selection_marker == false)
|
|
|
|
{
|
|
|
|
if (bottom < 0)
|
|
|
|
bottom = 0;
|
|
|
|
gui_list->start_item = MIN(bottom,
|
|
|
|
gui_list->start_item + items);
|
|
|
|
}
|
2007-06-05 02:57:43 +00:00
|
|
|
return;
|
2007-06-07 12:14:31 +00:00
|
|
|
}
|
2007-06-05 02:57:43 +00:00
|
|
|
|
|
|
|
if (gui_list->selected_item >= gui_list->nb_items)
|
|
|
|
{
|
|
|
|
if(gui_list->limit_scroll)
|
2007-05-27 15:08:56 +00:00
|
|
|
{
|
2007-06-05 02:57:43 +00:00
|
|
|
gui_list->selected_item = gui_list->nb_items-gui_list->selected_size;
|
|
|
|
gui_list->start_item = MAX(0,gui_list->nb_items - nb_lines);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gui_list->selected_item = 0;
|
|
|
|
gui_list->start_item = 0;
|
2007-05-27 15:08:56 +00:00
|
|
|
}
|
2007-06-05 02:57:43 +00:00
|
|
|
return;
|
|
|
|
}
|
2007-06-07 12:14:31 +00:00
|
|
|
|
2007-06-05 02:57:43 +00:00
|
|
|
if (gui_list->nb_items > nb_lines)
|
|
|
|
{
|
2007-05-27 15:08:56 +00:00
|
|
|
if (global_settings.scroll_paginated)
|
|
|
|
{
|
2007-06-05 02:57:43 +00:00
|
|
|
if (gui_list->start_item + nb_lines <= gui_list->selected_item)
|
|
|
|
gui_list->start_item = MIN(bottom, gui_list->selected_item);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int top_of_screen = gui_list->selected_item + SCROLL_LIMIT - nb_lines;
|
|
|
|
int temp = MAX(0, top_of_screen);
|
|
|
|
gui_list->start_item = MIN(bottom, temp);
|
2007-05-27 15:08:56 +00:00
|
|
|
}
|
2005-10-28 00:00:00 +00:00
|
|
|
}
|
2007-06-05 02:57:43 +00:00
|
|
|
else gui_list->start_item = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void gui_list_select_at_offset(struct gui_list * gui_list, int offset)
|
|
|
|
{
|
2007-06-10 08:18:19 +00:00
|
|
|
/* do this here instead of in both select_above and select_below */
|
|
|
|
int nb_lines = gui_list->display->nb_lines;
|
|
|
|
if (SHOW_LIST_TITLE)
|
|
|
|
nb_lines--;
|
|
|
|
|
2007-06-05 02:57:43 +00:00
|
|
|
if (gui_list->selected_size > 1)
|
|
|
|
{
|
|
|
|
offset *= gui_list->selected_size;
|
|
|
|
/* always select the first item of multi-line lists */
|
|
|
|
offset -= offset%gui_list->selected_size;
|
|
|
|
}
|
2007-06-09 09:41:13 +00:00
|
|
|
if (offset == 0 && global_settings.scroll_paginated &&
|
2007-06-10 08:18:19 +00:00
|
|
|
(gui_list->nb_items > nb_lines))
|
2007-06-09 09:41:13 +00:00
|
|
|
{
|
2007-06-10 08:18:19 +00:00
|
|
|
int bottom = gui_list->nb_items - nb_lines;
|
|
|
|
gui_list->start_item = MIN(gui_list->selected_item, bottom);
|
2007-06-09 09:41:13 +00:00
|
|
|
}
|
|
|
|
else if (offset < 0)
|
2007-06-10 08:18:19 +00:00
|
|
|
gui_list_select_above(gui_list, -offset, nb_lines);
|
2007-06-05 02:57:43 +00:00
|
|
|
else
|
2007-06-10 08:18:19 +00:00
|
|
|
gui_list_select_below(gui_list, offset, nb_lines);
|
2005-10-28 00:00:00 +00:00
|
|
|
}
|
|
|
|
|
2007-02-23 21:52:45 +00:00
|
|
|
/*
|
|
|
|
* Adds an item to the list (the callback will be asked for one more item)
|
|
|
|
* - gui_list : the list structure
|
|
|
|
*/
|
|
|
|
static void gui_list_add_item(struct gui_list * gui_list)
|
2005-10-28 00:00:00 +00:00
|
|
|
{
|
2005-10-29 02:33:19 +00:00
|
|
|
gui_list->nb_items++;
|
2005-10-28 00:00:00 +00:00
|
|
|
/* if only one item in the list, select it */
|
|
|
|
if(gui_list->nb_items == 1)
|
|
|
|
gui_list->selected_item = 0;
|
|
|
|
}
|
|
|
|
|
2007-02-23 21:52:45 +00:00
|
|
|
/*
|
|
|
|
* Removes an item to the list (the callback will be asked for one less item)
|
|
|
|
* - gui_list : the list structure
|
|
|
|
*/
|
|
|
|
static void gui_list_del_item(struct gui_list * gui_list)
|
2005-10-28 00:00:00 +00:00
|
|
|
{
|
|
|
|
if(gui_list->nb_items > 0)
|
|
|
|
{
|
2005-11-01 23:56:03 +00:00
|
|
|
gui_textarea_update_nblines(gui_list->display);
|
|
|
|
int nb_lines = gui_list->display->nb_lines;
|
|
|
|
|
2005-10-28 00:00:00 +00:00
|
|
|
int dist_selected_from_end = gui_list->nb_items
|
|
|
|
- gui_list->selected_item - 1;
|
|
|
|
int dist_start_from_end = gui_list->nb_items
|
|
|
|
- gui_list->start_item - 1;
|
|
|
|
if(dist_selected_from_end == 0)
|
|
|
|
{
|
|
|
|
/* Oops we are removing the selected item,
|
|
|
|
select the previous one */
|
2005-10-29 02:33:19 +00:00
|
|
|
gui_list->selected_item--;
|
2005-10-28 00:00:00 +00:00
|
|
|
}
|
2005-10-29 02:33:19 +00:00
|
|
|
gui_list->nb_items--;
|
2005-10-28 23:52:49 +00:00
|
|
|
|
2005-10-28 00:00:00 +00:00
|
|
|
/* scroll the list if needed */
|
|
|
|
if( (dist_start_from_end < nb_lines) && (gui_list->start_item != 0) )
|
2005-10-29 02:33:19 +00:00
|
|
|
gui_list->start_item--;
|
2005-10-28 00:00:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-01-22 04:24:26 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2007-02-23 21:52:45 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Makes all the item in the list scroll by one step to the right.
|
|
|
|
* Should stop increasing the value when reaching the widest item value
|
|
|
|
* in the list.
|
|
|
|
*/
|
|
|
|
static void gui_list_scroll_right(struct gui_list * gui_list)
|
2006-01-22 04:24:26 +00:00
|
|
|
{
|
2007-03-11 10:52:36 +00:00
|
|
|
/* FIXME: This is a fake right boundry limiter. there should be some
|
|
|
|
* callback function to find the longest item on the list in pixels,
|
|
|
|
* to stop the list from scrolling past that point */
|
2006-01-22 04:24:26 +00:00
|
|
|
gui_list->offset_position+=offset_step;
|
|
|
|
if (gui_list->offset_position > 1000)
|
|
|
|
gui_list->offset_position = 1000;
|
|
|
|
}
|
|
|
|
|
2007-02-23 21:52:45 +00:00
|
|
|
/*
|
|
|
|
* Makes all the item in the list scroll by one step to the left.
|
|
|
|
* stops at starting position.
|
|
|
|
*/
|
|
|
|
static void gui_list_scroll_left(struct gui_list * gui_list)
|
2006-01-22 04:24:26 +00:00
|
|
|
{
|
|
|
|
gui_list->offset_position-=offset_step;
|
|
|
|
if (gui_list->offset_position < 0)
|
|
|
|
gui_list->offset_position = 0;
|
|
|
|
}
|
|
|
|
void gui_list_screen_scroll_step(int ofs)
|
|
|
|
{
|
|
|
|
offset_step = ofs;
|
|
|
|
}
|
|
|
|
|
|
|
|
void gui_list_screen_scroll_out_of_view(bool enable)
|
|
|
|
{
|
|
|
|
if (enable)
|
|
|
|
offset_out_of_view = true;
|
|
|
|
else
|
|
|
|
offset_out_of_view = false;
|
|
|
|
}
|
|
|
|
#endif /* HAVE_LCD_BITMAP */
|
2006-08-15 12:23:55 +00:00
|
|
|
|
2007-02-23 21:52:45 +00:00
|
|
|
/*
|
|
|
|
* Set the title and title icon of the list. Setting title to NULL disables
|
|
|
|
* both the title and icon. Use NOICON if there is no icon.
|
|
|
|
*/
|
2007-04-16 09:14:36 +00:00
|
|
|
static void gui_list_set_title(struct gui_list * gui_list,
|
|
|
|
char * title, enum themable_icons icon)
|
2006-08-15 08:14:46 +00:00
|
|
|
{
|
|
|
|
gui_list->title = title;
|
2006-08-23 20:02:06 +00:00
|
|
|
gui_list->title_icon = icon;
|
2006-08-15 22:14:35 +00:00
|
|
|
if (title) {
|
2006-08-15 12:23:55 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2006-08-15 22:14:35 +00:00
|
|
|
gui_list->display->getstringsize(title, &gui_list->title_width, NULL);
|
2006-08-15 12:23:55 +00:00
|
|
|
#else
|
2006-08-15 22:14:35 +00:00
|
|
|
gui_list->title_width = strlen(title);
|
2006-08-15 12:23:55 +00:00
|
|
|
#endif
|
2006-08-15 22:14:35 +00:00
|
|
|
} else {
|
|
|
|
gui_list->title_width = 0;
|
|
|
|
}
|
2006-08-15 08:14:46 +00:00
|
|
|
}
|
2006-08-15 12:23:55 +00:00
|
|
|
|
2005-10-28 00:00:00 +00:00
|
|
|
/*
|
|
|
|
* Synchronized lists stuffs
|
|
|
|
*/
|
|
|
|
void gui_synclist_init(
|
|
|
|
struct gui_synclist * lists,
|
2005-11-16 02:12:25 +00:00
|
|
|
list_get_name callback_get_item_name,
|
2006-07-02 12:28:27 +00:00
|
|
|
void * data,
|
|
|
|
bool scroll_all,
|
|
|
|
int selected_size
|
2005-10-28 00:00:00 +00:00
|
|
|
)
|
|
|
|
{
|
|
|
|
int i;
|
2005-11-09 22:47:15 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
2005-10-28 00:00:00 +00:00
|
|
|
{
|
2005-10-29 02:33:19 +00:00
|
|
|
gui_list_init(&(lists->gui_list[i]),
|
|
|
|
callback_get_item_name,
|
2006-07-02 12:28:27 +00:00
|
|
|
data, scroll_all, selected_size);
|
2005-10-28 00:00:00 +00:00
|
|
|
gui_list_set_display(&(lists->gui_list[i]), &(screens[i]));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void gui_synclist_set_nb_items(struct gui_synclist * lists, int nb_items)
|
|
|
|
{
|
|
|
|
int i;
|
2005-11-09 22:47:15 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
2005-10-28 00:00:00 +00:00
|
|
|
{
|
|
|
|
gui_list_set_nb_items(&(lists->gui_list[i]), nb_items);
|
2006-01-22 04:24:26 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
lists->gui_list[i].offset_position = 0;
|
|
|
|
#endif
|
2005-10-28 00:00:00 +00:00
|
|
|
}
|
|
|
|
}
|
2006-04-03 08:51:08 +00:00
|
|
|
int gui_synclist_get_nb_items(struct gui_synclist * lists)
|
|
|
|
{
|
|
|
|
return gui_list_get_nb_items(&((lists)->gui_list[0]));
|
|
|
|
}
|
|
|
|
int gui_synclist_get_sel_pos(struct gui_synclist * lists)
|
|
|
|
{
|
|
|
|
return gui_list_get_sel_pos(&((lists)->gui_list[0]));
|
|
|
|
}
|
2006-12-09 10:02:09 +00:00
|
|
|
void gui_synclist_set_icon_callback(struct gui_synclist * lists,
|
|
|
|
list_get_icon icon_callback)
|
2005-11-16 17:23:49 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
{
|
|
|
|
gui_list_set_icon_callback(&(lists->gui_list[i]), icon_callback);
|
|
|
|
}
|
|
|
|
}
|
2005-10-28 00:00:00 +00:00
|
|
|
|
|
|
|
void gui_synclist_draw(struct gui_synclist * lists)
|
|
|
|
{
|
|
|
|
int i;
|
2005-11-09 22:47:15 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
2005-10-28 00:00:00 +00:00
|
|
|
gui_list_draw(&(lists->gui_list[i]));
|
|
|
|
}
|
|
|
|
|
|
|
|
void gui_synclist_select_item(struct gui_synclist * lists, int item_number)
|
|
|
|
{
|
|
|
|
int i;
|
2005-11-09 22:47:15 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
2005-10-28 00:00:00 +00:00
|
|
|
gui_list_select_item(&(lists->gui_list[i]), item_number);
|
|
|
|
}
|
|
|
|
|
2007-02-23 21:52:45 +00:00
|
|
|
static void gui_synclist_select_next_page(struct gui_synclist * lists,
|
2005-10-28 00:00:00 +00:00
|
|
|
enum screen_type screen)
|
|
|
|
{
|
|
|
|
int i;
|
2005-11-09 22:47:15 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
2007-05-27 15:08:56 +00:00
|
|
|
gui_list_select_at_offset(&(lists->gui_list[i]),
|
2005-10-28 00:00:00 +00:00
|
|
|
screens[screen].nb_lines);
|
|
|
|
}
|
|
|
|
|
2007-02-23 21:52:45 +00:00
|
|
|
static void gui_synclist_select_previous_page(struct gui_synclist * lists,
|
2005-10-28 00:00:00 +00:00
|
|
|
enum screen_type screen)
|
|
|
|
{
|
|
|
|
int i;
|
2005-11-09 22:47:15 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
2007-05-27 15:08:56 +00:00
|
|
|
gui_list_select_at_offset(&(lists->gui_list[i]),
|
|
|
|
-screens[screen].nb_lines);
|
2005-10-28 00:00:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void gui_synclist_add_item(struct gui_synclist * lists)
|
|
|
|
{
|
|
|
|
int i;
|
2005-11-09 22:47:15 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
2005-10-28 00:00:00 +00:00
|
|
|
gui_list_add_item(&(lists->gui_list[i]));
|
|
|
|
}
|
|
|
|
|
|
|
|
void gui_synclist_del_item(struct gui_synclist * lists)
|
|
|
|
{
|
|
|
|
int i;
|
2005-11-09 22:47:15 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
2005-10-28 00:00:00 +00:00
|
|
|
gui_list_del_item(&(lists->gui_list[i]));
|
|
|
|
}
|
|
|
|
|
2005-10-28 23:52:49 +00:00
|
|
|
void gui_synclist_limit_scroll(struct gui_synclist * lists, bool scroll)
|
|
|
|
{
|
|
|
|
int i;
|
2005-11-09 22:47:15 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
2005-10-28 23:52:49 +00:00
|
|
|
gui_list_limit_scroll(&(lists->gui_list[i]), scroll);
|
|
|
|
}
|
|
|
|
|
2006-12-09 10:02:09 +00:00
|
|
|
void gui_synclist_set_title(struct gui_synclist * lists,
|
2007-04-16 09:14:36 +00:00
|
|
|
char * title, enum themable_icons icon)
|
2006-08-15 08:14:46 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
FOR_NB_SCREENS(i)
|
2006-08-23 20:02:06 +00:00
|
|
|
gui_list_set_title(&(lists->gui_list[i]), title, icon);
|
2006-08-15 08:14:46 +00:00
|
|
|
}
|
|
|
|
|
2006-01-22 04:24:26 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2007-02-23 21:52:45 +00:00
|
|
|
static void gui_synclist_scroll_right(struct gui_synclist * lists)
|
2006-01-22 04:24:26 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
gui_list_scroll_right(&(lists->gui_list[i]));
|
|
|
|
}
|
|
|
|
|
2007-02-23 21:52:45 +00:00
|
|
|
static void gui_synclist_scroll_left(struct gui_synclist * lists)
|
2006-01-22 04:24:26 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
gui_list_scroll_left(&(lists->gui_list[i]));
|
|
|
|
}
|
|
|
|
#endif /* HAVE_LCD_BITMAP */
|
|
|
|
|
2007-07-22 21:02:24 +00:00
|
|
|
extern intptr_t get_action_data(void);
|
|
|
|
|
2007-09-17 10:08:50 +00:00
|
|
|
bool gui_synclist_do_button(struct gui_synclist * lists,
|
|
|
|
unsigned *actionptr, enum list_wrap wrap)
|
2005-10-28 00:00:00 +00:00
|
|
|
{
|
2007-09-17 10:08:50 +00:00
|
|
|
int action = *actionptr;
|
2006-09-25 11:06:54 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2006-09-25 10:56:38 +00:00
|
|
|
static bool scrolling_left = false;
|
2006-09-25 11:06:54 +00:00
|
|
|
#endif
|
2007-07-22 21:02:24 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
#ifdef HAVE_SCROLLWHEEL
|
|
|
|
int next_item_modifier = button_apply_acceleration(get_action_data(),
|
|
|
|
WHEEL_ACCELERATION_FACTOR);
|
|
|
|
#else
|
2007-05-27 15:08:56 +00:00
|
|
|
static int next_item_modifier = 1;
|
|
|
|
static int last_accel_tick = 0;
|
|
|
|
|
|
|
|
if (global_settings.list_accel_start_delay)
|
|
|
|
{
|
|
|
|
int start_delay = global_settings.list_accel_start_delay * (HZ/2);
|
|
|
|
int accel_wait = global_settings.list_accel_wait * HZ/2;
|
|
|
|
|
|
|
|
if (get_action_statuscode(NULL)&ACTION_REPEAT)
|
|
|
|
{
|
|
|
|
if (!last_accel_tick)
|
|
|
|
last_accel_tick = current_tick + start_delay;
|
|
|
|
else if (current_tick >=
|
|
|
|
last_accel_tick + accel_wait)
|
|
|
|
{
|
|
|
|
last_accel_tick = current_tick;
|
|
|
|
next_item_modifier++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (last_accel_tick)
|
|
|
|
{
|
|
|
|
next_item_modifier = 1;
|
|
|
|
last_accel_tick = 0;
|
|
|
|
}
|
|
|
|
}
|
2007-07-22 21:02:24 +00:00
|
|
|
#endif
|
2006-09-25 10:56:38 +00:00
|
|
|
|
2006-11-06 10:11:51 +00:00
|
|
|
switch (wrap)
|
|
|
|
{
|
|
|
|
case LIST_WRAP_ON:
|
|
|
|
gui_synclist_limit_scroll(lists, false);
|
|
|
|
break;
|
|
|
|
case LIST_WRAP_OFF:
|
|
|
|
gui_synclist_limit_scroll(lists, true);
|
|
|
|
break;
|
|
|
|
case LIST_WRAP_UNLESS_HELD:
|
2007-09-17 10:08:50 +00:00
|
|
|
if (action == ACTION_STD_PREVREPEAT ||
|
|
|
|
action == ACTION_STD_NEXTREPEAT ||
|
|
|
|
action == ACTION_LISTTREE_PGUP ||
|
|
|
|
action == ACTION_LISTTREE_PGDOWN)
|
2006-11-06 10:11:51 +00:00
|
|
|
gui_synclist_limit_scroll(lists, true);
|
|
|
|
else gui_synclist_limit_scroll(lists, false);
|
|
|
|
break;
|
|
|
|
};
|
2007-03-11 10:52:36 +00:00
|
|
|
|
2007-09-17 10:08:50 +00:00
|
|
|
switch (action)
|
2005-10-28 00:00:00 +00:00
|
|
|
{
|
2007-04-08 01:33:01 +00:00
|
|
|
#ifdef HAVE_VOLUME_IN_LIST
|
|
|
|
case ACTION_LIST_VOLUP:
|
|
|
|
global_settings.volume += 2;
|
|
|
|
/* up two because the falthrough brings it down one */
|
|
|
|
case ACTION_LIST_VOLDOWN:
|
|
|
|
global_settings.volume--;
|
2007-05-30 17:57:32 +00:00
|
|
|
setvol();
|
2007-09-17 10:08:50 +00:00
|
|
|
return true;
|
2007-04-08 01:33:01 +00:00
|
|
|
#endif
|
2006-08-15 12:27:07 +00:00
|
|
|
case ACTION_STD_PREV:
|
|
|
|
case ACTION_STD_PREVREPEAT:
|
2007-05-27 15:08:56 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
gui_list_select_at_offset(&(lists->gui_list[i]), -next_item_modifier);
|
2007-07-22 21:02:24 +00:00
|
|
|
#ifndef HAVE_SCROLLWHEEL
|
2007-03-11 10:52:36 +00:00
|
|
|
if (queue_count(&button_queue) < FRAMEDROP_TRIGGER)
|
2007-07-22 21:02:24 +00:00
|
|
|
#endif
|
|
|
|
{
|
2007-03-11 10:52:36 +00:00
|
|
|
gui_synclist_draw(lists);
|
2007-07-22 21:02:24 +00:00
|
|
|
}
|
2006-02-19 13:34:12 +00:00
|
|
|
yield();
|
2007-09-17 10:08:50 +00:00
|
|
|
*actionptr = ACTION_STD_PREV;
|
|
|
|
return true;
|
2005-10-28 00:00:00 +00:00
|
|
|
|
2006-08-15 12:27:07 +00:00
|
|
|
case ACTION_STD_NEXT:
|
|
|
|
case ACTION_STD_NEXTREPEAT:
|
2007-05-27 15:08:56 +00:00
|
|
|
FOR_NB_SCREENS(i)
|
|
|
|
gui_list_select_at_offset(&(lists->gui_list[i]), next_item_modifier);
|
2007-07-22 21:02:24 +00:00
|
|
|
#ifndef HAVE_SCROLLWHEEL
|
2007-03-11 10:52:36 +00:00
|
|
|
if (queue_count(&button_queue) < FRAMEDROP_TRIGGER)
|
2007-07-22 21:02:24 +00:00
|
|
|
#endif
|
|
|
|
{
|
2007-03-11 10:52:36 +00:00
|
|
|
gui_synclist_draw(lists);
|
2007-07-22 21:02:24 +00:00
|
|
|
}
|
2006-02-19 13:34:12 +00:00
|
|
|
yield();
|
2007-09-17 10:08:50 +00:00
|
|
|
*actionptr = ACTION_STD_NEXT;
|
|
|
|
return true;
|
2006-01-22 04:24:26 +00:00
|
|
|
|
2006-08-15 12:27:07 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2007-07-25 12:37:09 +00:00
|
|
|
case ACTION_TREE_PGRIGHT:
|
|
|
|
gui_synclist_scroll_right(lists);
|
|
|
|
gui_synclist_draw(lists);
|
2007-09-17 10:08:50 +00:00
|
|
|
return true;
|
2006-09-25 10:56:38 +00:00
|
|
|
case ACTION_TREE_ROOT_INIT:
|
2006-12-09 10:02:09 +00:00
|
|
|
/* After this button press ACTION_TREE_PGLEFT is allowed
|
|
|
|
to skip to root. ACTION_TREE_ROOT_INIT must be defined in the
|
|
|
|
keymaps as a repeated button press (the same as the repeated
|
|
|
|
ACTION_TREE_PGLEFT) with the pre condition being the non-repeated
|
|
|
|
button press */
|
2006-09-25 10:56:38 +00:00
|
|
|
if (lists->gui_list[0].offset_position == 0)
|
|
|
|
{
|
|
|
|
scrolling_left = false;
|
2007-09-17 10:08:50 +00:00
|
|
|
*actionptr = ACTION_STD_CANCEL;
|
|
|
|
return true;
|
2006-09-25 10:56:38 +00:00
|
|
|
}
|
2007-09-17 10:08:50 +00:00
|
|
|
*actionptr = ACTION_TREE_PGLEFT;
|
2006-08-15 12:27:07 +00:00
|
|
|
case ACTION_TREE_PGLEFT:
|
2006-09-25 10:56:38 +00:00
|
|
|
if(!scrolling_left && (lists->gui_list[0].offset_position == 0))
|
2007-09-17 10:08:50 +00:00
|
|
|
{
|
|
|
|
*actionptr = ACTION_STD_CANCEL;
|
|
|
|
return false;
|
|
|
|
}
|
2006-07-02 12:28:27 +00:00
|
|
|
gui_synclist_scroll_left(lists);
|
|
|
|
gui_synclist_draw(lists);
|
2006-12-09 10:02:09 +00:00
|
|
|
scrolling_left = true; /* stop ACTION_TREE_PAGE_LEFT
|
|
|
|
skipping to root */
|
2007-09-17 10:08:50 +00:00
|
|
|
return true;
|
2006-01-22 01:42:05 +00:00
|
|
|
#endif
|
|
|
|
|
2006-12-09 10:02:09 +00:00
|
|
|
/* for pgup / pgdown, we are obliged to have a different behaviour depending
|
|
|
|
* on the screen for which the user pressed the key since for example, remote
|
|
|
|
* and main screen doesn't have the same number of lines */
|
2006-08-15 12:27:07 +00:00
|
|
|
case ACTION_LISTTREE_PGUP:
|
2007-03-04 07:45:12 +00:00
|
|
|
{
|
|
|
|
int screen =
|
2007-03-04 08:35:20 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
2007-03-04 07:45:12 +00:00
|
|
|
get_action_statuscode(NULL)&ACTION_REMOTE ?
|
|
|
|
SCREEN_REMOTE :
|
|
|
|
#endif
|
|
|
|
SCREEN_MAIN;
|
|
|
|
gui_synclist_select_previous_page(lists, screen);
|
2005-10-28 00:00:00 +00:00
|
|
|
gui_synclist_draw(lists);
|
2006-06-04 17:14:17 +00:00
|
|
|
yield();
|
2007-09-17 10:08:50 +00:00
|
|
|
*actionptr = ACTION_STD_NEXT;
|
2007-03-04 07:45:12 +00:00
|
|
|
}
|
2007-09-17 10:08:50 +00:00
|
|
|
return true;
|
2007-03-04 07:45:12 +00:00
|
|
|
|
2006-08-15 12:27:07 +00:00
|
|
|
case ACTION_LISTTREE_PGDOWN:
|
2007-03-04 07:45:12 +00:00
|
|
|
{
|
|
|
|
int screen =
|
2007-03-04 08:35:20 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
2007-03-04 07:45:12 +00:00
|
|
|
get_action_statuscode(NULL)&ACTION_REMOTE ?
|
|
|
|
SCREEN_REMOTE :
|
|
|
|
#endif
|
|
|
|
SCREEN_MAIN;
|
|
|
|
gui_synclist_select_next_page(lists, screen);
|
2005-10-28 00:00:00 +00:00
|
|
|
gui_synclist_draw(lists);
|
2006-06-04 17:14:17 +00:00
|
|
|
yield();
|
2007-09-17 10:08:50 +00:00
|
|
|
*actionptr = ACTION_STD_PREV;
|
2007-03-04 07:45:12 +00:00
|
|
|
}
|
2007-09-17 10:08:50 +00:00
|
|
|
return true;
|
2005-10-28 00:00:00 +00:00
|
|
|
}
|
2007-09-17 10:08:50 +00:00
|
|
|
return false;
|
2005-10-28 00:00:00 +00:00
|
|
|
}
|
2007-10-20 12:32:55 +00:00
|
|
|
|
|
|
|
/* Simple use list implementation */
|
|
|
|
static int simplelist_line_count = 0;
|
|
|
|
static char simplelist_text[SIMPLELIST_MAX_LINES][SIMPLELIST_MAX_LINELENGTH];
|
|
|
|
/* set the amount of lines shown in the list */
|
|
|
|
void simplelist_set_line_count(int lines)
|
|
|
|
{
|
|
|
|
if (lines < 0)
|
|
|
|
lines = 0;
|
|
|
|
else if (lines > SIMPLELIST_MAX_LINES)
|
|
|
|
lines = SIMPLELIST_MAX_LINES;
|
|
|
|
simplelist_line_count = 0;
|
|
|
|
}
|
|
|
|
/* get the current amount of lines shown */
|
|
|
|
int simplelist_get_line_count(void)
|
|
|
|
{
|
|
|
|
return simplelist_line_count;
|
|
|
|
}
|
|
|
|
/* add/edit a line in the list.
|
|
|
|
if line_number > number of lines shown it adds the line, else it edits the line */
|
|
|
|
void simplelist_addline(int line_number, const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
if (line_number > simplelist_line_count)
|
|
|
|
{
|
|
|
|
if (simplelist_line_count < SIMPLELIST_MAX_LINES)
|
|
|
|
line_number = simplelist_line_count++;
|
|
|
|
else
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
va_start(ap, fmt);
|
|
|
|
vsnprintf(simplelist_text[line_number], SIMPLELIST_MAX_LINELENGTH, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
}
|
|
|
|
|
|
|
|
static char* simplelist_static_getname(int item, void * data, char *buffer)
|
|
|
|
{
|
|
|
|
(void)data; (void)buffer;
|
|
|
|
return simplelist_text[item];
|
|
|
|
}
|
|
|
|
bool simplelist_show_list(struct simplelist_info *info)
|
|
|
|
{
|
|
|
|
struct gui_synclist lists;
|
|
|
|
int action, old_line_count = simplelist_line_count;
|
|
|
|
char* (*getname)(int item, void * data, char *buffer);
|
|
|
|
if (info->get_name)
|
|
|
|
getname = info->get_name;
|
|
|
|
else
|
|
|
|
getname = simplelist_static_getname;
|
|
|
|
gui_synclist_init(&lists, getname, info->callback_data,
|
|
|
|
info->scroll_all, info->selection_size);
|
|
|
|
if (info->title)
|
|
|
|
gui_synclist_set_title(&lists, info->title, NOICON);
|
|
|
|
if (info->get_icon)
|
|
|
|
gui_synclist_set_icon_callback(&lists, info->get_icon);
|
|
|
|
|
|
|
|
gui_synclist_hide_selection_marker(&lists, info->hide_selection);
|
|
|
|
|
|
|
|
if (info->action_callback)
|
|
|
|
info->action_callback(ACTION_REDRAW, &lists);
|
|
|
|
|
|
|
|
if (info->get_name == NULL)
|
|
|
|
gui_synclist_set_nb_items(&lists, simplelist_line_count*info->selection_size);
|
|
|
|
else
|
|
|
|
gui_synclist_set_nb_items(&lists, info->count*info->selection_size);
|
|
|
|
|
|
|
|
gui_synclist_draw(&lists);
|
|
|
|
|
|
|
|
while(1)
|
|
|
|
{
|
|
|
|
gui_syncstatusbar_draw(&statusbars, true);
|
|
|
|
action = get_action(CONTEXT_STD, HZ/5);
|
|
|
|
if (gui_synclist_do_button(&lists, &action, LIST_WRAP_UNLESS_HELD))
|
|
|
|
continue;
|
|
|
|
if (info->action_callback)
|
|
|
|
{
|
|
|
|
action = info->action_callback(action, &lists);
|
|
|
|
if (info->get_name == NULL)
|
|
|
|
gui_synclist_set_nb_items(&lists, simplelist_line_count*info->selection_size);
|
|
|
|
}
|
|
|
|
if (action == ACTION_STD_CANCEL)
|
|
|
|
break;
|
|
|
|
else if ((action == ACTION_REDRAW) || (old_line_count == simplelist_line_count))
|
|
|
|
{
|
|
|
|
if (info->get_name == NULL)
|
|
|
|
gui_synclist_set_nb_items(&lists, simplelist_line_count*info->selection_size);
|
|
|
|
gui_synclist_draw(&lists);
|
|
|
|
}
|
|
|
|
else if(default_event_handler(action) == SYS_USB_CONNECTED)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|