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.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/apps/gui/list.h b/apps/gui/list.h
index 2df33b7541..388e3d2006 100644
--- a/apps/gui/list.h
+++ b/apps/gui/list.h
@@ -161,7 +161,6 @@ struct gui_synclist
161 /* whether the text of the whole items of the list have to be 161 /* whether the text of the whole items of the list have to be
162 * scrolled or only for the selected item */ 162 * scrolled or only for the selected item */
163 bool scroll_all; 163 bool scroll_all;
164 bool show_selection_marker; /* set to true by default */
165 int nb_items; 164 int nb_items;
166 int selected_item; 165 int selected_item;
167 166
@@ -235,8 +234,6 @@ extern void gui_synclist_del_item(struct gui_synclist * lists);
235extern void gui_synclist_limit_scroll(struct gui_synclist * lists, bool scroll); 234extern void gui_synclist_limit_scroll(struct gui_synclist * lists, bool scroll);
236extern void gui_synclist_set_title(struct gui_synclist * lists, const char * title, 235extern void gui_synclist_set_title(struct gui_synclist * lists, const char * title,
237 enum themable_icons icon); 236 enum themable_icons icon);
238extern void gui_synclist_hide_selection_marker(struct gui_synclist *lists,
239 bool hide);
240extern bool gui_synclist_item_is_onscreen(struct gui_synclist *lists, 237extern bool gui_synclist_item_is_onscreen(struct gui_synclist *lists,
241 enum screen_type screen, int item); 238 enum screen_type screen, int item);
242 239
@@ -304,7 +301,6 @@ struct simplelist_info {
304 const char *title; /* title to show on the list */ 301 const char *title; /* title to show on the list */
305 int count; /* number of items in the list, each item is selection_size high */ 302 int count; /* number of items in the list, each item is selection_size high */
306 int selection_size; /* list selection size, usually 1 */ 303 int selection_size; /* list selection size, usually 1 */
307 bool hide_selection;
308 bool scroll_all; 304 bool scroll_all;
309 bool hide_theme; 305 bool hide_theme;
310 bool speak_onshow; /* list speaks first item or 'empty list' */ 306 bool speak_onshow; /* list speaks first item or 'empty list' */
@@ -350,7 +346,6 @@ void simplelist_addline(const char *fmt, ...);
350/* setup the info struct. members not setup in this function need to be assigned manually 346/* setup the info struct. members not setup in this function need to be assigned manually
351 members set in this function: 347 members set in this function:
352 info.selection_size = 1; 348 info.selection_size = 1;
353 info.hide_selection = false;
354 info.scroll_all = false; 349 info.scroll_all = false;
355 info.hide_theme = false; 350 info.hide_theme = false;
356 info.speak_onshow = true; 351 info.speak_onshow = true;