summaryrefslogtreecommitdiff
path: root/apps/gui/list.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/gui/list.h')
-rw-r--r--apps/gui/list.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/apps/gui/list.h b/apps/gui/list.h
index f0a6d3f32c..447e0d832d 100644
--- a/apps/gui/list.h
+++ b/apps/gui/list.h
@@ -168,6 +168,8 @@ struct gui_list
168 int selected_size; 168 int selected_size;
169 /* The data that will be passed to the callback function YOU implement */ 169 /* The data that will be passed to the callback function YOU implement */
170 void * data; 170 void * data;
171 /* The optional title, set to NULL for none */
172 char *title;
171}; 173};
172 174
173/* 175/*
@@ -332,7 +334,10 @@ extern void gui_list_del_item(struct gui_list * gui_list);
332 */ 334 */
333extern void gui_list_flash(struct gui_list * gui_list); 335extern void gui_list_flash(struct gui_list * gui_list);
334 336
335 337/*
338 * Set the title of the list, setting to NULL disables the title
339 */
340extern void gui_list_set_title(struct gui_list *gui_list , char* title);
336/* 341/*
337 * This part handles as many lists as there are connected screens 342 * This part handles as many lists as there are connected screens
338 * (the api is similar to the ones above) 343 * (the api is similar to the ones above)
@@ -373,6 +378,7 @@ extern void gui_synclist_add_item(struct gui_synclist * lists);
373extern void gui_synclist_del_item(struct gui_synclist * lists); 378extern void gui_synclist_del_item(struct gui_synclist * lists);
374extern void gui_synclist_limit_scroll(struct gui_synclist * lists, bool scroll); 379extern void gui_synclist_limit_scroll(struct gui_synclist * lists, bool scroll);
375extern void gui_synclist_flash(struct gui_synclist * lists); 380extern void gui_synclist_flash(struct gui_synclist * lists);
381extern void gui_synclist_set_title(struct gui_synclist * lists, char* title);
376void gui_synclist_scroll_right(struct gui_synclist * lists); 382void gui_synclist_scroll_right(struct gui_synclist * lists);
377void gui_synclist_scroll_left(struct gui_synclist * lists); 383void gui_synclist_scroll_left(struct gui_synclist * lists);
378 384