2011-01-17 13:57:59 +00:00
|
|
|
/* sxiv: image.h
|
|
|
|
* Copyright (c) 2011 Bert Muennich <muennich at informatik.hu-berlin.de>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef IMAGE_H
|
|
|
|
#define IMAGE_H
|
|
|
|
|
2011-01-18 15:40:37 +00:00
|
|
|
#include "window.h"
|
|
|
|
|
2011-01-28 12:34:16 +00:00
|
|
|
typedef enum scalemode_e {
|
2011-01-17 15:41:22 +00:00
|
|
|
SCALE_DOWN = 0,
|
|
|
|
SCALE_FIT,
|
|
|
|
SCALE_ZOOM
|
2011-01-28 12:34:16 +00:00
|
|
|
} scalemode_t;
|
2011-01-17 13:57:59 +00:00
|
|
|
|
2011-01-21 12:48:02 +00:00
|
|
|
typedef enum pandir_e {
|
|
|
|
PAN_LEFT = 0,
|
|
|
|
PAN_RIGHT,
|
|
|
|
PAN_UP,
|
|
|
|
PAN_DOWN
|
|
|
|
} pandir_t;
|
|
|
|
|
2011-01-17 13:57:59 +00:00
|
|
|
typedef struct img_s {
|
2011-01-18 19:11:28 +00:00
|
|
|
float zoom;
|
2011-02-03 15:14:49 +00:00
|
|
|
scalemode_t scalemode;
|
2011-02-03 23:25:57 +00:00
|
|
|
|
2011-01-21 11:13:52 +00:00
|
|
|
unsigned char re;
|
2011-01-22 22:27:29 +00:00
|
|
|
unsigned char checkpan;
|
2011-01-26 13:59:32 +00:00
|
|
|
unsigned char aa;
|
2011-02-03 23:25:57 +00:00
|
|
|
|
2011-01-17 13:57:59 +00:00
|
|
|
int x;
|
|
|
|
int y;
|
2011-01-20 14:39:08 +00:00
|
|
|
int w;
|
|
|
|
int h;
|
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*);
|
|
|
|
void img_free(img_t*);
|
2011-01-18 15:40:37 +00:00
|
|
|
|
2011-01-31 14:51:26 +00:00
|
|
|
int img_check(const char*);
|
2011-01-20 15:24:48 +00:00
|
|
|
int img_load(img_t*, const char*);
|
2011-01-31 14:51:26 +00:00
|
|
|
|
2011-01-20 20:44:34 +00:00
|
|
|
void img_render(img_t*, win_t*);
|
2011-01-18 16:20:41 +00:00
|
|
|
|
2011-02-03 15:55:24 +00:00
|
|
|
int img_fit_win(img_t*, win_t*);
|
2011-02-03 13:32:02 +00:00
|
|
|
int img_center(img_t*, win_t*);
|
2011-01-28 12:34:16 +00:00
|
|
|
|
2011-02-03 15:14:49 +00:00
|
|
|
int img_zoom(img_t*, float);
|
2011-01-20 22:22:00 +00:00
|
|
|
int img_zoom_in(img_t*);
|
|
|
|
int img_zoom_out(img_t*);
|
|
|
|
|
2011-01-29 21:37:40 +00:00
|
|
|
int img_move(img_t*, win_t*, int, int);
|
2011-01-21 12:48:02 +00:00
|
|
|
int img_pan(img_t*, win_t*, pandir_t);
|
|
|
|
|
2011-02-03 13:32:02 +00:00
|
|
|
void img_rotate_left(img_t*, win_t*);
|
|
|
|
void img_rotate_right(img_t*, win_t*);
|
2011-01-26 13:42:10 +00:00
|
|
|
|
2011-02-03 13:32:02 +00:00
|
|
|
void img_toggle_antialias(img_t*);
|
2011-01-26 13:59:32 +00:00
|
|
|
|
2011-01-17 13:57:59 +00:00
|
|
|
#endif /* IMAGE_H */
|