9
|
1 /*
|
196
|
2 * Geeqie
|
9
|
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 IMG_VIEW_H
|
|
14 #define IMG_VIEW_H
|
|
15
|
|
16
|
138
|
17 void view_window_new(FileData *fd);
|
9
|
18 void view_window_new_from_list(GList *list);
|
|
19 void view_window_new_from_collection(CollectionData *cd, CollectInfo *info);
|
|
20
|
|
21 void view_window_colors_update(void);
|
|
22
|
|
23 gint view_window_find_image(ImageWindow *imd, gint *index, gint *total);
|
|
24
|
138
|
25 void view_window_maint_removed(FileData *fd, GList *ignore_list);
|
|
26 void view_window_maint_moved(FileData *fd);
|
9
|
27
|
|
28
|
|
29 #endif
|