nsxiv/thumbs.h

67 lines
1.5 KiB
C
Raw Normal View History

/* sxiv: thumbs.h
* Copyright (c) 2011 Bert Muennich <muennich at informatik.hu-berlin.de>
*
2011-09-03 23:11:45 +02:00
* This program 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-09-03 23:11:45 +02:00
* This program 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.
*
2011-09-03 23:11:45 +02:00
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#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;
2011-08-18 00:38:55 +02:00
const fileinfo_t *file;
int x;
int y;
int w;
int h;
} thumb_t;
2011-03-01 14:23:09 +01:00
typedef struct {
thumb_t *thumbs;
int cap;
int cnt;
2011-02-18 14:57:24 +01:00
int x;
int y;
int cols;
int rows;
int first;
int sel;
unsigned char alpha;
2011-02-19 09:47:53 +01:00
unsigned char dirty;
} tns_t;
void tns_clean_cache(tns_t*);
2011-04-08 14:44:00 +02:00
2011-02-17 11:04:58 +01:00
void tns_init(tns_t*, int);
void tns_free(tns_t*);
int tns_load(tns_t*, int, const fileinfo_t*, Bool, Bool);
2011-02-17 11:04:58 +01:00
void tns_render(tns_t*, win_t*);
void tns_highlight(tns_t*, win_t*, int, Bool);
2011-07-22 14:49:06 +02:00
int tns_move_selection(tns_t*, win_t*, direction_t);
int tns_scroll(tns_t*, direction_t);
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 */