2013-02-08 21:52:41 +01:00
|
|
|
/* Copyright 2011 Bert Muennich
|
2011-01-17 14:57:59 +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-01-17 14:57:59 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef IMAGE_H
|
|
|
|
#define IMAGE_H
|
|
|
|
|
2011-02-25 12:08:12 +01:00
|
|
|
#include <Imlib2.h>
|
|
|
|
|
2011-07-22 14:49:06 +02:00
|
|
|
#include "types.h"
|
2011-01-18 16:40:37 +01:00
|
|
|
#include "window.h"
|
|
|
|
|
2011-08-17 00:56:18 +02:00
|
|
|
typedef struct {
|
2013-12-13 13:04:45 +01:00
|
|
|
Imlib_Image im;
|
2011-08-18 16:05:32 +02:00
|
|
|
unsigned int delay;
|
|
|
|
} img_frame_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
img_frame_t *frames;
|
2011-08-17 00:56:18 +02:00
|
|
|
int cap;
|
|
|
|
int cnt;
|
2011-08-17 18:01:21 +02:00
|
|
|
int sel;
|
2011-09-11 21:01:24 +02:00
|
|
|
bool animate;
|
2016-11-27 08:54:15 +01:00
|
|
|
int framedelay;
|
2014-01-04 18:38:40 +01:00
|
|
|
int length;
|
2011-08-17 00:56:18 +02:00
|
|
|
} multi_img_t;
|
|
|
|
|
2011-03-01 14:23:09 +01:00
|
|
|
typedef struct {
|
2013-12-13 13:04:45 +01:00
|
|
|
Imlib_Image im;
|
2011-09-17 17:23:51 +02:00
|
|
|
int w;
|
|
|
|
int h;
|
|
|
|
|
|
|
|
win_t *win;
|
2011-10-16 18:31:01 +02:00
|
|
|
float x;
|
|
|
|
float y;
|
2011-02-25 12:08:12 +01:00
|
|
|
|
2011-02-03 16:14:49 +01:00
|
|
|
scalemode_t scalemode;
|
2011-09-17 17:23:51 +02:00
|
|
|
float zoom;
|
2011-02-04 00:25:57 +01:00
|
|
|
|
2011-09-11 21:01:24 +02:00
|
|
|
bool checkpan;
|
|
|
|
bool dirty;
|
|
|
|
bool aa;
|
|
|
|
bool alpha;
|
2011-02-04 00:25:57 +01:00
|
|
|
|
2013-11-13 20:54:09 +01:00
|
|
|
Imlib_Color_Modifier cmod;
|
|
|
|
int gamma;
|
|
|
|
|
2014-01-04 18:38:40 +01:00
|
|
|
struct {
|
|
|
|
bool on;
|
|
|
|
int delay;
|
|
|
|
} ss;
|
|
|
|
|
2011-09-17 17:23:51 +02:00
|
|
|
multi_img_t multi;
|
2011-01-17 14:57:59 +01:00
|
|
|
} img_t;
|
|
|
|
|
2011-01-21 12:57:35 +01:00
|
|
|
void img_init(img_t*, win_t*);
|
2011-01-18 16:40:37 +01:00
|
|
|
|
2011-09-11 21:01:24 +02:00
|
|
|
bool img_load(img_t*, const fileinfo_t*);
|
2015-10-28 23:03:37 +01:00
|
|
|
CLEANUP void img_close(img_t*, bool);
|
2011-01-31 15:51:26 +01:00
|
|
|
|
2011-09-17 17:23:51 +02:00
|
|
|
void img_render(img_t*);
|
2011-01-18 17:20:41 +01:00
|
|
|
|
2012-07-19 12:28:44 +02:00
|
|
|
bool img_fit_win(img_t*, scalemode_t);
|
2011-01-28 13:34:16 +01:00
|
|
|
|
2011-09-17 17:23:51 +02:00
|
|
|
bool img_zoom(img_t*, float);
|
|
|
|
bool img_zoom_in(img_t*);
|
|
|
|
bool img_zoom_out(img_t*);
|
2011-01-20 23:22:00 +01:00
|
|
|
|
2011-10-16 18:31:01 +02:00
|
|
|
bool img_move(img_t*, float, float);
|
2011-10-16 17:39:22 +02:00
|
|
|
bool img_pan(img_t*, direction_t, int);
|
2011-09-17 17:23:51 +02:00
|
|
|
bool img_pan_edge(img_t*, direction_t);
|
2011-01-21 13:48:02 +01:00
|
|
|
|
2013-08-10 15:55:18 +02:00
|
|
|
void img_rotate(img_t*, degree_t);
|
2012-05-06 13:02:34 +02:00
|
|
|
void img_flip(img_t*, flipdir_t);
|
2012-05-06 09:39:45 +02:00
|
|
|
|
2011-02-03 14:32:02 +01:00
|
|
|
void img_toggle_antialias(img_t*);
|
2011-01-26 14:59:32 +01:00
|
|
|
|
2013-11-14 17:06:20 +01:00
|
|
|
bool img_change_gamma(img_t*, int);
|
2013-11-13 20:54:09 +01:00
|
|
|
|
2011-09-11 21:01:24 +02:00
|
|
|
bool img_frame_navigate(img_t*, int);
|
2014-09-01 20:41:27 +02:00
|
|
|
bool img_frame_animate(img_t*);
|
2011-08-18 16:05:32 +02:00
|
|
|
|
2011-01-17 14:57:59 +01:00
|
|
|
#endif /* IMAGE_H */
|