From bd6e6ed40385c5d5f357a39909ae6a5db60f7ce9 Mon Sep 17 00:00:00 2001 From: Jonathan Gordon Date: Mon, 13 Aug 2012 15:01:31 +1000 Subject: folder selector: handle long press to invert selection/select all. Doing a LONG PRESS on a: - unopened folder will select all its sub-folders - opened folder will invert the selection of its sub-folders Change-Id: Ia7fd8dc3b940f60adee3f0314bf6bba5eb2c7b3b --- apps/gui/folder_select.c | 43 +++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 41 insertions(+), 2 deletions(-) (limited to 'apps/gui') diff --git a/apps/gui/folder_select.c b/apps/gui/folder_select.c index 512b73f588..05354c4c6c 100644 --- a/apps/gui/folder_select.c +++ b/apps/gui/folder_select.c @@ -300,11 +300,12 @@ static enum themable_icons folder_get_icon(int selected_item, void * data) static int folder_action_callback(int action, struct gui_synclist *list) { struct folder *root = (struct folder*)list->data; + struct folder *parent; + struct child *this = find_index(root, list->selected_item, &parent), *child; + int i; if (action == ACTION_STD_OK) { - struct folder *parent; - struct child *this = find_index(root, list->selected_item, &parent); switch (this->state) { case EXPANDED: @@ -321,11 +322,49 @@ static int folder_action_callback(int action, struct gui_synclist *list) break; case EACCESS: /* cannot open, do nothing */ + return action; + } + list->nb_items = count_items(root); + return ACTION_REDRAW; + } + else if (action == ACTION_STD_CONTEXT) + { + switch (this->state) + { + case EXPANDED: + for (i = 0; i < this->folder->children_count; i++) + { + child = &this->folder->children[i]; + if (child->state == SELECTED || + child->state == EXPANDED) + child->state = COLLAPSED; + else if (child->state == COLLAPSED) + child->state = SELECTED; + } break; + case SELECTED: + case COLLAPSED: + if (this->folder == NULL) + this->folder = load_folder(parent, this->name); + this->state = this->folder ? (this->folder->children_count == 0 ? + SELECTED : EXPANDED) : EACCESS; + if (this->state == EACCESS) + break; + for (i = 0; i < this->folder->children_count; i++) + { + child = &this->folder->children[i]; + child->state = SELECTED; + } + break; + case EACCESS: + /* cannot open, do nothing */ + return action; } list->nb_items = count_items(root); return ACTION_REDRAW; } + + return action; } -- cgit v1.2.3