nsxiv/image.h

93 lines
2.0 KiB
C
Raw Normal View History

2011-01-17 13:57:59 +00:00
/* sxiv: image.h
2012-02-15 18:16:24 +00:00
* Copyright (c) 2012 Bert Muennich <be.muennich at googlemail.com>
2011-01-17 13:57:59 +00:00
*
2011-09-03 22:11:45 +01: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 22:11:45 +01: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 22:11:45 +01: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-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 13:49:06 +01:00
#include "types.h"
2011-01-18 15:40:37 +00:00
#include "window.h"
2011-08-16 23:56:18 +01:00
typedef struct {
2011-08-18 15:05:32 +01:00
Imlib_Image *im;
unsigned int delay;
} img_frame_t;
typedef struct {
img_frame_t *frames;
2011-08-16 23:56:18 +01:00
int cap;
int cnt;
int sel;
2011-09-11 20:01:24 +01:00
bool animate;
2011-08-16 23:56:18 +01:00
} multi_img_t;
2011-03-01 13:23:09 +00:00
typedef struct {
2011-02-25 11:08:12 +00:00
Imlib_Image *im;
int w;
int h;
win_t *win;
float x;
float y;
2011-02-25 11:08:12 +00:00
scalemode_t scalemode;
float zoom;
2011-09-11 20:01:24 +01:00
bool re;
bool checkpan;
bool dirty;
bool aa;
bool alpha;
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 20:01:24 +01:00
bool img_load(img_t*, const fileinfo_t*);
void img_close(img_t*, bool);
void img_render(img_t*);
2011-01-18 16:20:41 +00:00
bool img_fit_win(img_t*);
bool img_center(img_t*);
2011-01-28 12:34:16 +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
bool img_move(img_t*, float, float);
bool img_pan(img_t*, direction_t, int);
bool img_pan_edge(img_t*, direction_t);
2011-01-21 12:48:02 +00:00
void img_rotate(img_t*, int);
void img_rotate_left(img_t*);
void img_rotate_right(img_t*);
2011-01-26 13:42:10 +00:00
void img_flip(img_t*, int);
void img_flip_horizontal(img_t*);
void img_flip_vertical(img_t*);
2011-02-03 13:32:02 +00:00
void img_toggle_antialias(img_t*);
2011-09-11 20:01:24 +01:00
bool img_frame_navigate(img_t*, int);
bool img_frame_animate(img_t*, bool);
2011-08-18 15:05:32 +01:00
2011-01-17 13:57:59 +00:00
#endif /* IMAGE_H */