2011-02-16 20:40:20 +00:00
|
|
|
/* sxiv: thumbs.h
|
|
|
|
* Copyright (c) 2011 Bert Muennich <muennich at informatik.hu-berlin.de>
|
|
|
|
*
|
2011-09-03 21:11:45 +00: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-08-17 23:18:26 +00:00
|
|
|
*
|
2011-09-03 21:11:45 +00: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-08-17 23:18:26 +00:00
|
|
|
*
|
2011-09-03 21:11:45 +00: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.
|
2011-02-16 20:40:20 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef THUMBS_H
|
|
|
|
#define THUMBS_H
|
|
|
|
|
2011-08-19 13:02:35 +00:00
|
|
|
#include <X11/Xlib.h>
|
2011-03-15 12:55:52 +00:00
|
|
|
#include <Imlib2.h>
|
|
|
|
|
2011-07-22 12:49:06 +00: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-03-15 12:55:52 +00:00
|
|
|
Imlib_Image *im;
|
2011-08-17 22:38:55 +00:00
|
|
|
const fileinfo_t *file;
|
2011-02-16 20:40:20 +00:00
|
|
|
int x;
|
|
|
|
int y;
|
|
|
|
int w;
|
|
|
|
int h;
|
|
|
|
} 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;
|
2011-02-18 13:57:24 +00:00
|
|
|
int x;
|
|
|
|
int y;
|
2011-02-16 20:40:20 +00:00
|
|
|
int cols;
|
|
|
|
int rows;
|
|
|
|
int first;
|
|
|
|
int sel;
|
2011-09-11 19:01:24 +00:00
|
|
|
bool alpha;
|
|
|
|
bool dirty;
|
2011-02-16 20:40:20 +00:00
|
|
|
} tns_t;
|
|
|
|
|
2011-04-11 14:58:38 +00:00
|
|
|
void tns_clean_cache(tns_t*);
|
2011-04-08 12:44:00 +00:00
|
|
|
|
2011-02-17 10:04:58 +00:00
|
|
|
void tns_init(tns_t*, int);
|
2011-04-11 14:58:38 +00:00
|
|
|
void tns_free(tns_t*);
|
2011-02-16 20:40:20 +00:00
|
|
|
|
2011-09-11 19:01:24 +00:00
|
|
|
bool tns_load(tns_t*, int, const fileinfo_t*, bool, bool);
|
2011-02-17 10:04:58 +00:00
|
|
|
|
2011-02-16 20:40:20 +00:00
|
|
|
void tns_render(tns_t*, win_t*);
|
2011-09-11 19:01:24 +00:00
|
|
|
void tns_highlight(tns_t*, win_t*, int, bool);
|
2011-02-16 20:40:20 +00:00
|
|
|
|
2011-09-11 19:01:24 +00:00
|
|
|
bool tns_move_selection(tns_t*, win_t*, direction_t);
|
|
|
|
bool tns_scroll(tns_t*, direction_t);
|
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 */
|