2013-02-08 21:52:41 +01:00
|
|
|
/* Copyright 2011 Bert Muennich
|
2011-02-16 21:40:20 +01:00
|
|
|
*
|
2013-02-08 21:52:41 +01:00
|
|
|
* This file is part of sxiv.
|
2011-08-18 01:18:26 +02:00
|
|
|
*
|
2013-02-08 21:52:41 +01:00
|
|
|
* sxiv 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-08-18 01:18:26 +02:00
|
|
|
*
|
2013-02-08 21:52:41 +01:00
|
|
|
* sxiv 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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with sxiv. If not, see <http://www.gnu.org/licenses/>.
|
2011-02-16 21:40:20 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef THUMBS_H
|
|
|
|
#define THUMBS_H
|
|
|
|
|
2011-08-19 15:02:35 +02:00
|
|
|
#include <X11/Xlib.h>
|
2011-03-15 13:55:52 +01:00
|
|
|
#include <Imlib2.h>
|
|
|
|
|
2011-07-22 14:49:06 +02:00
|
|
|
#include "types.h"
|
2011-02-16 21:40:20 +01:00
|
|
|
#include "window.h"
|
|
|
|
|
2011-03-01 14:23:09 +01:00
|
|
|
typedef struct {
|
2013-12-13 13:04:45 +01:00
|
|
|
Imlib_Image im;
|
2011-02-16 21:40:20 +01:00
|
|
|
int w;
|
|
|
|
int h;
|
2011-09-17 17:23:51 +02:00
|
|
|
int x;
|
|
|
|
int y;
|
2011-02-16 21:40:20 +01:00
|
|
|
} thumb_t;
|
|
|
|
|
2011-03-01 14:23:09 +01:00
|
|
|
typedef struct {
|
2014-08-16 22:21:51 +02:00
|
|
|
const fileinfo_t *files;
|
2011-02-16 21:40:20 +01:00
|
|
|
thumb_t *thumbs;
|
|
|
|
int cnt;
|
2014-08-16 11:37:49 +02:00
|
|
|
int loadnext;
|
2014-09-25 20:57:24 +02:00
|
|
|
int first, end;
|
|
|
|
int r_first, r_end;
|
2014-08-16 18:36:17 +02:00
|
|
|
int *sel;
|
2011-09-17 17:23:51 +02:00
|
|
|
|
|
|
|
win_t *win;
|
2011-02-18 14:57:24 +01:00
|
|
|
int x;
|
|
|
|
int y;
|
2011-02-16 21:40:20 +01:00
|
|
|
int cols;
|
|
|
|
int rows;
|
2014-09-28 00:26:02 +02:00
|
|
|
int zl;
|
2014-09-29 08:47:01 +02:00
|
|
|
int dim;
|
2011-09-17 17:23:51 +02:00
|
|
|
|
2011-09-11 21:01:24 +02:00
|
|
|
bool dirty;
|
2011-02-16 21:40:20 +01:00
|
|
|
} tns_t;
|
|
|
|
|
2011-04-11 16:58:38 +02:00
|
|
|
void tns_clean_cache(tns_t*);
|
2011-04-08 14:44:00 +02:00
|
|
|
|
2014-08-16 22:21:51 +02:00
|
|
|
void tns_init(tns_t*, const fileinfo_t*, int, int*, win_t*);
|
2011-04-11 16:58:38 +02:00
|
|
|
void tns_free(tns_t*);
|
2011-02-16 21:40:20 +01:00
|
|
|
|
2014-08-16 22:21:51 +02:00
|
|
|
bool tns_load(tns_t*, int, bool);
|
2014-09-25 20:57:24 +02:00
|
|
|
void tns_unload(tns_t*, int);
|
2011-02-17 11:04:58 +01:00
|
|
|
|
2011-09-17 17:23:51 +02:00
|
|
|
void tns_render(tns_t*);
|
2013-11-14 14:37:08 +01:00
|
|
|
void tns_mark(tns_t*, int, bool);
|
2011-09-17 17:23:51 +02:00
|
|
|
void tns_highlight(tns_t*, int, bool);
|
2011-02-16 21:40:20 +01:00
|
|
|
|
2012-07-15 10:30:58 +02:00
|
|
|
bool tns_move_selection(tns_t*, direction_t, int);
|
2011-10-27 16:21:01 +02:00
|
|
|
bool tns_scroll(tns_t*, direction_t, bool);
|
2011-02-17 16:57:55 +01:00
|
|
|
|
2014-09-28 00:26:02 +02:00
|
|
|
bool tns_zoom(tns_t*, int);
|
|
|
|
|
2011-02-17 17:28:13 +01:00
|
|
|
int tns_translate(tns_t*, int, int);
|
|
|
|
|
2011-02-16 21:40:20 +01:00
|
|
|
#endif /* THUMBS_H */
|