This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues/pull-requests.
nsxiv/commands.c

448 lines
9.0 KiB
C
Raw Normal View History

/* sxiv: commands.c
2012-02-15 19:16:24 +01:00
* Copyright (c) 2012 Bert Muennich <be.muennich at googlemail.com>
*
2011-09-03 23:11:45 +02:00
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version.
*
2011-09-03 23:11:45 +02:00
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
2011-09-03 23:11:45 +02:00
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#define _POSIX_C_SOURCE 200112L
#define _IMAGE_CONFIG
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/wait.h>
#include "commands.h"
#include "image.h"
#include "thumbs.h"
#include "util.h"
#include "config.h"
2011-10-12 18:38:29 +02:00
void cleanup(void);
2011-09-11 21:01:24 +02:00
void remove_file(int, bool);
void load_image(int);
2011-10-12 18:38:29 +02:00
void redraw(void);
void reset_cursor(void);
void animate(void);
2011-09-11 21:01:24 +02:00
void set_timeout(timeout_f, int, bool);
2011-09-02 04:33:44 +02:00
void reset_timeout(timeout_f);
extern appmode_t mode;
extern img_t img;
extern tns_t tns;
extern win_t win;
2011-08-18 00:38:55 +02:00
extern fileinfo_t *files;
extern int filecnt, fileidx;
extern int prefix;
const int ss_delays[] = {
1, 2, 3, 5, 10, 15, 20, 30, 60, 120, 180, 300, 600
};
2011-09-11 21:01:24 +02:00
bool it_quit(arg_t a) {
cleanup();
2011-09-26 15:40:07 +02:00
exit(EXIT_SUCCESS);
}
2011-09-11 21:01:24 +02:00
bool it_switch_mode(arg_t a) {
2011-08-19 13:09:22 +02:00
if (mode == MODE_IMAGE) {
2011-09-29 12:43:36 +02:00
if (tns.thumbs == NULL)
tns_init(&tns, filecnt, &win);
2011-09-11 21:01:24 +02:00
img_close(&img, false);
2011-09-03 17:01:39 +02:00
reset_timeout(reset_cursor);
2011-11-01 08:36:20 +01:00
tns.sel = fileidx;
2011-09-11 21:01:24 +02:00
tns.dirty = true;
2011-08-19 13:09:22 +02:00
mode = MODE_THUMB;
} else {
load_image(tns.sel);
2011-08-19 13:09:22 +02:00
mode = MODE_IMAGE;
}
2011-09-11 21:01:24 +02:00
return true;
}
2011-09-11 21:01:24 +02:00
bool it_toggle_fullscreen(arg_t a) {
win_toggle_fullscreen(&win);
/* redraw after next ConfigureNotify event */
2011-09-11 21:01:24 +02:00
set_timeout(redraw, TO_REDRAW_RESIZE, false);
2011-08-19 13:09:22 +02:00
if (mode == MODE_IMAGE)
2011-09-11 21:01:24 +02:00
img.checkpan = true;
else
2011-09-11 21:01:24 +02:00
tns.dirty = true;
return false;
}
bool it_toggle_bar(arg_t a) {
win_toggle_bar(&win);
if (mode == MODE_IMAGE)
img.checkpan = img.dirty = true;
else
tns.dirty = true;
return true;
}
bool t_reload_all(arg_t a) {
if (mode == MODE_THUMB) {
tns_free(&tns);
tns_init(&tns, filecnt, &win);
return true;
} else {
return false;
}
}
2011-09-11 21:01:24 +02:00
bool it_reload_image(arg_t a) {
2011-08-19 13:09:22 +02:00
if (mode == MODE_IMAGE) {
load_image(fileidx);
2011-09-03 17:01:39 +02:00
} else {
win_set_cursor(&win, CURSOR_WATCH);
2011-09-11 21:01:24 +02:00
if (!tns_load(&tns, tns.sel, &files[tns.sel], true, false)) {
remove_file(tns.sel, false);
tns.dirty = true;
2011-09-03 17:01:39 +02:00
if (tns.sel >= tns.cnt)
tns.sel = tns.cnt - 1;
}
}
2011-09-11 21:01:24 +02:00
return true;
}
2011-09-11 21:01:24 +02:00
bool it_remove_image(arg_t a) {
2011-08-19 13:09:22 +02:00
if (mode == MODE_IMAGE) {
2011-09-11 21:01:24 +02:00
remove_file(fileidx, true);
load_image(fileidx >= filecnt ? filecnt - 1 : fileidx);
2011-09-11 21:01:24 +02:00
return true;
} else if (tns.sel < tns.cnt) {
2011-09-11 21:01:24 +02:00
remove_file(tns.sel, true);
tns.dirty = true;
if (tns.sel >= tns.cnt)
tns.sel = tns.cnt - 1;
2011-09-11 21:01:24 +02:00
return true;
} else {
2011-09-11 21:01:24 +02:00
return false;
}
}
2011-09-11 21:01:24 +02:00
bool i_navigate(arg_t a) {
long n = (long) a;
2011-08-19 13:09:22 +02:00
if (mode == MODE_IMAGE) {
if (prefix > 0)
n *= prefix;
n += fileidx;
if (n < 0)
n = 0;
if (n >= filecnt)
n = filecnt - 1;
if (n != fileidx) {
load_image(n);
2011-09-11 21:01:24 +02:00
return true;
}
}
2011-09-11 21:01:24 +02:00
return false;
}
2011-09-11 21:01:24 +02:00
bool it_first(arg_t a) {
2011-08-19 13:09:22 +02:00
if (mode == MODE_IMAGE && fileidx != 0) {
load_image(0);
2011-09-11 21:01:24 +02:00
return true;
2011-08-19 13:09:22 +02:00
} else if (mode == MODE_THUMB && tns.sel != 0) {
tns.sel = 0;
2011-09-11 21:01:24 +02:00
tns.dirty = true;
return true;
} else {
2011-09-11 21:01:24 +02:00
return false;
}
}
bool it_n_or_last(arg_t a) {
int n = prefix != 0 && prefix - 1 < filecnt ? prefix - 1 : filecnt - 1;
if (mode == MODE_IMAGE && fileidx != n) {
load_image(n);
2011-09-11 21:01:24 +02:00
return true;
} else if (mode == MODE_THUMB && tns.sel != n) {
tns.sel = n;
2011-09-11 21:01:24 +02:00
tns.dirty = true;
return true;
} else {
2011-09-11 21:01:24 +02:00
return false;
}
}
2011-09-11 21:01:24 +02:00
bool i_navigate_frame(arg_t a) {
2011-08-19 18:46:17 +02:00
if (mode == MODE_IMAGE && !img.multi.animate)
return img_frame_navigate(&img, (long) a);
2011-08-19 18:46:17 +02:00
else
2011-09-11 21:01:24 +02:00
return false;
2011-08-19 18:46:17 +02:00
}
2011-09-11 21:01:24 +02:00
bool i_toggle_animation(arg_t a) {
2011-08-19 18:46:17 +02:00
if (mode != MODE_IMAGE)
2011-09-11 21:01:24 +02:00
return false;
2011-08-19 18:46:17 +02:00
if (img.multi.animate) {
2011-09-02 04:33:44 +02:00
reset_timeout(animate);
2011-09-11 21:01:24 +02:00
img.multi.animate = false;
} else if (img_frame_animate(&img, true)) {
set_timeout(animate, img.multi.frames[img.multi.sel].delay, true);
2011-08-19 18:46:17 +02:00
}
2011-09-11 21:01:24 +02:00
return true;
2011-08-17 00:56:18 +02:00
}
bool it_scroll_move(arg_t a) {
direction_t dir = (direction_t) a;
2011-08-19 13:09:22 +02:00
if (mode == MODE_IMAGE)
return img_pan(&img, dir, prefix);
else
return tns_move_selection(&tns, dir);
}
bool it_scroll_screen(arg_t a) {
direction_t dir = (direction_t) a;
2011-08-19 13:09:22 +02:00
if (mode == MODE_IMAGE)
return img_pan(&img, dir, -1);
else
return tns_scroll(&tns, dir, true);
}
bool i_scroll_to_edge(arg_t a) {
direction_t dir = (direction_t) a;
2011-08-19 13:09:22 +02:00
if (mode == MODE_IMAGE)
return img_pan_edge(&img, dir);
else
2011-09-11 21:01:24 +02:00
return false;
}
/* Xlib helper function for i_drag() */
Bool is_motionnotify(Display *d, XEvent *e, XPointer a) {
return e != NULL && e->type == MotionNotify;
}
2011-09-11 21:01:24 +02:00
bool i_drag(arg_t a) {
int dx = 0, dy = 0, i, ox, oy, x, y;
unsigned int ui;
2011-09-11 21:01:24 +02:00
bool dragging = true, next = false;
XEvent e;
Window w;
2011-08-19 13:09:22 +02:00
if (mode != MODE_IMAGE)
2011-09-11 21:01:24 +02:00
return false;
if (!XQueryPointer(win.env.dpy, win.xwin, &w, &w, &i, &i, &ox, &oy, &ui))
2011-09-11 21:01:24 +02:00
return false;
win_set_cursor(&win, CURSOR_HAND);
while (dragging) {
if (!next)
XMaskEvent(win.env.dpy,
ButtonPressMask | ButtonReleaseMask | PointerMotionMask, &e);
switch (e.type) {
case ButtonPress:
case ButtonRelease:
2011-09-11 21:01:24 +02:00
dragging = false;
break;
case MotionNotify:
x = e.xmotion.x;
y = e.xmotion.y;
if (x >= 0 && x <= win.w && y >= 0 && y <= win.h) {
dx += x - ox;
dy += y - oy;
}
ox = x;
oy = y;
break;
}
if (dragging)
next = XCheckIfEvent(win.env.dpy, &e, is_motionnotify, None);
if ((!dragging || !next) && (dx != 0 || dy != 0)) {
if (img_move(&img, dx, dy)) {
img_render(&img);
win_draw(&win);
}
dx = dy = 0;
}
}
win_set_cursor(&win, CURSOR_ARROW);
2011-09-11 21:01:24 +02:00
set_timeout(reset_cursor, TO_CURSOR_HIDE, true);
2011-09-02 04:33:44 +02:00
reset_timeout(redraw);
2011-09-11 21:01:24 +02:00
return false;
}
2011-09-11 21:01:24 +02:00
bool i_zoom(arg_t a) {
long scale = (long) a;
2011-08-19 13:09:22 +02:00
if (mode != MODE_IMAGE)
2011-09-11 21:01:24 +02:00
return false;
2011-08-19 18:46:17 +02:00
if (scale > 0)
return img_zoom_in(&img);
else if (scale < 0)
return img_zoom_out(&img);
else
return false;
}
bool i_set_zoom(arg_t a) {
if (mode == MODE_IMAGE)
return img_zoom(&img, (prefix ? prefix : (long) a) / 100.0);
else
return false;
}
2011-09-11 21:01:24 +02:00
bool i_fit_to_win(arg_t a) {
2011-09-29 12:43:36 +02:00
bool ret = false;
2011-08-19 13:09:22 +02:00
if (mode == MODE_IMAGE) {
if ((ret = img_fit_win(&img)))
img_center(&img);
}
2011-09-29 12:43:36 +02:00
return ret;
}
2011-09-11 21:01:24 +02:00
bool i_fit_to_img(arg_t a) {
int x, y;
unsigned int w, h;
2011-09-29 12:43:36 +02:00
bool ret = false;
2011-08-19 13:09:22 +02:00
if (mode == MODE_IMAGE) {
x = MAX(0, win.x + img.x);
y = MAX(0, win.y + img.y);
w = img.w * img.zoom;
h = img.h * img.zoom;
if ((ret = win_moveresize(&win, x, y, w, h))) {
img.x = x - win.x;
img.y = y - win.y;
2011-11-11 23:57:36 +01:00
img.dirty = true;
}
}
2011-09-29 12:43:36 +02:00
return ret;
}
2011-09-11 21:01:24 +02:00
bool i_rotate(arg_t a) {
direction_t dir = (direction_t) a;
2011-08-19 13:09:22 +02:00
if (mode == MODE_IMAGE) {
if (dir == DIR_LEFT) {
img_rotate_left(&img);
2011-09-11 21:01:24 +02:00
return true;
} else if (dir == DIR_RIGHT) {
img_rotate_right(&img);
2011-09-11 21:01:24 +02:00
return true;
}
}
2011-09-11 21:01:24 +02:00
return false;
}
bool i_flip(arg_t a) {
2012-05-06 13:02:34 +02:00
flipdir_t dir = (flipdir_t) a;
if (mode == MODE_IMAGE) {
2012-05-06 13:02:34 +02:00
img_flip(&img, dir);
return true;
} else {
return false;
}
}
2011-09-11 21:01:24 +02:00
bool i_toggle_antialias(arg_t a) {
2011-08-19 13:09:22 +02:00
if (mode == MODE_IMAGE) {
img_toggle_antialias(&img);
2011-09-11 21:01:24 +02:00
return true;
} else {
2011-09-11 21:01:24 +02:00
return false;
}
}
2011-09-11 21:01:24 +02:00
bool it_toggle_alpha(arg_t a) {
img.alpha = tns.alpha = !img.alpha;
if (mode == MODE_IMAGE)
img.dirty = true;
else
tns.dirty = true;
return true;
}
2011-09-11 21:01:24 +02:00
bool it_open_with(arg_t a) {
const char *prog = (const char*) a;
pid_t pid;
2011-09-29 12:43:36 +02:00
if (prog == NULL || *prog == '\0')
2011-09-11 21:01:24 +02:00
return false;
2011-09-11 21:01:24 +02:00
if ((pid = fork()) == 0) {
execlp(prog, prog,
2011-08-19 13:09:22 +02:00
files[mode == MODE_IMAGE ? fileidx : tns.sel].path, NULL);
warn("could not exec: %s", prog);
2011-09-26 15:40:07 +02:00
exit(EXIT_FAILURE);
} else if (pid < 0) {
warn("could not fork. program was: %s", prog);
}
2011-09-11 21:01:24 +02:00
return false;
}
2011-09-11 21:01:24 +02:00
bool it_shell_cmd(arg_t a) {
int n, status;
const char *cmdline = (const char*) a;
pid_t pid;
2011-09-29 12:43:36 +02:00
if (cmdline == NULL || *cmdline == '\0')
return false;
n = mode == MODE_IMAGE ? fileidx : tns.sel;
if (setenv("SXIV_IMG", files[n].path, 1) < 0) {
2011-09-10 18:41:20 +02:00
warn("could not set env.-variable: SXIV_IMG. command line was: %s",
cmdline);
2011-09-11 21:01:24 +02:00
return false;
}
if ((pid = fork()) == 0) {
execl("/bin/sh", "/bin/sh", "-c", cmdline, NULL);
2011-09-10 18:41:20 +02:00
warn("could not exec: /bin/sh. command line was: %s", cmdline);
2011-09-26 15:40:07 +02:00
exit(EXIT_FAILURE);
} else if (pid < 0) {
warn("could not fork. command line was: %s", cmdline);
2011-09-11 21:01:24 +02:00
return false;
}
2011-09-03 17:01:39 +02:00
win_set_cursor(&win, CURSOR_WATCH);
waitpid(pid, &status, 0);
2011-09-29 12:43:36 +02:00
if (WIFEXITED(status) == 0 || WEXITSTATUS(status) != 0)
warn("child exited with non-zero return value: %d. command line was: %s",
WEXITSTATUS(status), cmdline);
2011-08-19 13:09:22 +02:00
if (mode == MODE_IMAGE) {
2011-09-11 21:01:24 +02:00
img_close(&img, true);
load_image(fileidx);
}
2011-09-11 21:01:24 +02:00
if (!tns_load(&tns, n, &files[n], true, mode == MODE_IMAGE) &&
mode == MODE_THUMB)
{
2011-09-11 21:01:24 +02:00
remove_file(tns.sel, false);
tns.dirty = true;
if (tns.sel >= tns.cnt)
tns.sel = tns.cnt - 1;
}
2011-09-11 21:01:24 +02:00
return true;
}