2011-01-17 14:57:59 +01:00
|
|
|
/* sxiv: image.h
|
|
|
|
* Copyright (c) 2011 Bert Muennich <muennich at informatik.hu-berlin.de>
|
|
|
|
*
|
2011-08-18 01:18:26 +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-01-17 14:57:59 +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-08-18 01:18:26 +02:00
|
|
|
*
|
2011-01-17 14:57:59 +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
|
2011-08-18 01:18:26 +02:00
|
|
|
* Foundation, Inc., 51 Franklin Street, 5th Floor, Boston, MA 02110-1301, USA.
|
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-03-01 14:23:09 +01:00
|
|
|
typedef struct {
|
2011-02-25 12:08:12 +01:00
|
|
|
Imlib_Image *im;
|
|
|
|
|
2011-01-18 20:11:28 +01:00
|
|
|
float zoom;
|
2011-02-03 16:14:49 +01:00
|
|
|
scalemode_t scalemode;
|
2011-02-04 00:25:57 +01:00
|
|
|
|
2011-01-21 12:13:52 +01:00
|
|
|
unsigned char re;
|
2011-01-22 23:27:29 +01:00
|
|
|
unsigned char checkpan;
|
2011-01-26 14:59:32 +01:00
|
|
|
unsigned char aa;
|
2011-03-10 11:41:40 +01:00
|
|
|
unsigned char alpha;
|
2011-02-04 00:25:57 +01:00
|
|
|
|
2011-01-17 14:57:59 +01:00
|
|
|
int x;
|
|
|
|
int y;
|
2011-01-20 15:39:08 +01:00
|
|
|
int w;
|
|
|
|
int h;
|
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-08-18 00:38:55 +02:00
|
|
|
int img_load(img_t*, const fileinfo_t*);
|
2011-03-01 18:49:02 +01:00
|
|
|
void img_close(img_t*, int);
|
2011-01-31 15:51:26 +01:00
|
|
|
|
2011-01-20 21:44:34 +01:00
|
|
|
void img_render(img_t*, win_t*);
|
2011-01-18 17:20:41 +01:00
|
|
|
|
2011-02-03 16:55:24 +01:00
|
|
|
int img_fit_win(img_t*, win_t*);
|
2011-02-03 14:32:02 +01:00
|
|
|
int img_center(img_t*, win_t*);
|
2011-01-28 13:34:16 +01:00
|
|
|
|
2011-04-19 13:27:20 +02:00
|
|
|
int img_zoom(img_t*, win_t*, float);
|
|
|
|
int img_zoom_in(img_t*, win_t*);
|
|
|
|
int img_zoom_out(img_t*, win_t*);
|
2011-01-20 23:22:00 +01:00
|
|
|
|
2011-01-29 22:37:40 +01:00
|
|
|
int img_move(img_t*, win_t*, int, int);
|
2011-07-22 14:49:06 +02:00
|
|
|
int img_pan(img_t*, win_t*, direction_t, int);
|
|
|
|
int img_pan_edge(img_t*, win_t*, direction_t);
|
2011-01-21 13:48:02 +01:00
|
|
|
|
2011-02-03 14:32:02 +01:00
|
|
|
void img_rotate_left(img_t*, win_t*);
|
|
|
|
void img_rotate_right(img_t*, win_t*);
|
2011-01-26 14:42:10 +01:00
|
|
|
|
2011-02-03 14:32:02 +01:00
|
|
|
void img_toggle_antialias(img_t*);
|
2011-01-26 14:59:32 +01:00
|
|
|
|
2011-01-17 14:57:59 +01:00
|
|
|
#endif /* IMAGE_H */
|