Center humbnails in window

master
Bert 2011-02-18 14:57:24 +01:00
parent 76cca4ecb6
commit 73a9279598
3 changed files with 10 additions and 5 deletions

View File

@ -1,6 +1,6 @@
all: sxiv
VERSION=git-20110217
VERSION=git-20110218
CC?=gcc
PREFIX?=/usr/local

View File

@ -98,7 +98,9 @@ void tns_render(tns_t *tns, win_t *win) {
win_clear(win);
x = y = 5;
i = cnt % tns->cols ? 1 : 0;
tns->x = x = (win->w - MIN(cnt, tns->cols) * thumb_dim) / 2 + 5;
tns->y = y = (win->h - (cnt / tns->cols + i) * thumb_dim) / 2 + 5;
i = tns->first;
while (i < cnt) {
@ -107,13 +109,14 @@ void tns_render(tns_t *tns, win_t *win) {
win_draw_pixmap(win, tns->thumbs[i].pm, tns->thumbs[i].x,
tns->thumbs[i].y, tns->thumbs[i].w, tns->thumbs[i].h);
if (++i % tns->cols == 0) {
x = 5;
x = tns->x;
y += thumb_dim;
} else {
x += thumb_dim;
}
}
printf("%d, %d\n", tns->sel, tns->cnt);
tns_highlight(tns, win, -1);
}
@ -175,10 +178,10 @@ int tns_translate(tns_t *tns, int x, int y) {
int n;
thumb_t *t;
if (!tns || x < 5 || y < 5)
if (!tns || x < tns->x || y < tns->y)
return -1;
if ((n = y / thumb_dim * tns-> cols + x / thumb_dim) < tns->cnt) {
if ((n = (y - tns->y) / thumb_dim * tns->cols + (x - tns->x) / thumb_dim) < tns->cnt) {
t = &tns->thumbs[n];
if (x > t->x && x < t->x + t->w && y > t->y && y < t->y + t->h)
return n;

View File

@ -39,6 +39,8 @@ typedef struct thumb_s {
typedef struct tns_s {
thumb_t *thumbs;
int cnt;
int x;
int y;
int cols;
int rows;
int first;