Mercurial > geeqie.yaz
view src/image.h @ 994:c879a4c14f33
Fixed segfaulting when alter image in directory without images.
author | bruclik |
---|---|
date | Mon, 25 Aug 2008 18:13:33 +0000 |
parents | d8e1e820cee7 |
children | 0ab0deb0cfcc |
line wrap: on
line source
/* * Geeqie * (C) 2004 John Ellis * Copyright (C) 2008 The Geeqie Team * * Author: John Ellis * * This software is released under the GNU General Public License (GNU GPL). * Please read the included file COPYING for more information. * This software comes with no warranty of any kind, use at your own risk! */ #ifndef IMAGE_H #define IMAGE_H void image_set_frame(ImageWindow *imd, gboolean frame); ImageWindow *image_new(gint frame); /* additional setup */ void image_attach_window(ImageWindow *imd, GtkWidget *window, const gchar *title, const gchar *title_right, gint show_zoom); void image_set_update_func(ImageWindow *imd, void (*func)(ImageWindow *imd, gpointer data), gpointer data); void image_set_button_func(ImageWindow *imd, void (*func)(ImageWindow *, GdkEventButton *event, gpointer), gpointer data); void image_set_drag_func(ImageWindow *imd, void (*func)(ImageWindow *, GdkEventButton *event, gdouble dx, gdouble dy, gpointer), gpointer data); void image_set_scroll_func(ImageWindow *imd, void (*func)(ImageWindow *, GdkEventScroll *event, gpointer), gpointer data); void image_set_scroll_notify_func(ImageWindow *imd, void (*func)(ImageWindow *imd, gint x, gint y, gint width, gint height, gpointer data), gpointer data); void image_set_complete_func(ImageWindow *imd, void (*func)(ImageWindow *imd, gint preload, gpointer data), gpointer data); void image_set_state_func(ImageWindow *imd, void (*func)(ImageWindow *imd, ImageState state, gpointer data), gpointer data); void image_select(ImageWindow *imd, gboolean select); void image_set_selectable(ImageWindow *imd, gboolean selectable); /* path, name */ const gchar *image_get_path(ImageWindow *imd); const gchar *image_get_name(ImageWindow *imd); FileData *image_get_fd(ImageWindow *imd); /* merely changes path string, does not change the image! */ void image_set_fd(ImageWindow *imd, FileData *fd); /* load a new image */ void image_change_fd(ImageWindow *imd, FileData *fd, gdouble zoom); void image_change_pixbuf(ImageWindow *imd, GdkPixbuf *pixbuf, gdouble zoom); void image_change_from_collection(ImageWindow *imd, CollectionData *cd, CollectInfo *info, gdouble zoom); CollectionData *image_get_collection(ImageWindow *imd, CollectInfo **info); void image_change_from_image(ImageWindow *imd, ImageWindow *source); gint image_get_image_size(ImageWindow *imd, gint *width, gint *height); GdkPixbuf *image_get_pixbuf(ImageWindow *imd); /* manipulation */ void image_area_changed(ImageWindow *imd, gint x, gint y, gint width, gint height); void image_reload(ImageWindow *imd); void image_scroll(ImageWindow *imd, gint x, gint y); void image_scroll_to_point(ImageWindow *imd, gint x, gint y, gdouble x_align, gdouble y_align); void image_get_scroll_center(ImageWindow *imd, gdouble *x, gdouble *y); void image_set_scroll_center(ImageWindow *imd, gdouble x, gdouble y); void image_alter(ImageWindow *imd, AlterType type); /* zoom */ void image_zoom_adjust(ImageWindow *imd, gdouble increment); void image_zoom_adjust_at_point(ImageWindow *imd, gdouble increment, gint x, gint y); void image_zoom_set_limits(ImageWindow *imd, gdouble min, gdouble max); void image_zoom_set(ImageWindow *imd, gdouble zoom); void image_zoom_set_fill_geometry(ImageWindow *imd, gint vertical); gdouble image_zoom_get(ImageWindow *imd); gdouble image_zoom_get_real(ImageWindow *imd); gchar *image_zoom_get_as_text(ImageWindow *imd); gdouble image_zoom_get_default(ImageWindow *imd); /* read ahead, pass NULL to cancel */ void image_prebuffer_set(ImageWindow *imd, FileData *fd); /* auto refresh */ void image_auto_refresh_enable(ImageWindow *imd, gboolean enable); /* allow top window to be resized ? */ void image_top_window_set_sync(ImageWindow *imd, gint allow_sync); /* background of image */ void image_background_set_color(ImageWindow *imd, GdkColor *color); /* color profiles */ void image_color_profile_set(ImageWindow *imd, gint input_type, gint screen_type, gint use_embedded); gint image_color_profile_get(ImageWindow *imd, gint *input_type, gint *screen_type, gint *use_image); void image_color_profile_set_use(ImageWindow *imd, gint enable); gint image_color_profile_get_use(ImageWindow *imd); gint image_color_profile_get_from_image(ImageWindow *imd); /* set delayed page flipping */ void image_set_delay_flip(ImageWindow *imd, gint delay); /* wallpaper util */ void image_to_root_window(ImageWindow *imd, gint scaled); void image_set_image_as_tiles(ImageWindow *imd, gint width, gint height, gint tile_width, gint tile_height, gint cache_size, ImageTileRequestFunc func_tile_request, ImageTileDisposeFunc func_tile_dispose, gpointer data, gdouble zoom); /* reset default options */ void image_options_sync(void); #endif