From 148026007cae3b97d39d2cfee7562c139eb486b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bert=20M=C3=BCnnich?= Date: Mon, 16 Oct 2017 21:10:35 +0200 Subject: One header file for type definitions and function declarations --- image.h | 98 ----------------------------------------------------------------- 1 file changed, 98 deletions(-) delete mode 100644 image.h (limited to 'image.h') diff --git a/image.h b/image.h deleted file mode 100644 index 37bc4a2..0000000 --- a/image.h +++ /dev/null @@ -1,98 +0,0 @@ -/* Copyright 2011 Bert Muennich - * - * This file is part of sxiv. - * - * 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. - * - * 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 . - */ - -#ifndef IMAGE_H -#define IMAGE_H - -#include - -#include "types.h" -#include "window.h" - -typedef struct { - Imlib_Image im; - unsigned int delay; -} img_frame_t; - -typedef struct { - img_frame_t *frames; - int cap; - int cnt; - int sel; - bool animate; - int framedelay; - int length; -} multi_img_t; - -typedef struct { - Imlib_Image im; - int w; - int h; - - win_t *win; - float x; - float y; - - scalemode_t scalemode; - float zoom; - - bool checkpan; - bool dirty; - bool aa; - bool alpha; - - Imlib_Color_Modifier cmod; - int gamma; - - struct { - bool on; - int delay; - } ss; - - multi_img_t multi; -} img_t; - -void img_init(img_t*, win_t*); - -bool img_load(img_t*, const fileinfo_t*); -CLEANUP void img_close(img_t*, bool); - -void img_render(img_t*); - -bool img_fit_win(img_t*, scalemode_t); - -bool img_zoom(img_t*, float); -bool img_zoom_in(img_t*); -bool img_zoom_out(img_t*); - -bool img_pos(img_t*, float, float); -bool img_move(img_t*, float, float); -bool img_pan(img_t*, direction_t, int); -bool img_pan_edge(img_t*, direction_t); - -void img_rotate(img_t*, degree_t); -void img_flip(img_t*, flipdir_t); - -void img_toggle_antialias(img_t*); - -bool img_change_gamma(img_t*, int); - -bool img_frame_navigate(img_t*, int); -bool img_frame_animate(img_t*); - -#endif /* IMAGE_H */ -- cgit v1.2.3