diff options
author | kraxel <kraxel> | 2004-12-02 12:27:11 +0000 |
---|---|---|
committer | kraxel <kraxel> | 2004-12-02 12:27:11 +0000 |
commit | 41699c6af92100078c301fe958d1da0d3ff290f5 (patch) | |
tree | 4bb6f66d47bad00bf5fb5d11d85b89f9267a074e /fbi.c | |
parent | 8726dfa6bc7a0c816c041eaf983cd6348bd771b2 (diff) | |
download | fbida-41699c6af92100078c301fe958d1da0d3ff290f5.tar.gz |
- man page spell fixes (Drew Cohan).
- make pgup + pgdown loop (Drew Cohan).
- make timeout changeable on the fly.
Diffstat (limited to 'fbi.c')
-rw-r--r-- | fbi.c | 28 |
1 files changed, 21 insertions, 7 deletions
@@ -69,6 +69,7 @@ /* with arg */ #define KEY_GOTO -100 #define KEY_SCALE -101 +#define KEY_DELAY -102 /* edit */ #define KEY_DELETE -200 @@ -236,6 +237,11 @@ static struct flist* flist_first(void) return list_entry(flist.next, struct flist, list); } +static struct flist* flist_last(void) +{ + return list_entry(flist.prev, struct flist, list); +} + static struct flist* flist_next(struct flist *f, int eof, int loop) { if (flist_islast(f)) { @@ -248,10 +254,13 @@ static struct flist* flist_next(struct flist *f, int eof, int loop) return list_entry(f->list.next, struct flist, list); } -static struct flist* flist_prev(struct flist *f) +static struct flist* flist_prev(struct flist *f, int loop) { - if (flist_isfirst(f)) + if (flist_isfirst(f)) { + if (loop) + return flist_last(); return f; + } return list_entry(f->list.prev, struct flist, list); } @@ -913,6 +922,8 @@ svga_show(struct ida_image *img, int timeout, char *desc, char *info, int *nr) return KEY_GOTO; } else if (rc == 1 && (*key == 's' || *key == 'S')) { return KEY_SCALE; + } else if (rc == 1 && (*key == 'x' || *key == 'X')) { + return KEY_DELAY; } else if (rc == 1 && *key >= '0' && *key <= '9') { *nr = *nr * 10 + (*key - '0'); snprintf(linebuffer, sizeof(linebuffer), "> %d",*nr); @@ -1277,9 +1288,9 @@ main(int argc, char *argv[]) if (editable) { struct flist *fdel = fcurrent; if (flist_islast(fcurrent)) - fcurrent = flist_prev(fcurrent); + fcurrent = flist_prev(fcurrent,0); else - fcurrent = flist_next(fcurrent,0,0); + fcurrent = flist_next(fcurrent,0,0); unlink(fdel->name); flist_del(fdel); flist_renumber(); @@ -1333,13 +1344,13 @@ main(int argc, char *argv[]) break; case KEY_PGDN: need_read = 1; - fcurrent = flist_next(fcurrent,0,0); + fcurrent = flist_next(fcurrent,0,1); if (textreading) show_top = 1; break; case KEY_PGUP: need_read = 1; - fcurrent = flist_prev(fcurrent); + fcurrent = flist_prev(fcurrent,1); if (textreading) show_bottom = 1; break; @@ -1362,7 +1373,7 @@ main(int argc, char *argv[]) } else if (key == KEY_ASCALE) { newscale = auto_scale(fimg); } else { - newscale = arg / 100; + newscale = arg / 100.0; } if (newscale < 0.1) newscale = 0.1; @@ -1384,6 +1395,9 @@ main(int argc, char *argv[]) fcurrent = flist_goto(arg); } break; + case KEY_DELAY: + timeout = arg; + break; case KEY_VERBOSE: #if 0 /* fbdev testing/debugging hack */ { |