summaryrefslogtreecommitdiffstats
path: root/image.c
diff options
context:
space:
mode:
authorBert <ber.t@gmx.com>2011-01-20 15:39:08 +0100
committerBert <ber.t@gmx.com>2011-01-20 15:39:08 +0100
commit00f32120a6c62069b66737a5265d9befa3ac59ac (patch)
treeddb349e961cc69f8ca14c0cabad6747a3c777341 /image.c
parent822ef72657b60902bd67e48fb339c1c6fc5e0e5a (diff)
downloadnsxiv-00f32120a6c62069b66737a5265d9befa3ac59ac.tar.zst
Handle expose events
Diffstat (limited to 'image.c')
-rw-r--r--image.c47
1 files changed, 29 insertions, 18 deletions
diff --git a/image.c b/image.c
index 38d54d4..953b1c2 100644
--- a/image.c
+++ b/image.c
@@ -57,10 +57,8 @@ void img_load(img_t *img, const char *filename) {
img->h = imlib_image_get_height();
}
-void img_render(img_t *img, win_t *win) {
+void img_display(img_t *img, win_t *win) {
float zw, zh;
- unsigned int sx, sy, sw, sh;
- unsigned int dx, dy, dw, dh;
if (!img || !win || !imlib_context_get_image())
return;
@@ -84,30 +82,43 @@ void img_render(img_t *img, win_t *win) {
img->x = (win->w - img->w * img->zoom) / 2;
img->y = (win->h - img->h * img->zoom) / 2;
- if (img->x < 0) {
- sx = -img->x / img->zoom;
- sw = (img->x + win->w) / img->zoom;
- dx = 0;
- dw = win->w;
+ win_clear(win);
+
+ img_render(img, win, 0, 0, win->w, win->h);
+}
+
+void img_render(img_t *img, win_t *win, int x, int y, int w, int h) {
+ int sx, sy, sw, sh;
+ int dx, dy, dw, dh;
+
+ if (!img || !win || !imlib_context_get_image())
+ return;
+
+ if (img->x < x) {
+ sx = (x - img->x) / img->zoom;
+ sw = MIN(w / img->zoom, img->w - sx);
+ dx = x;
+ dw = sw * img->zoom;
} else {
sx = 0;
- sw = img->w;
+ sw = MIN((w - img->x + x) / img->zoom, img->w);
dx = img->x;
- dw = img->w * img->zoom;
+ dw = sw * img->zoom;
}
- if (img->y < 0) {
- sy = -img->y / img->zoom;
- sh = (img->y + win->h) / img->zoom;
- dy = 0;
- dh = win->h;
+ if (img->y < y) {
+ sy = (y - img->y) / img->zoom;
+ sh = MIN(h / img->zoom, img->h - sy);
+ dy = y;
+ dh = sh * img->zoom;
} else {
sy = 0;
- sh = img->h;
+ sh = MIN((h - img->y + y) / img->zoom, img->h);
dy = img->y;
- dh = img->h * img->zoom;
+ dh = sh * img->zoom;
}
- win_clear(win);
+ if (sw < 0 || sh < 0)
+ return;
imlib_render_image_part_on_drawable_at_size(sx, sy, sw, sh, dx, dy, dw, dh);
}