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