Add mark range function

Sets the marked state of all images ranging from the latest marked/unmarked
image to the current image, to the state of that latest toggled image.
This commit is contained in:
Daniel Lublin
2018-06-04 22:18:57 +02:00
committed by Bert Münnich
parent 8bf1adcd9a
commit 6e696ba98c
5 changed files with 42 additions and 0 deletions

View File

@ -46,6 +46,7 @@ extern fileinfo_t *files;
extern int filecnt, fileidx;
extern int alternate;
extern int markcnt;
extern int toggledidx;
extern int prefix;
extern bool extprefix;
@ -196,6 +197,7 @@ bool cg_toggle_image_mark(arg_t _)
markcnt += files[fileidx].flags & FF_MARK ? 1 : -1;
if (mode == MODE_THUMB)
tns_mark(&tns, fileidx, !!(files[fileidx].flags & FF_MARK));
toggledidx = fileidx;
return true;
}
@ -212,6 +214,39 @@ bool cg_reverse_marks(arg_t _)
return true;
}
bool cg_mark_range(arg_t _)
{
int i, from, to;
if (toggledidx < 0)
return true;
if (toggledidx == fileidx)
return true;
from = toggledidx;
to = fileidx;
if (fileidx < toggledidx) {
from = fileidx;
to = toggledidx;
}
for (i = from; i <= to; i++) {
if (files[toggledidx].flags & FF_MARK) {
if (!(files[i].flags & FF_MARK)) {
files[i].flags |= FF_MARK;
markcnt += 1;
}
} else {
if (files[i].flags & FF_MARK) {
files[i].flags &= ~FF_MARK;
markcnt -= 1;
}
}
if (mode == MODE_THUMB)
tns_mark(&tns, i, !!(files[i].flags & FF_MARK));
}
return true;
}
bool cg_unmark_all(arg_t _)
{
int i;