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
|
#ifndef SIV_H
#define SIV_H
#include <gtk/gtk.h>
#include <glade/glade.h>
#define APPLICATION_NAME "Simple Image Viewer"
#define PACKAGE_VERSION "0.0.1"
#define GLADE_FILE "siv.glade"
typedef struct Window Window;
typedef struct App App;
typedef struct MetaData MetaData;
typedef enum
{
BG_FIRST,
BG_NONE = BG_FIRST,
BG_CHECKERBOARD,
BG_WHITE,
BG_LAST
} BackgroundType;
struct MetaData
{
int window_x;
int window_y;
int window_width;
int window_height;
BackgroundType background;
gboolean smooth_image;
int zoom_level;
int vadj;
int hadj;
};
/* App */
void app_register_window (App *app,
Window *window);
void app_unregister_window (App *app,
Window *window);
MetaData *app_get_meta_data (App *app,
const char *file);
void app_set_meta_data (App *data,
const char *filename,
int window_x,
int window_y,
int window_height,
int window_width,
gboolean smooth_image,
BackgroundType background,
int zoom_level,
int vadj,
int hadj);
/* Doesn't really belong in the app namespace */
void app_show_warning (GtkWidget *parent_window,
const gchar *format,
...);
/* Window */
Window * window_new (App *app);
gboolean window_load_file (Window *window,
const char *file,
GError **err);
void window_show (Window *window,
guint32 time);
void window_free (Window *window);
#endif
|