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.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _GUI_LIST_H_
|
|
|
|
#define _GUI_LIST_H_
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "icon.h"
|
|
|
|
#include "screen_access.h"
|
|
|
|
|
|
|
|
#define SCROLLBAR_WIDTH 6
|
|
|
|
|
2006-11-06 10:11:51 +00:00
|
|
|
enum list_wrap {
|
|
|
|
LIST_WRAP_ON = 0,
|
|
|
|
LIST_WRAP_OFF,
|
|
|
|
LIST_WRAP_UNLESS_HELD,
|
|
|
|
};
|
|
|
|
|
2005-10-29 02:33:19 +00:00
|
|
|
/*
|
|
|
|
* The gui_list is based on callback functions, if you want the list
|
|
|
|
* to display something you have to provide it a function that
|
|
|
|
* tells it what to display.
|
|
|
|
* There are two callback function :
|
|
|
|
* one to get the text and one to get the icon
|
2005-11-16 02:12:25 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Icon callback
|
|
|
|
* - selected_item : an integer that tells the number of the item to display
|
|
|
|
* - data : a void pointer to the data you gave to the list when
|
|
|
|
* you initialized it
|
|
|
|
* - icon : a pointer to the icon, the value inside it is used to display
|
|
|
|
* the icon after the function returns.
|
|
|
|
* Note : we use the ICON type because the real type depends of the plateform
|
|
|
|
*/
|
|
|
|
typedef void list_get_icon(int selected_item,
|
|
|
|
void * data,
|
|
|
|
ICON * icon);
|
|
|
|
/*
|
2005-10-29 02:33:19 +00:00
|
|
|
* Text callback
|
|
|
|
* - selected_item : an integer that tells the number of the item to display
|
|
|
|
* - data : a void pointer to the data you gave to the list when
|
|
|
|
* you initialized it
|
|
|
|
* - buffer : a buffer to put the resulting text on it
|
|
|
|
* (The content of the buffer may not be used by the list, we use
|
|
|
|
* the return value of the function in all cases to avoid filling
|
|
|
|
* a buffer when it's not necessary)
|
|
|
|
* Returns a pointer to a string that contains the text to display
|
|
|
|
*/
|
2005-11-16 02:12:25 +00:00
|
|
|
typedef char * list_get_name(int selected_item,
|
|
|
|
void * data,
|
|
|
|
char *buffer);
|
|
|
|
|
2005-10-28 00:00:00 +00:00
|
|
|
struct gui_list
|
|
|
|
{
|
2005-10-28 23:52:49 +00:00
|
|
|
/* defines wether the list should stop when reaching the top/bottom
|
|
|
|
* or should continue (by going to bottom/top) */
|
|
|
|
bool limit_scroll;
|
2006-07-02 12:28:27 +00:00
|
|
|
/* wether the text of the whole items of the list have to be
|
|
|
|
* scrolled or only for the selected item */
|
|
|
|
bool scroll_all;
|
2007-04-12 23:53:17 +00:00
|
|
|
bool cursor_flash_state;
|
|
|
|
|
|
|
|
int nb_items;
|
|
|
|
int selected_item;
|
|
|
|
int start_item; /* the item that is displayed at the top of the screen */
|
2006-07-02 12:28:27 +00:00
|
|
|
/* the number of lines that are selected at the same time */
|
|
|
|
int selected_size;
|
2007-03-11 10:52:36 +00:00
|
|
|
/* These are used to calculate how much of the screen content we need
|
|
|
|
to redraw. */
|
|
|
|
int last_displayed_selected_item;
|
|
|
|
int last_displayed_start_item;
|
2007-04-12 23:53:17 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
int offset_position; /* the list's screen scroll placement in pixels */
|
|
|
|
#endif
|
2006-08-15 12:23:55 +00:00
|
|
|
/* Cache the width of the title string in pixels/characters */
|
2006-08-23 20:02:06 +00:00
|
|
|
int title_width;
|
2007-04-12 23:53:17 +00:00
|
|
|
|
|
|
|
list_get_icon *callback_get_item_icon;
|
|
|
|
list_get_name *callback_get_item_name;
|
|
|
|
|
|
|
|
struct screen * display;
|
|
|
|
/* The data that will be passed to the callback function YOU implement */
|
|
|
|
void * data;
|
|
|
|
/* The optional title, set to NULL for none */
|
|
|
|
char * title;
|
2006-08-23 20:02:06 +00:00
|
|
|
/* Optional title icon */
|
|
|
|
ICON title_icon;
|
2005-10-28 00:00:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
2005-10-28 23:52:49 +00:00
|
|
|
* Sets the numbers of items the list can currently display
|
2005-10-28 00:00:00 +00:00
|
|
|
* note that the list's context like the currently pointed item is resetted
|
2005-11-16 17:23:49 +00:00
|
|
|
* - gui_list : the list structure
|
2005-10-28 00:00:00 +00:00
|
|
|
* - nb_items : the numbers of items you want
|
|
|
|
*/
|
2005-10-29 02:33:19 +00:00
|
|
|
#define gui_list_set_nb_items(gui_list, nb) \
|
|
|
|
(gui_list)->nb_items = nb
|
2005-10-28 00:00:00 +00:00
|
|
|
|
2005-10-30 22:34:51 +00:00
|
|
|
/*
|
|
|
|
* Returns the numbers of items currently in the list
|
2005-11-16 17:23:49 +00:00
|
|
|
* - gui_list : the list structure
|
2005-10-30 22:34:51 +00:00
|
|
|
*/
|
|
|
|
#define gui_list_get_nb_items(gui_list) \
|
|
|
|
(gui_list)->nb_items
|
|
|
|
|
2005-11-16 17:23:49 +00:00
|
|
|
/*
|
|
|
|
* Sets the icon callback function
|
|
|
|
* - gui_list : the list structure
|
|
|
|
* - _callback : the callback function
|
|
|
|
*/
|
|
|
|
#define gui_list_set_icon_callback(gui_list, _callback) \
|
|
|
|
(gui_list)->callback_get_item_icon=_callback
|
|
|
|
|
2005-10-28 00:00:00 +00:00
|
|
|
/*
|
|
|
|
* Gives the position of the selected item
|
|
|
|
* - gui_list : the list structure
|
|
|
|
* Returns the position
|
|
|
|
*/
|
2005-10-29 02:33:19 +00:00
|
|
|
#define gui_list_get_sel_pos(gui_list) \
|
|
|
|
(gui_list)->selected_item
|
2005-10-28 00:00:00 +00:00
|
|
|
|
2005-10-30 22:34:51 +00:00
|
|
|
|
2006-01-22 04:24:26 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
/* parse global setting to static int */
|
|
|
|
extern void gui_list_screen_scroll_step(int ofs);
|
|
|
|
|
|
|
|
/* parse global setting to static bool */
|
|
|
|
extern void gui_list_screen_scroll_out_of_view(bool enable);
|
|
|
|
#endif /* HAVE_LCD_BITMAP */
|
2005-10-28 23:52:49 +00:00
|
|
|
/*
|
|
|
|
* Tells the list wether it should stop when reaching the top/bottom
|
|
|
|
* or should continue (by going to bottom/top)
|
|
|
|
* - gui_list : the list structure
|
|
|
|
* - scroll :
|
|
|
|
* - true : stops when reaching top/bottom
|
|
|
|
* - false : continues to go to bottom/top when reaching top/bottom
|
|
|
|
*/
|
2005-10-29 02:33:19 +00:00
|
|
|
#define gui_list_limit_scroll(gui_list, scroll) \
|
|
|
|
(gui_list)->limit_scroll=scroll
|
2005-10-28 00:00:00 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This part handles as many lists as there are connected screens
|
|
|
|
* (the api is similar to the ones above)
|
|
|
|
* The lists on the screens are synchronized ;
|
|
|
|
* theirs items and selected items are the same, but of course,
|
|
|
|
* they can be displayed on screens with different sizes
|
|
|
|
* The final aim is to let the programmer handle many lists in one
|
|
|
|
* function call and make its code independant from the number of screens
|
|
|
|
*/
|
|
|
|
struct gui_synclist
|
|
|
|
{
|
|
|
|
struct gui_list gui_list[NB_SCREENS];
|
|
|
|
};
|
|
|
|
|
2005-10-29 02:33:19 +00:00
|
|
|
extern 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-29 02:33:19 +00:00
|
|
|
);
|
2005-10-28 00:00:00 +00:00
|
|
|
extern void gui_synclist_set_nb_items(struct gui_synclist * lists, int nb_items);
|
2005-11-16 17:23:49 +00:00
|
|
|
extern void gui_synclist_set_icon_callback(struct gui_synclist * lists, list_get_icon icon_callback);
|
2006-04-03 08:51:08 +00:00
|
|
|
extern int gui_synclist_get_nb_items(struct gui_synclist * lists);
|
2005-11-16 17:23:49 +00:00
|
|
|
|
2005-10-28 23:52:49 +00:00
|
|
|
extern int gui_synclist_get_sel_pos(struct gui_synclist * lists);
|
2005-10-29 02:33:19 +00:00
|
|
|
|
2005-10-28 00:00:00 +00:00
|
|
|
extern void gui_synclist_draw(struct gui_synclist * lists);
|
|
|
|
extern void gui_synclist_select_item(struct gui_synclist * lists,
|
|
|
|
int item_number);
|
|
|
|
extern void gui_synclist_add_item(struct gui_synclist * lists);
|
|
|
|
extern void gui_synclist_del_item(struct gui_synclist * lists);
|
2005-10-28 23:52:49 +00:00
|
|
|
extern void gui_synclist_limit_scroll(struct gui_synclist * lists, bool scroll);
|
2005-11-09 01:17:57 +00:00
|
|
|
extern void gui_synclist_flash(struct gui_synclist * lists);
|
2006-08-23 20:02:06 +00:00
|
|
|
extern void gui_synclist_set_title(struct gui_synclist * lists, char * title,
|
|
|
|
ICON icon);
|
2005-10-28 23:52:49 +00:00
|
|
|
|
2005-10-28 00:00:00 +00:00
|
|
|
/*
|
|
|
|
* Do the action implied by the given button,
|
2005-11-16 02:12:25 +00:00
|
|
|
* returns the action taken if any, 0 else
|
2005-10-28 00:00:00 +00:00
|
|
|
* - lists : the synchronized lists
|
|
|
|
* - button : the keycode of a pressed button
|
2006-11-06 10:11:51 +00:00
|
|
|
* - specifies weather to allow the list to wrap or not, values at top of page
|
2005-11-16 02:12:25 +00:00
|
|
|
* returned value :
|
2006-08-15 12:27:07 +00:00
|
|
|
* - ACTION_STD_NEXT when moving forward (next item or pgup)
|
|
|
|
* - ACTION_STD_PREV when moving backward (previous item or pgdown)
|
2005-10-28 00:00:00 +00:00
|
|
|
*/
|
2006-11-06 10:11:51 +00:00
|
|
|
extern unsigned gui_synclist_do_button(struct gui_synclist * lists,
|
|
|
|
unsigned button,
|
|
|
|
enum list_wrap);
|
2005-10-28 00:00:00 +00:00
|
|
|
|
|
|
|
#endif /* _GUI_LIST_H_ */
|