Add missing cabbiev2 800x480 backdrop
[maemo-rb.git] / apps / gui / list.c
blob61738fd45436c67cc159f1dbff8378c7d00a5bb2
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2005 by Kevin Ferrare
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
22 #include <stdarg.h>
23 #include <stdio.h>
24 #include "config.h"
25 #include "lcd.h"
26 #include "font.h"
27 #include "button.h"
28 #include "string.h"
29 #include "settings.h"
30 #include "kernel.h"
31 #include "system.h"
33 #include "action.h"
34 #include "screen_access.h"
35 #include "list.h"
36 #include "scrollbar.h"
37 #include "lang.h"
38 #include "sound.h"
39 #include "misc.h"
40 #include "talk.h"
41 #include "viewport.h"
42 #include "appevents.h"
43 #include "statusbar-skinned.h"
45 /* The minimum number of pending button events in queue before starting
46 * to limit list drawing interval.
48 #define FRAMEDROP_TRIGGER 6
50 #ifdef HAVE_LCD_BITMAP
51 static int offset_step = 16; /* pixels per screen scroll step */
52 /* should lines scroll out of the screen */
53 static bool offset_out_of_view = false;
54 #endif
56 static void gui_list_select_at_offset(struct gui_synclist * gui_list,
57 int offset);
58 void list_draw(struct screen *display, struct gui_synclist *list);
60 #ifdef HAVE_LCD_BITMAP
61 static int list_need_reinit = false;
62 static struct viewport parent[NB_SCREENS];
64 static void list_force_reinit(void *param)
66 (void)param;
67 list_need_reinit = true;
70 void list_init(void)
72 add_event(GUI_EVENT_THEME_CHANGED, false, list_force_reinit);
75 static void list_init_viewports(struct gui_synclist *list)
77 int i, parent_used;
79 if (!list)
80 return;
82 parent_used = (*list->parent != &parent[SCREEN_MAIN]);
84 if (!parent_used)
86 FOR_NB_SCREENS(i)
88 list->parent[i] = &parent[i];
89 viewport_set_defaults(&parent[i], i);
90 #ifdef HAVE_BUTTONBAR
91 if (screens[i].has_buttonbar)
92 list->parent[i]->height -= BUTTONBAR_HEIGHT;
93 #endif
96 list_need_reinit = false;
98 #else
99 static struct viewport parent[NB_SCREENS] =
101 [SCREEN_MAIN] =
103 .x = 0,
104 .y = 0,
105 .width = LCD_WIDTH,
106 .height = LCD_HEIGHT
110 #define list_init_viewports(a)
111 #endif
113 #ifdef HAVE_LCD_BITMAP
114 bool list_display_title(struct gui_synclist *list, enum screen_type screen)
116 return list->title != NULL &&
117 !sb_set_title_text(list->title, list->title_icon, screen) &&
118 viewport_get_nb_lines(list->parent[screen]) > 2;
121 static int list_get_nb_lines(struct gui_synclist *list, enum screen_type screen)
123 struct viewport vp = *list->parent[screen];
124 if (list_display_title(list, screen))
125 vp.height -= font_get(list->parent[screen]->font)->height;
126 return viewport_get_nb_lines(&vp);
128 #else
129 #define list_display_title(l, i) false
130 #define list_get_nb_lines(list, screen) \
131 viewport_get_nb_lines((list)->parent[(screen)]);
132 #endif
135 * Initializes a scrolling list
136 * - gui_list : the list structure to initialize
137 * - callback_get_item_name : pointer to a function that associates a label
138 * to a given item number
139 * - data : extra data passed to the list callback
140 * - scroll_all :
141 * - selected_size :
142 * - parent : the parent viewports to use. NULL means the full screen minus
143 * statusbar if enabled. NOTE: new screens should NOT set this to NULL.
145 void gui_synclist_init(struct gui_synclist * gui_list,
146 list_get_name callback_get_item_name,
147 void * data,
148 bool scroll_all,
149 int selected_size, struct viewport list_parent[NB_SCREENS]
152 int i;
153 gui_list->callback_get_item_icon = NULL;
154 gui_list->callback_get_item_name = callback_get_item_name;
155 gui_list->callback_speak_item = NULL;
156 gui_list->nb_items = 0;
157 gui_list->selected_item = 0;
158 FOR_NB_SCREENS(i)
160 gui_list->start_item[i] = 0;
161 #ifdef HAVE_LCD_BITMAP
162 gui_list->offset_position[i] = 0;
163 #endif
164 if (list_parent)
165 gui_list->parent[i] = &list_parent[i];
166 else
167 gui_list->parent[i] = &parent[i];
169 list_init_viewports(gui_list);
170 gui_list->limit_scroll = false;
171 gui_list->data = data;
172 gui_list->scroll_all = scroll_all;
173 gui_list->selected_size = selected_size;
174 gui_list->title = NULL;
175 gui_list->title_icon = Icon_NOICON;
177 gui_list->scheduled_talk_tick = gui_list->last_talked_tick = 0;
178 gui_list->show_selection_marker = true;
180 #ifdef HAVE_LCD_COLOR
181 gui_list->title_color = -1;
182 gui_list->callback_get_item_color = NULL;
183 #endif
186 /* this toggles the selection bar or cursor */
187 void gui_synclist_hide_selection_marker(struct gui_synclist * lists, bool hide)
189 lists->show_selection_marker = !hide;
193 #ifdef HAVE_LCD_BITMAP
194 int gui_list_get_item_offset(struct gui_synclist * gui_list,
195 int item_width,
196 int text_pos,
197 struct screen * display,
198 struct viewport *vp)
200 int item_offset;
202 if (offset_out_of_view)
204 item_offset = gui_list->offset_position[display->screen_type];
206 else
208 /* if text is smaller than view */
209 if (item_width <= vp->width - text_pos)
211 item_offset = 0;
213 /* if text got out of view */
214 else if (gui_list->offset_position[display->screen_type] >
215 item_width - (vp->width - text_pos))
217 item_offset = item_width - (vp->width - text_pos);
219 else
220 item_offset = gui_list->offset_position[display->screen_type];
223 return item_offset;
225 #endif
228 * Force a full screen update.
230 void gui_synclist_draw(struct gui_synclist *gui_list)
232 int i;
233 #ifdef HAVE_LCD_BITMAP
234 if (list_need_reinit)
236 list_init_viewports(gui_list);
237 gui_synclist_select_item(gui_list, gui_list->selected_item);
239 #endif
240 FOR_NB_SCREENS(i)
242 list_draw(&screens[i], gui_list);
246 /* sets up the list so the selection is shown correctly on the screen */
247 static void gui_list_put_selection_on_screen(struct gui_synclist * gui_list,
248 enum screen_type screen)
250 int nb_lines = list_get_nb_lines(gui_list, screen);
251 int bottom = MAX(0, gui_list->nb_items - nb_lines);
252 int new_start_item = gui_list->start_item[screen];
253 int difference = gui_list->selected_item - gui_list->start_item[screen];
254 #ifdef HAVE_LCD_CHARCELLS
255 const int scroll_limit_up = 0;
256 const int scroll_limit_down = 1;
257 #else
258 const int scroll_limit_up = (nb_lines < gui_list->selected_size+2 ? 0:1);
259 const int scroll_limit_down = (scroll_limit_up+gui_list->selected_size);
260 #endif
262 if (gui_list->show_selection_marker == false)
264 new_start_item = gui_list->selected_item;
266 else if (gui_list->selected_size >= nb_lines)
268 new_start_item = gui_list->selected_item;
270 else if (global_settings.scroll_paginated)
272 nb_lines -= nb_lines%gui_list->selected_size;
273 if (difference < 0 || difference >= nb_lines)
275 new_start_item = gui_list->selected_item -
276 (gui_list->selected_item%nb_lines);
279 else if (difference <= scroll_limit_up) /* list moved up */
281 new_start_item = gui_list->selected_item - scroll_limit_up;
283 else if (difference > nb_lines - scroll_limit_down) /* list moved down */
285 new_start_item = gui_list->selected_item + scroll_limit_down - nb_lines;
287 if (new_start_item < 0)
288 gui_list->start_item[screen] = 0;
289 else if (new_start_item > bottom)
290 gui_list->start_item[screen] = bottom;
291 else
292 gui_list->start_item[screen] = new_start_item;
295 static void _gui_synclist_speak_item(struct gui_synclist *lists)
297 list_speak_item *cb = lists->callback_speak_item;
298 if (cb && lists->nb_items != 0)
300 talk_shutup();
301 /* If we have just very recently started talking, then we want
302 to stay silent for a while until things settle. Likewise if
303 we already had a pending scheduled announcement not yet due
304 we need to reschedule it. */
305 if ((lists->scheduled_talk_tick &&
306 TIME_BEFORE(current_tick, lists->scheduled_talk_tick)) ||
307 (lists->last_talked_tick &&
308 TIME_BEFORE(current_tick, lists->last_talked_tick + HZ/5)))
310 lists->scheduled_talk_tick = current_tick + HZ/5;
312 else
314 lists->scheduled_talk_tick = 0; /* work done */
315 cb(lists->selected_item, lists->data);
316 lists->last_talked_tick = current_tick;
321 void gui_synclist_speak_item(struct gui_synclist *lists)
323 if (global_settings.talk_menu)
325 if (lists->nb_items == 0)
326 talk_id(VOICE_EMPTY_LIST, true);
327 else
328 _gui_synclist_speak_item(lists);
333 * Selects an item in the list
334 * - gui_list : the list structure
335 * - item_number : the number of the item which will be selected
337 void gui_synclist_select_item(struct gui_synclist * gui_list, int item_number)
339 int i;
340 if (item_number >= gui_list->nb_items || item_number < 0)
341 return;
342 if (item_number != gui_list->selected_item)
344 gui_list->selected_item = item_number;
345 _gui_synclist_speak_item(gui_list);
347 FOR_NB_SCREENS(i)
348 gui_list_put_selection_on_screen(gui_list, i);
351 static void gui_list_select_at_offset(struct gui_synclist * gui_list,
352 int offset)
354 int new_selection;
355 if (gui_list->selected_size > 1)
357 offset *= gui_list->selected_size;
360 new_selection = gui_list->selected_item + offset;
362 if (new_selection >= gui_list->nb_items)
364 new_selection = gui_list->limit_scroll ?
365 gui_list->nb_items - gui_list->selected_size : 0;
367 else if (new_selection < 0)
369 new_selection = gui_list->limit_scroll ?
370 0 : gui_list->nb_items - gui_list->selected_size;
372 else if (gui_list->show_selection_marker == false)
374 int i, nb_lines, screen_top;
375 FOR_NB_SCREENS(i)
377 nb_lines = list_get_nb_lines(gui_list, i);
378 if (offset > 0)
380 screen_top = MAX(0, gui_list->nb_items - nb_lines);
381 gui_list->start_item[i] = MIN(screen_top, gui_list->start_item[i] +
382 gui_list->selected_size);
383 gui_list->selected_item = gui_list->start_item[i];
385 else
387 gui_list->start_item[i] = MAX(0, gui_list->start_item[i] -
388 gui_list->selected_size);
389 gui_list->selected_item = gui_list->start_item[i] + nb_lines;
392 return;
394 gui_synclist_select_item(gui_list, new_selection);
398 * Adds an item to the list (the callback will be asked for one more item)
399 * - gui_list : the list structure
401 void gui_synclist_add_item(struct gui_synclist * gui_list)
403 gui_list->nb_items++;
404 /* if only one item in the list, select it */
405 if (gui_list->nb_items == 1)
406 gui_list->selected_item = 0;
410 * Removes an item to the list (the callback will be asked for one less item)
411 * - gui_list : the list structure
413 void gui_synclist_del_item(struct gui_synclist * gui_list)
415 if (gui_list->nb_items > 0)
417 if (gui_list->selected_item == gui_list->nb_items-1)
418 gui_list->selected_item--;
419 gui_list->nb_items--;
420 gui_synclist_select_item(gui_list, gui_list->selected_item);
424 #ifdef HAVE_LCD_BITMAP
425 void gui_list_screen_scroll_step(int ofs)
427 offset_step = ofs;
430 void gui_list_screen_scroll_out_of_view(bool enable)
432 offset_out_of_view = enable;
434 #endif /* HAVE_LCD_BITMAP */
437 * Set the title and title icon of the list. Setting title to NULL disables
438 * both the title and icon. Use NOICON if there is no icon.
440 void gui_synclist_set_title(struct gui_synclist * gui_list,
441 char * title, enum themable_icons icon)
443 gui_list->title = title;
444 gui_list->title_icon = icon;
445 #ifdef HAVE_LCD_BITMAP
446 int i;
447 FOR_NB_SCREENS(i)
448 sb_set_title_text(title, icon, i);
449 #endif
450 send_event(GUI_EVENT_ACTIONUPDATE, (void*)1);
453 void gui_synclist_set_nb_items(struct gui_synclist * lists, int nb_items)
455 #ifdef HAVE_LCD_BITMAP
456 int i;
457 #endif
458 lists->nb_items = nb_items;
459 #ifdef HAVE_LCD_BITMAP
460 FOR_NB_SCREENS(i)
462 lists->offset_position[i] = 0;
464 #endif
466 int gui_synclist_get_nb_items(struct gui_synclist * lists)
468 return lists->nb_items;
470 int gui_synclist_get_sel_pos(struct gui_synclist * lists)
472 return lists->selected_item;
474 void gui_synclist_set_icon_callback(struct gui_synclist * lists,
475 list_get_icon icon_callback)
477 lists->callback_get_item_icon = icon_callback;
480 void gui_synclist_set_voice_callback(struct gui_synclist * lists,
481 list_speak_item voice_callback)
483 lists->callback_speak_item = voice_callback;
486 #ifdef HAVE_LCD_COLOR
487 void gui_synclist_set_color_callback(struct gui_synclist * lists,
488 list_get_color color_callback)
490 lists->callback_get_item_color = color_callback;
492 #endif
494 static void gui_synclist_select_next_page(struct gui_synclist * lists,
495 enum screen_type screen)
497 int nb_lines = list_get_nb_lines(lists, screen);
498 if (lists->selected_size > 1)
499 nb_lines = MAX(1, nb_lines/lists->selected_size);
500 gui_list_select_at_offset(lists, nb_lines);
503 static void gui_synclist_select_previous_page(struct gui_synclist * lists,
504 enum screen_type screen)
506 int nb_lines = list_get_nb_lines(lists, screen);
507 if (lists->selected_size > 1)
508 nb_lines = MAX(1, nb_lines/lists->selected_size);
509 gui_list_select_at_offset(lists, -nb_lines);
512 void gui_synclist_limit_scroll(struct gui_synclist * lists, bool scroll)
514 lists->limit_scroll = scroll;
517 #ifdef HAVE_LCD_BITMAP
519 * Makes all the item in the list scroll by one step to the right.
520 * Should stop increasing the value when reaching the widest item value
521 * in the list.
523 static void gui_synclist_scroll_right(struct gui_synclist * lists)
525 int i;
526 FOR_NB_SCREENS(i)
528 /* FIXME: This is a fake right boundry limiter. there should be some
529 * callback function to find the longest item on the list in pixels,
530 * to stop the list from scrolling past that point */
531 lists->offset_position[i] += offset_step;
532 if (lists->offset_position[i] > 1000)
533 lists->offset_position[i] = 1000;
538 * Makes all the item in the list scroll by one step to the left.
539 * stops at starting position.
541 static void gui_synclist_scroll_left(struct gui_synclist * lists)
543 int i;
544 FOR_NB_SCREENS(i)
546 lists->offset_position[i] -= offset_step;
547 if (lists->offset_position[i] < 0)
548 lists->offset_position[i] = 0;
551 #endif /* HAVE_LCD_BITMAP */
554 bool gui_synclist_do_button(struct gui_synclist * lists,
555 int *actionptr, enum list_wrap wrap)
557 int action = *actionptr;
558 #ifdef HAVE_LCD_BITMAP
559 static bool scrolling_left = false;
560 #endif
562 #ifdef HAVE_WHEEL_ACCELERATION
563 int next_item_modifier = button_apply_acceleration(get_action_data());
564 #else
565 static int next_item_modifier = 1;
566 static int last_accel_tick = 0;
568 if (action != ACTION_TOUCHSCREEN)
570 if (global_settings.list_accel_start_delay)
572 int start_delay = global_settings.list_accel_start_delay * (HZ/2);
573 int accel_wait = global_settings.list_accel_wait * HZ/2;
575 if (get_action_statuscode(NULL)&ACTION_REPEAT)
577 if (!last_accel_tick)
578 last_accel_tick = current_tick + start_delay;
579 else if (TIME_AFTER(current_tick, last_accel_tick + accel_wait))
581 last_accel_tick = current_tick;
582 next_item_modifier++;
585 else if (last_accel_tick)
587 next_item_modifier = 1;
588 last_accel_tick = 0;
592 #endif
593 #if defined(HAVE_TOUCHSCREEN)
594 if (action == ACTION_TOUCHSCREEN)
595 action = *actionptr = gui_synclist_do_touchscreen(lists);
596 else if (action > ACTION_TOUCHSCREEN_MODE)
597 /* cancel kinetic if we got a normal button event */
598 _gui_synclist_stop_kinetic_scrolling();
599 #endif
601 switch (wrap)
603 case LIST_WRAP_ON:
604 gui_synclist_limit_scroll(lists, false);
605 break;
606 case LIST_WRAP_OFF:
607 gui_synclist_limit_scroll(lists, true);
608 break;
609 case LIST_WRAP_UNLESS_HELD:
610 if (action == ACTION_STD_PREVREPEAT ||
611 action == ACTION_STD_NEXTREPEAT ||
612 action == ACTION_LISTTREE_PGUP ||
613 action == ACTION_LISTTREE_PGDOWN)
614 gui_synclist_limit_scroll(lists, true);
615 else gui_synclist_limit_scroll(lists, false);
616 break;
619 switch (action)
621 case ACTION_REDRAW:
622 gui_synclist_draw(lists);
623 return true;
625 #ifdef HAVE_VOLUME_IN_LIST
626 case ACTION_LIST_VOLUP:
627 global_settings.volume += 2;
628 /* up two because the falthrough brings it down one */
629 case ACTION_LIST_VOLDOWN:
630 global_settings.volume--;
631 setvol();
632 return true;
633 #endif
634 case ACTION_STD_PREV:
635 case ACTION_STD_PREVREPEAT:
636 gui_list_select_at_offset(lists, -next_item_modifier);
637 #ifndef HAVE_WHEEL_ACCELERATION
638 if (button_queue_count() < FRAMEDROP_TRIGGER)
639 #endif
640 gui_synclist_draw(lists);
641 yield();
642 *actionptr = ACTION_STD_PREV;
643 return true;
645 case ACTION_STD_NEXT:
646 case ACTION_STD_NEXTREPEAT:
647 gui_list_select_at_offset(lists, next_item_modifier);
648 #ifndef HAVE_WHEEL_ACCELERATION
649 if (button_queue_count() < FRAMEDROP_TRIGGER)
650 #endif
651 gui_synclist_draw(lists);
652 yield();
653 *actionptr = ACTION_STD_NEXT;
654 return true;
656 #ifdef HAVE_LCD_BITMAP
657 case ACTION_TREE_PGRIGHT:
658 gui_synclist_scroll_right(lists);
659 gui_synclist_draw(lists);
660 return true;
661 case ACTION_TREE_ROOT_INIT:
662 /* After this button press ACTION_TREE_PGLEFT is allowed
663 to skip to root. ACTION_TREE_ROOT_INIT must be defined in the
664 keymaps as a repeated button press (the same as the repeated
665 ACTION_TREE_PGLEFT) with the pre condition being the non-repeated
666 button press */
667 if (lists->offset_position[0] == 0)
669 scrolling_left = false;
670 *actionptr = ACTION_STD_CANCEL;
671 return true;
673 *actionptr = ACTION_TREE_PGLEFT;
674 case ACTION_TREE_PGLEFT:
675 if(!scrolling_left && (lists->offset_position[0] == 0))
677 *actionptr = ACTION_STD_CANCEL;
678 return false;
680 gui_synclist_scroll_left(lists);
681 gui_synclist_draw(lists);
682 scrolling_left = true; /* stop ACTION_TREE_PAGE_LEFT
683 skipping to root */
684 return true;
685 #endif
686 /* for pgup / pgdown, we are obliged to have a different behaviour depending
687 * on the screen for which the user pressed the key since for example, remote
688 * and main screen doesn't have the same number of lines */
689 case ACTION_LISTTREE_PGUP:
691 int screen =
692 #ifdef HAVE_REMOTE_LCD
693 get_action_statuscode(NULL)&ACTION_REMOTE ?
694 SCREEN_REMOTE :
695 #endif
696 SCREEN_MAIN;
697 gui_synclist_select_previous_page(lists, screen);
698 gui_synclist_draw(lists);
699 yield();
700 *actionptr = ACTION_STD_NEXT;
702 return true;
704 case ACTION_LISTTREE_PGDOWN:
706 int screen =
707 #ifdef HAVE_REMOTE_LCD
708 get_action_statuscode(NULL)&ACTION_REMOTE ?
709 SCREEN_REMOTE :
710 #endif
711 SCREEN_MAIN;
712 gui_synclist_select_next_page(lists, screen);
713 gui_synclist_draw(lists);
714 yield();
715 *actionptr = ACTION_STD_PREV;
717 return true;
719 if(lists->scheduled_talk_tick
720 && TIME_AFTER(current_tick, lists->scheduled_talk_tick))
721 /* scheduled postponed item announcement is due */
722 _gui_synclist_speak_item(lists);
723 return false;
726 int list_do_action_timeout(struct gui_synclist *lists, int timeout)
727 /* Returns the lowest of timeout or the delay until a postponed
728 scheduled announcement is due (if any). */
730 if(lists->scheduled_talk_tick)
732 long delay = lists->scheduled_talk_tick -current_tick +1;
733 /* +1 because the trigger condition uses TIME_AFTER(), which
734 is implemented as strictly greater than. */
735 if(delay < 0)
736 delay = 0;
737 if(timeout > delay || timeout == TIMEOUT_BLOCK)
738 timeout = delay;
740 return timeout;
743 bool list_do_action(int context, int timeout,
744 struct gui_synclist *lists, int *action,
745 enum list_wrap wrap)
746 /* Combines the get_action() (with possibly overridden timeout) and
747 gui_synclist_do_button() calls. Returns the list action from
748 do_button, and places the action from get_action in *action. */
750 timeout = list_do_action_timeout(lists, timeout);
751 *action = get_action(context, timeout);
752 return gui_synclist_do_button(lists, action, wrap);
755 bool gui_synclist_item_is_onscreen(struct gui_synclist *lists,
756 enum screen_type screen, int item)
758 int nb_lines = list_get_nb_lines(lists, screen);
759 return (unsigned)(item - lists->start_item[screen]) < (unsigned) nb_lines;
762 /* Simple use list implementation */
763 static int simplelist_line_count = 0;
764 static char simplelist_text[SIMPLELIST_MAX_LINES][SIMPLELIST_MAX_LINELENGTH];
765 /* set the amount of lines shown in the list */
766 void simplelist_set_line_count(int lines)
768 if (lines < 0)
769 simplelist_line_count = 0;
770 else if (lines >= SIMPLELIST_MAX_LINES)
771 simplelist_line_count = SIMPLELIST_MAX_LINES;
772 else
773 simplelist_line_count = lines;
775 /* get the current amount of lines shown */
776 int simplelist_get_line_count(void)
778 return simplelist_line_count;
780 /* add/edit a line in the list.
781 if line_number > number of lines shown it adds the line,
782 else it edits the line */
783 void simplelist_addline(int line_number, const char *fmt, ...)
785 va_list ap;
787 if (line_number > simplelist_line_count)
789 if (simplelist_line_count < SIMPLELIST_MAX_LINES)
790 line_number = simplelist_line_count++;
791 else
792 return;
794 va_start(ap, fmt);
795 vsnprintf(simplelist_text[line_number], SIMPLELIST_MAX_LINELENGTH, fmt, ap);
796 va_end(ap);
799 static const char* simplelist_static_getname(int item,
800 void * data,
801 char *buffer,
802 size_t buffer_len)
804 (void)data; (void)buffer; (void)buffer_len;
805 return simplelist_text[item];
808 bool simplelist_show_list(struct simplelist_info *info)
810 struct gui_synclist lists;
811 int action, old_line_count = simplelist_line_count, i;
812 list_get_name *getname;
813 int wrap = LIST_WRAP_UNLESS_HELD;
814 if (info->get_name)
815 getname = info->get_name;
816 else
817 getname = simplelist_static_getname;
819 FOR_NB_SCREENS(i)
820 viewportmanager_theme_enable(i, true, NULL);
822 gui_synclist_init(&lists, getname, info->callback_data,
823 info->scroll_all, info->selection_size, NULL);
825 if (info->title)
826 gui_synclist_set_title(&lists, info->title, NOICON);
827 if (info->get_icon)
828 gui_synclist_set_icon_callback(&lists, info->get_icon);
829 if (info->get_talk)
830 gui_synclist_set_voice_callback(&lists, info->get_talk);
832 if (info->hide_selection)
834 gui_synclist_hide_selection_marker(&lists, true);
835 wrap = LIST_WRAP_OFF;
838 if (info->action_callback)
839 info->action_callback(ACTION_REDRAW, &lists);
841 if (info->get_name == NULL)
842 gui_synclist_set_nb_items(&lists,
843 simplelist_line_count*info->selection_size);
844 else
845 gui_synclist_set_nb_items(&lists, info->count*info->selection_size);
847 gui_synclist_select_item(&lists, info->selection);
849 gui_synclist_draw(&lists);
850 gui_synclist_speak_item(&lists);
852 while(1)
854 list_do_action(CONTEXT_LIST, info->timeout,
855 &lists, &action, wrap);
857 /* We must yield in this case or no other thread can run */
858 if (info->timeout == TIMEOUT_NOBLOCK)
859 yield();
861 if (info->action_callback)
863 bool stdok = action==ACTION_STD_OK;
864 action = info->action_callback(action, &lists);
865 if (stdok && action == ACTION_STD_CANCEL)
867 /* callback asked us to exit */
868 info->selection = gui_synclist_get_sel_pos(&lists);
869 break;
872 if (info->get_name == NULL)
873 gui_synclist_set_nb_items(&lists,
874 simplelist_line_count*info->selection_size);
876 if (action == ACTION_STD_CANCEL)
878 info->selection = -1;
879 break;
881 else if ((action == ACTION_REDRAW) ||
882 (old_line_count != simplelist_line_count))
884 if (info->get_name == NULL)
886 gui_synclist_set_nb_items(&lists,
887 simplelist_line_count*info->selection_size);
889 gui_synclist_draw(&lists);
890 old_line_count = simplelist_line_count;
892 else if(default_event_handler(action) == SYS_USB_CONNECTED)
893 return true;
895 talk_shutup();
896 FOR_NB_SCREENS(i)
897 viewportmanager_theme_undo(i, false);
898 return false;
901 void simplelist_info_init(struct simplelist_info *info, char* title,
902 int count, void* data)
904 info->title = title;
905 info->count = count;
906 info->selection_size = 1;
907 info->hide_selection = false;
908 info->scroll_all = false;
909 info->timeout = HZ/10;
910 info->selection = 0;
911 info->action_callback = NULL;
912 info->get_icon = NULL;
913 info->get_name = NULL;
914 info->get_talk = NULL;
915 info->callback_data = data;
916 simplelist_line_count = 0;