comparison src/image.h @ 821:fb249b8e63e4

Move some functions from image.[ch] to image-overlay.c and make them static: - image_overlay_add() - image_overlay_set() - image_overlay_remove() - image_overlay_get() (unused)
author zas_
date Thu, 12 Jun 2008 20:17:22 +0000
parents 1d67ef911fa8
children db6977f8b0f1
comparison
equal deleted inserted replaced
820:e9e3fb483cdc 821:fb249b8e63e4
112 void image_set_delay_flip(ImageWindow *imd, gint delay); 112 void image_set_delay_flip(ImageWindow *imd, gint delay);
113 113
114 /* wallpaper util */ 114 /* wallpaper util */
115 void image_to_root_window(ImageWindow *imd, gint scaled); 115 void image_to_root_window(ImageWindow *imd, gint scaled);
116 116
117 /* overlays */
118 gint image_overlay_add(ImageWindow *imd, GdkPixbuf *pixbuf, gint x, gint y,
119 gint relative, gint always);
120 void image_overlay_set(ImageWindow *imd, gint id, GdkPixbuf *pixbuf, gint x, gint y);
121 gint image_overlay_get(ImageWindow *imd, gint id, GdkPixbuf **pixbuf, gint *x, gint *y);
122 void image_overlay_remove(ImageWindow *imd, gint id);
123
124 117
125 118
126 void image_set_image_as_tiles(ImageWindow *imd, gint width, gint height, 119 void image_set_image_as_tiles(ImageWindow *imd, gint width, gint height,
127 gint tile_width, gint tile_height, gint cache_size, 120 gint tile_width, gint tile_height, gint cache_size,
128 ImageTileRequestFunc func_tile_request, 121 ImageTileRequestFunc func_tile_request,