From 2acfecee31b8b4102210b79796604dc33bee864a Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Mon, 24 Dec 2012 14:28:03 +0100 Subject: Fix list_jump in thumbnail mode + thumbnail mode selection rollover (closes #115) --- ChangeLog | 2 ++ src/keyevents.c | 5 ++++- src/thumbnail.c | 41 ++++++++++++++++++++++++++--------------- 3 files changed, 32 insertions(+), 16 deletions(-) diff --git a/ChangeLog b/ChangeLog index 03a7ffe..bb42732 100644 --- a/ChangeLog +++ b/ChangeLog @@ -15,6 +15,8 @@ git HEAD * Respect --start-at in thumbnail mode + * Make 'z' (jump_random) work in thumbnail mode as well, fix thumbnail + selection roll-over Tue, 16 Oct 2012 06:29:58 +0200 Daniel Friesel diff --git a/src/keyevents.c b/src/keyevents.c index 18853ed..470d624 100644 --- a/src/keyevents.c +++ b/src/keyevents.c @@ -658,7 +658,10 @@ void feh_event_handle_keypress(XEvent * ev) opt.hide_pointer = !opt.hide_pointer; } else if (feh_is_kp(&keys.jump_random, keysym, state)) { - slideshow_change_image(winwid, SLIDE_RAND, 1); + if (winwid->type == WIN_TYPE_THUMBNAIL) + feh_thumbnail_select_next(winwid, rand() % (filelist_len - 1)); + else + slideshow_change_image(winwid, SLIDE_RAND, 1); } else if (feh_is_kp(&keys.toggle_caption, keysym, state)) { if (opt.caption_path) { diff --git a/src/thumbnail.c b/src/thumbnail.c index da14760..a77152a 100644 --- a/src/thumbnail.c +++ b/src/thumbnail.c @@ -786,36 +786,47 @@ void feh_thumbnail_select(winwidget winwid, feh_thumbnail *thumbnail) void feh_thumbnail_select_next(winwidget winwid, int jump) { - gib_list *l, *tmp; - int i; + gib_list *l; + feh_thumbnail *thumb; + int len = 0, cur = 0, target = 0; - for (l = thumbnails; l && l->next; l = l->next) { - tmp = l; - for (i = jump; (i > 0) && tmp->next; i--) - tmp = tmp->next; - if (tmp->data == td.selected) - break; + for (l = thumbnails; l; l = l->next) { + thumb = FEH_THUMB(l->data); + if (thumb == td.selected) + cur = len; + len++; } - feh_thumbnail_select(winwid, FEH_THUMB(l->data)); + target = (cur + len - jump) % len; + + for (l = thumbnails; l; l = l->next) { + if (target-- == 0) { + feh_thumbnail_select(winwid, FEH_THUMB(l->data)); + } + } } void feh_thumbnail_select_prev(winwidget winwid, int jump) { gib_list *l; feh_thumbnail *thumb; - int i; + int len = 0, cur = 0, target = 0; for (l = thumbnails; l; l = l->next) { thumb = FEH_THUMB(l->data); - if ((thumb == td.selected) && l->next) { - for (i = jump; (i > 0) && l->next; i--) - l = l->next; + if (thumb == td.selected) + cur = len; + len++; + } + + target = (cur + jump) % len; + + for (l = thumbnails; l; l = l->next) { + if (target-- == 0) { feh_thumbnail_select(winwid, FEH_THUMB(l->data)); - return; + break; } } - feh_thumbnail_select(winwid, FEH_THUMB(thumbnails->data)); } inline void feh_thumbnail_show_selected() -- cgit v1.2.3