nsxiv/thumbs.h

72 lines
1.5 KiB
C
Raw Normal View History

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