started relative scroll, keep scroll position
[geeqie.git] / src / image.h
1 /*
2  * GQview
3  * (C) 2004 John Ellis
4  *
5  * Author: John Ellis
6  *
7  * This software is released under the GNU General Public License (GNU GPL).
8  * Please read the included file COPYING for more information.
9  * This software comes with no warranty of any kind, use at your own risk!
10  */
11
12
13 #ifndef IMAGE_H
14 #define IMAGE_H
15
16
17 ImageWindow *image_new(gint frame);
18
19 /* additional setup */
20 void image_attach_window(ImageWindow *imd, GtkWidget *window,
21                          const gchar *title, const gchar *title_right, gint show_zoom);
22 void image_set_update_func(ImageWindow *imd,
23                            void (*func)(ImageWindow *imd, gpointer data),
24                            gpointer data);
25 void image_set_button_func(ImageWindow *imd,
26         void (*func)(ImageWindow *, gint button, guint32 time, gdouble x, gdouble y, guint state, gpointer),
27         gpointer data);
28 void image_set_drag_func(ImageWindow *imd,
29         void (*func)(ImageWindow *, gint button, guint32 time, gdouble x, gdouble y, guint state, gdouble dx, gdouble dy, gpointer),
30         gpointer data);
31 void image_set_scroll_func(ImageWindow *imd,
32         void (*func)(ImageWindow *, GdkScrollDirection direction, guint32 time, gdouble x, gdouble y, guint state, gpointer),
33         gpointer data);
34 void image_set_scroll_notify_func(ImageWindow *imd,
35                                   void (*func)(ImageWindow *imd, gint x, gint y, gint width, gint height, gpointer data),
36                                   gpointer data);
37 void image_set_complete_func(ImageWindow *imd,
38                              void (*func)(ImageWindow *imd, gint preload, gpointer data),
39                              gpointer data);
40 void image_set_state_func(ImageWindow *imd,
41                           void (*func)(ImageWindow *imd, ImageState state, gpointer data),
42                           gpointer data);
43
44 void image_select(ImageWindow *imd, gboolean select);
45
46 /* path, name */
47 const gchar *image_get_path(ImageWindow *imd);
48 const gchar *image_get_name(ImageWindow *imd);
49
50 /* merely changes path string, does not change the image! */
51 void image_set_path(ImageWindow *imd, const gchar *newpath);
52
53 /* load a new image */
54 void image_change_path(ImageWindow *imd, const gchar *path, gdouble zoom);
55 void image_change_pixbuf(ImageWindow *imd, GdkPixbuf *pixbuf, gdouble zoom);
56 void image_change_from_collection(ImageWindow *imd, CollectionData *cd, CollectInfo *info, gdouble zoom);
57 CollectionData *image_get_collection(ImageWindow *imd, CollectInfo **info);
58 void image_change_from_image(ImageWindow *imd, ImageWindow *source);
59
60 GdkPixbuf *image_get_pixbuf(ImageWindow *imd);
61
62
63 void image_get_scroll_center(ImageWindow *imd, gfloat *x, gfloat *y);
64 void image_set_scroll_center(ImageWindow *imd, gfloat x, gfloat y);
65
66 void image_sync_zoom_from_image(ImageWindow *imd, ImageWindow *source);
67 /* manipulation */
68 void image_area_changed(ImageWindow *imd, gint x, gint y, gint width, gint height);
69 void image_reload(ImageWindow *imd);
70 void image_scroll(ImageWindow *imd, gint x, gint y);
71 void image_scroll_to_point(ImageWindow *imd, gint x, gint y,
72                            gdouble x_align, gdouble y_align);
73 void image_alter(ImageWindow *imd, AlterType type);
74
75 /* zoom */
76 void image_zoom_adjust(ImageWindow *imd, gdouble increment);
77 void image_zoom_adjust_at_point(ImageWindow *imd, gdouble increment, gint x, gint y);
78 void image_zoom_set_limits(ImageWindow *imd, gdouble min, gdouble max);
79 void image_zoom_set(ImageWindow *imd, gdouble zoom);
80 void image_zoom_set_fill_geometry(ImageWindow *imd, gint vertical);
81 gdouble image_zoom_get(ImageWindow *imd);
82 gdouble image_zoom_get_real(ImageWindow *imd);
83 gchar *image_zoom_get_as_text(ImageWindow *imd);
84 gdouble image_zoom_get_default(ImageWindow *imd, gint mode);
85
86 /* read ahead, pass NULL to cancel */
87 void image_prebuffer_set(ImageWindow *imd, const gchar *path);
88
89 /* auto refresh, interval is 1/1000 sec, 0 uses default, -1 disables */
90 void image_auto_refresh(ImageWindow *imd, gint interval);
91
92 /* allow top window to be resized ? */
93 void image_top_window_set_sync(ImageWindow *imd, gint allow_sync);
94
95 /* background of image */
96 void image_background_set_black(ImageWindow *imd, gint black);
97 void image_background_set_color(ImageWindow *imd, GdkColor *color);
98
99 /* color profiles */
100 void image_color_profile_set(ImageWindow *imd,
101                              gint input_type, gint screen_type,
102                              gint use_embedded);
103 gint image_color_profile_get(ImageWindow *imd,
104                              gint *input_type, gint *screen_type,
105                              gint *use_image);
106 void image_color_profile_set_use(ImageWindow *imd, gint enable);
107 gint image_color_profile_get_use(ImageWindow *imd);
108
109 /* set delayed page flipping */
110 void image_set_delay_flip(ImageWindow *imd, gint delay);
111
112 /* wallpaper util */
113 void image_to_root_window(ImageWindow *imd, gint scaled);
114
115 /* overlays */
116 gint image_overlay_add(ImageWindow *imd, GdkPixbuf *pixbuf, gint x, gint y,
117                        gint relative, gint always);
118 void image_overlay_set(ImageWindow *imd, gint id, GdkPixbuf *pixbuf, gint x, gint y);
119 gint image_overlay_get(ImageWindow *imd, gint id, GdkPixbuf **pixbuf, gint *x, gint *y);
120 void image_overlay_remove(ImageWindow *imd, gint id);
121
122
123
124 void image_set_image_as_tiles(ImageWindow *imd, gint width, gint height,
125                               gint tile_width, gint tile_height, gint cache_size,
126                               ImageTileRequestFunc func_tile_request,
127                               ImageTileDisposeFunc func_tile_dispose,
128                               gpointer data,
129                               gdouble zoom);
130
131 /* reset default options */
132 void image_options_sync(void);
133
134
135 #endif
136
137
138