2013-02-08 20:52:41 +00:00
|
|
|
/* Copyright 2011 Bert Muennich
|
2011-02-16 20:40:20 +00:00
|
|
|
*
|
2013-02-08 20:52:41 +00:00
|
|
|
* This file is part of sxiv.
|
2011-08-18 00:18:26 +01:00
|
|
|
*
|
2013-02-08 20:52:41 +00: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 00:18:26 +01:00
|
|
|
*
|
2013-02-08 20:52:41 +00: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 20:40:20 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef THUMBS_H
|
|
|
|
#define THUMBS_H
|
|
|
|
|
2011-08-19 14:02:35 +01:00
|
|
|
#include <X11/Xlib.h>
|
2011-03-15 12:55:52 +00:00
|
|
|
#include <Imlib2.h>
|
|
|
|
|
2011-07-22 13:49:06 +01:00
|
|
|
#include "types.h"
|
2011-02-16 20:40:20 +00:00
|
|
|
#include "window.h"
|
|
|
|
|
2011-03-01 13:23:09 +00:00
|
|
|
typedef struct {
|
2011-08-17 23:38:55 +01:00
|
|
|
const fileinfo_t *file;
|
2013-12-13 12:04:45 +00:00
|
|
|
Imlib_Image im;
|
2011-02-16 20:40:20 +00:00
|
|
|
int w;
|
|
|
|
int h;
|
2011-09-17 16:23:51 +01:00
|
|
|
int x;
|
|
|
|
int y;
|
2014-08-16 10:37:49 +01:00
|
|
|
bool loaded;
|
2011-02-16 20:40:20 +00:00
|
|
|
} thumb_t;
|
|
|
|
|
2011-03-01 13:23:09 +00:00
|
|
|
typedef struct {
|
2011-02-16 20:40:20 +00:00
|
|
|
thumb_t *thumbs;
|
2011-02-27 12:29:24 +00:00
|
|
|
int cap;
|
2011-02-16 20:40:20 +00:00
|
|
|
int cnt;
|
2014-08-16 10:37:49 +01:00
|
|
|
int loadnext;
|
2011-09-17 16:23:51 +01:00
|
|
|
int first;
|
2014-08-16 17:36:17 +01:00
|
|
|
int *sel;
|
2011-09-17 16:23:51 +01:00
|
|
|
|
|
|
|
win_t *win;
|
2011-02-18 13:57:24 +00:00
|
|
|
int x;
|
|
|
|
int y;
|
2011-02-16 20:40:20 +00:00
|
|
|
int cols;
|
|
|
|
int rows;
|
2011-09-17 16:23:51 +01:00
|
|
|
|
2011-09-11 20:01:24 +01:00
|
|
|
bool dirty;
|
2011-02-16 20:40:20 +00:00
|
|
|
} tns_t;
|
|
|
|
|
2011-04-11 15:58:38 +01:00
|
|
|
void tns_clean_cache(tns_t*);
|
2011-04-08 13:44:00 +01:00
|
|
|
|
2014-08-16 17:36:17 +01:00
|
|
|
void tns_init(tns_t*, int, win_t*, int*);
|
2011-04-11 15:58:38 +01:00
|
|
|
void tns_free(tns_t*);
|
2011-02-16 20:40:20 +00:00
|
|
|
|
2014-08-16 20:31:05 +01:00
|
|
|
bool tns_load(tns_t*, int, const fileinfo_t*, bool);
|
2011-02-17 10:04:58 +00:00
|
|
|
|
2011-09-17 16:23:51 +01:00
|
|
|
void tns_render(tns_t*);
|
2013-11-14 13:37:08 +00:00
|
|
|
void tns_mark(tns_t*, int, bool);
|
2011-09-17 16:23:51 +01:00
|
|
|
void tns_highlight(tns_t*, int, bool);
|
2011-02-16 20:40:20 +00:00
|
|
|
|
2012-07-15 09:30:58 +01:00
|
|
|
bool tns_move_selection(tns_t*, direction_t, int);
|
2011-10-27 15:21:01 +01:00
|
|
|
bool tns_scroll(tns_t*, direction_t, bool);
|
2011-02-17 15:57:55 +00:00
|
|
|
|
2011-02-17 16:28:13 +00:00
|
|
|
int tns_translate(tns_t*, int, int);
|
|
|
|
|
2011-02-16 20:40:20 +00:00
|
|
|
#endif /* THUMBS_H */
|