1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
#ifndef IMV_VIEWPORT_H
#define IMV_VIEWPORT_H
/* Copyright (c) 2015 imv authors
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include <SDL2/SDL.h>
#include "texture.h"
struct imv_viewport {
SDL_Window *window;
double scale;
int x, y;
int fullscreen;
int redraw;
int playing;
int locked;
};
/* Used to signify how a a user requested a zoom */
enum imv_zoom_source {
IMV_ZOOM_MOUSE,
IMV_ZOOM_KEYBOARD
};
/* Creates an instance of imv_viewport */
struct imv_viewport *imv_viewport_create(SDL_Window *window);
/* Cleans up an imv_viewport instance */
void imv_viewport_free(struct imv_viewport *view);
/* Toggle their viewport's fullscreen mode. Triggers a redraw */
void imv_viewport_toggle_fullscreen(struct imv_viewport *view);
/* Toggle playback of animated gifs */
void imv_viewport_toggle_playing(struct imv_viewport *view);
/* Reset the viewport to its initial settings */
void imv_viewport_reset(struct imv_viewport *view);
/* Pan the view by the given amounts */
void imv_viewport_move(struct imv_viewport *view, int x, int y);
/* Zoom the view by the given amount. imv_texture* is used to get the image
* dimensions */
void imv_viewport_zoom(struct imv_viewport *view, const struct imv_texture *tex,
enum imv_zoom_source, int amount);
/* Recenter the view to be in the middle of the image */
void imv_viewport_center(struct imv_viewport *view,
const struct imv_texture *tex);
/* Scale the view so that the image appears at its actual resolution */
void imv_viewport_scale_to_actual(struct imv_viewport *view,
const struct imv_texture *tex);
/* Scale the view so that the image fills the window */
void imv_viewport_scale_to_window(struct imv_viewport *view,
const struct imv_texture *tex);
/* Tell the viewport that it needs to be redrawn */
void imv_viewport_set_redraw(struct imv_viewport *view);
/* Set the title of the viewport */
void imv_viewport_set_title(struct imv_viewport *view, char *title);
/* Tell the viewport the window or image has changed */
void imv_viewport_update(struct imv_viewport *view, struct imv_texture *tex);
/* Poll whether we need to redraw */
int imv_viewport_needs_redraw(struct imv_viewport *view);
#endif
/* vim:set ts=2 sts=2 sw=2 et: */
|