simplified the code around vd_select_row
[geeqie.git] / src / typedefs.h
1 /*
2  * Geeqie
3  * (C) 2006 John Ellis
4  * Copyright (C) 2008 - 2009 The Geeqie Team
5  *
6  * Author: John Ellis
7  *
8  * This software is released under the GNU General Public License (GNU GPL).
9  * Please read the included file COPYING for more information.
10  * This software comes with no warranty of any kind, use at your own risk!
11  */
12
13
14 #ifndef TYPEDEFS_H
15 #define TYPEDEFS_H
16
17 typedef enum {
18         ZOOM_RESET_ORIGINAL     = 0,
19         ZOOM_RESET_FIT_WINDOW   = 1,
20         ZOOM_RESET_NONE         = 2
21 } ZoomMode;
22
23 typedef enum {
24         MOUSE_BUTTON_LEFT       = 1,
25         MOUSE_BUTTON_MIDDLE     = 2,
26         MOUSE_BUTTON_RIGHT      = 3,
27         MOUSE_BUTTON_WHEEL_UP   = 4,
28         MOUSE_BUTTON_WHEEL_DOWN = 5
29 } MouseButton;
30
31 typedef enum {
32         DIRVIEW_LIST,
33         DIRVIEW_TREE
34 } DirViewType;
35
36 typedef enum {
37         FILEVIEW_LIST,
38         FILEVIEW_ICON
39 } FileViewType;
40
41 #define CMD_COPY     "geeqie-copy-command.desktop"
42 #define CMD_MOVE     "geeqie-move-command.desktop"
43 #define CMD_RENAME   "geeqie-rename-command.desktop"
44 #define CMD_DELETE   "geeqie-delete-command.desktop"
45 #define CMD_FOLDER   "geeqie-folder-command.desktop"
46
47 typedef enum {
48         SORT_NONE,
49         SORT_NAME,
50         SORT_SIZE,
51         SORT_TIME,
52         SORT_PATH,
53         SORT_NUMBER
54 } SortType;
55
56 typedef enum {
57         ALTER_NONE,             /* do nothing */
58         ALTER_ROTATE_90,
59         ALTER_ROTATE_90_CC,     /* counterclockwise */
60         ALTER_ROTATE_180,
61         ALTER_MIRROR,
62         ALTER_FLIP,
63 } AlterType;
64
65 typedef enum {
66         LAYOUT_HIDE   = 0,
67         LAYOUT_LEFT   = 1 << 0,
68         LAYOUT_RIGHT  = 1 << 1,
69         LAYOUT_TOP    = 1 << 2,
70         LAYOUT_BOTTOM = 1 << 3
71 } LayoutLocation;
72
73
74 typedef enum {
75         IMAGE_STATE_NONE        = 0,
76         IMAGE_STATE_IMAGE       = 1 << 0,
77         IMAGE_STATE_LOADING     = 1 << 1,
78         IMAGE_STATE_ERROR       = 1 << 2,
79         IMAGE_STATE_COLOR_ADJ   = 1 << 3,
80         IMAGE_STATE_ROTATE_AUTO = 1 << 4,
81         IMAGE_STATE_ROTATE_USER = 1 << 5,
82         IMAGE_STATE_DELAY_FLIP  = 1 << 6
83 } ImageState;
84
85 typedef enum {
86         SPLIT_NONE = 0,
87         SPLIT_VERT,
88         SPLIT_HOR,
89         SPLIT_QUAD,
90 } ImageSplitMode;
91
92 typedef enum {
93         FILEDATA_CHANGE_DELETE,
94         FILEDATA_CHANGE_MOVE,
95         FILEDATA_CHANGE_RENAME,
96         FILEDATA_CHANGE_COPY,
97         FILEDATA_CHANGE_UNSPECIFIED,
98         FILEDATA_CHANGE_WRITE_METADATA
99 } FileDataChangeType;
100
101 typedef enum {
102         MTS_MODE_MINUS,
103         MTS_MODE_SET,
104         MTS_MODE_OR,
105         MTS_MODE_AND
106 } MarkToSelectionMode;
107
108 typedef enum {
109         STM_MODE_RESET,
110         STM_MODE_SET,
111         STM_MODE_TOGGLE
112 } SelectionToMarkMode;
113
114 typedef enum {
115         FORMAT_CLASS_UNKNOWN,
116         FORMAT_CLASS_IMAGE,
117         FORMAT_CLASS_RAWIMAGE,
118         FORMAT_CLASS_META,
119         FILE_FORMAT_CLASSES
120 } FileFormatClass;
121
122 typedef enum {
123         SS_ERR_NONE = 0,
124         SS_ERR_DISABLED, /**< secsave is disabled. */
125         SS_ERR_OUT_OF_MEM, /**< memory allocation failure */
126
127         /* see err field in SecureSaveInfo */
128         SS_ERR_OPEN_READ,
129         SS_ERR_OPEN_WRITE,
130         SS_ERR_STAT,
131         SS_ERR_ACCESS,
132         SS_ERR_MKSTEMP,
133         SS_ERR_RENAME,
134         SS_ERR_OTHER,
135 } SecureSaveErrno;
136
137 typedef enum {
138         NOTIFY_PRIORITY_HIGH = 0,
139         NOTIFY_PRIORITY_MEDIUM,
140         NOTIFY_PRIORITY_LOW
141 } NotifyPriority;
142         
143 typedef enum {
144         NOTIFY_MARKS            = 1 << 1, /* changed marks */
145         NOTIFY_PIXBUF           = 1 << 2, /* image was read into fd->pixbuf */
146         NOTIFY_HISTMAP          = 1 << 3, /* histmap was read into fd->histmap */
147         NOTIFY_ORIENTATION      = 1 << 4, /* image was rotated */
148         NOTIFY_METADATA         = 1 << 5, /* changed image metadata, not yet written */
149         NOTIFY_GROUPING         = 1 << 6, /* change in fd->sidecar_files or fd->parent */
150         NOTIFY_REREAD           = 1 << 7, /* changed file size, date, etc., file name remains unchanged */
151         NOTIFY_CHANGE           = 1 << 8  /* generic change described by fd->change */
152 } NotifyType;
153
154 typedef enum {
155         CHANGE_OK                      = 0,
156         CHANGE_WARN_DEST_EXISTS        = 1 << 0,
157         CHANGE_WARN_NO_WRITE_PERM      = 1 << 1,
158         CHANGE_WARN_SAME               = 1 << 2,
159         CHANGE_WARN_CHANGED_EXT        = 1 << 3,
160         CHANGE_ERROR_MASK              = (~0) << 4, /* the values below are fatal errors */
161         CHANGE_NO_READ_PERM            = 1 << 4,
162         CHANGE_NO_WRITE_PERM_DIR       = 1 << 5,
163         CHANGE_NO_DEST_DIR             = 1 << 6,
164         CHANGE_NO_WRITE_PERM_DEST_DIR  = 1 << 7,
165         CHANGE_NO_WRITE_PERM_DEST      = 1 << 8,
166         CHANGE_DEST_EXISTS             = 1 << 9,
167         CHANGE_NO_SRC                  = 1 << 10,
168         CHANGE_GENERIC_ERROR           = 1 << 16
169 } ChangeError;
170
171 typedef enum {
172         METADATA_PLAIN          = 0, /* format that can be edited and written back */
173         METADATA_FORMATTED      = 1  /* for display only */
174 } MetadataFormat;
175
176 typedef enum {
177         STARTUP_PATH_CURRENT    = 0,
178         STARTUP_PATH_LAST,
179         STARTUP_PATH_HOME,
180 } StartUpPath;
181
182 typedef enum {
183         TOOLBAR_MAIN,
184         TOOLBAR_STATUS,
185         TOOLBAR_COUNT
186 } ToolbarType;
187
188 #define MAX_SPLIT_IMAGES 4
189
190 typedef struct _ImageLoader ImageLoader;
191 typedef struct _ThumbLoader ThumbLoader;
192
193 typedef struct _CollectInfo CollectInfo;
194 typedef struct _CollectionData CollectionData;
195 typedef struct _CollectTable CollectTable;
196 typedef struct _CollectWindow CollectWindow;
197
198 typedef struct _ImageWindow ImageWindow;
199
200 typedef struct _FileData FileData;
201 typedef struct _FileDataChangeInfo FileDataChangeInfo;
202
203 typedef struct _LayoutWindow LayoutWindow;
204 typedef struct _LayoutOptions LayoutOptions;
205
206 typedef struct _ViewDir ViewDir;
207 typedef struct _ViewDirInfoList ViewDirInfoList;
208 typedef struct _ViewDirInfoTree ViewDirInfoTree;
209
210 typedef struct _ViewFile ViewFile;
211 typedef struct _ViewFileInfoList ViewFileInfoList;
212 typedef struct _ViewFileInfoIcon ViewFileInfoIcon;
213
214 typedef struct _SlideShowData SlideShowData;
215 typedef struct _FullScreenData FullScreenData;
216
217 typedef struct _PixmapFolders PixmapFolders;
218 typedef struct _Histogram Histogram;
219 typedef struct _HistMap HistMap;
220
221 typedef struct _SecureSaveInfo SecureSaveInfo;
222
223 typedef struct _ExifData ExifData;
224
225 typedef struct _EditorDescription EditorDescription;
226
227 typedef struct _CommandLine CommandLine;
228
229 struct _Histogram {
230         gint histogram_channel; /* drawing mode for histogram */
231         gint histogram_mode;     /* logarithmical or not */
232         guint vgrid; /* number of vertical divisions, 0 for none */
233         guint hgrid; /* number of horizontal divisions, 0 for none */
234         struct {
235                 int R; /* red */
236                 int G; /* green */
237                 int B; /* blue */
238                 int A; /* alpha */
239         } grid_color;  /* grid color */
240
241 };
242
243
244
245 struct _ImageLoader;
246
247 typedef void (* ThumbLoaderFunc)(ThumbLoader *tl, gpointer data);
248
249 typedef void (* FileUtilDoneFunc)(gboolean success, const gchar *done_path, gpointer data);
250
251 struct _ThumbLoader
252 {
253         gboolean standard_loader;
254
255         ImageLoader *il;
256         FileData *fd;           /* fd->pixbuf contains final (scaled) image when done */
257
258         gboolean cache_enable;
259         gboolean cache_hit;
260         gdouble percent_done;
261
262         gint max_w;
263         gint max_h;
264
265         ThumbLoaderFunc func_done;
266         ThumbLoaderFunc func_error;
267         ThumbLoaderFunc func_progress;
268
269         gpointer data;
270
271         guint idle_done_id; /* event source id */
272 };
273
274 struct _CollectInfo
275 {
276         FileData *fd;
277         GdkPixbuf *pixbuf;
278         guint flag_mask;
279 };
280
281 struct _CollectionData
282 {
283         gchar *path;
284         gchar *name;
285         GList *list;
286         SortType sort_method;
287
288         ThumbLoader *thumb_loader;
289         CollectInfo *thumb_info;
290
291         void (*info_updated_func)(CollectionData *, CollectInfo *, gpointer);
292         gpointer info_updated_data;
293
294         gint ref;
295
296         /* geometry */
297         gint window_read;
298         gint window_x;
299         gint window_y;
300         gint window_w;
301         gint window_h;
302
303         /* contents changed since save flag */
304         gboolean changed;
305
306         GHashTable *existence;
307 };
308
309 struct _CollectTable
310 {
311         GtkWidget *scrolled;
312         GtkWidget *listview;
313         gint columns;
314         gint rows;
315
316         CollectionData *cd;
317
318         GList *selection;
319         CollectInfo *prev_selection;
320
321         CollectInfo *click_info;
322
323         GtkWidget *tip_window;
324         guint tip_delay_id; /* event source id */
325         CollectInfo *tip_info;
326
327         GdkWindow *marker_window;
328         CollectInfo *marker_info;
329
330         GtkWidget *status_label;
331         GtkWidget *extra_label;
332
333         gint focus_row;
334         gint focus_column;
335         CollectInfo *focus_info;
336
337         GtkWidget *popup;
338         CollectInfo *drop_info;
339         GList *drop_list;
340
341         guint sync_idle_id; /* event source id */
342         guint drop_idle_id; /* event source id */
343
344         gboolean show_text;
345
346         /* file list for edit menu */
347         GList *editmenu_fd_list;
348 };
349
350 struct _CollectWindow
351 {
352         GtkWidget *window;
353         CollectTable *table;
354         GtkWidget *status_box;
355         GList *list;
356
357         GtkWidget *close_dialog;
358
359         CollectionData *cd;
360 };
361
362 typedef gint (* ImageTileRequestFunc)(ImageWindow *imd, gint x, gint y,
363                                       gint width, gint height, GdkPixbuf *pixbuf, gpointer);
364 typedef void (* ImageTileDisposeFunc)(ImageWindow *imd, gint x, gint y,
365                                       gint width, gint height, GdkPixbuf *pixbuf, gpointer);
366
367 struct _ImageWindow
368 {
369         GtkWidget *widget;      /* use this to add it and show it */
370         GtkWidget *pr;
371         GtkWidget *frame;
372
373         FileData *image_fd;
374
375         gboolean unknown;               /* failed to load image */
376
377         ImageLoader *il;        /* FIXME - image loader should probably go to FileData, but it must first support
378                                    sending callbacks to multiple ImageWindows in parallel */
379
380         gint has_frame;  /* not boolean, see image_new() */
381
382         /* top level (not necessarily parent) window */
383         gboolean top_window_sync;       /* resize top_window when image dimensions change */
384         GtkWidget *top_window;  /* window that gets title, and window to resize when 'fitting' */
385         gchar *title;           /* window title to display left of file name */
386         gchar *title_right;     /* window title to display right of file name */
387         gboolean title_show_zoom;       /* option to include zoom in window title */
388
389         gboolean completed;
390         ImageState state;       /* mask of IMAGE_STATE_* flags about current image */
391
392         void (*func_update)(ImageWindow *imd, gpointer data);
393         void (*func_complete)(ImageWindow *imd, gint preload, gpointer data);
394         void (*func_state)(ImageWindow *imd, ImageState state, gpointer data);
395         ImageTileRequestFunc func_tile_request;
396         ImageTileDisposeFunc func_tile_dispose;
397
398         gpointer data_update;
399         gpointer data_complete;
400         gpointer data_state;
401         gpointer data_tile;
402
403         /* button, scroll functions */
404         void (*func_button)(ImageWindow *, GdkEventButton *event, gpointer);
405         void (*func_drag)(ImageWindow *, GdkEventButton *event, gdouble dx, gdouble dy, gpointer);
406         void (*func_scroll)(ImageWindow *, GdkEventScroll *event, gpointer);
407         void (*func_focus_in)(ImageWindow *, gpointer);
408
409         gpointer data_button;
410         gpointer data_drag;
411         gpointer data_scroll;
412         gpointer data_focus_in;
413
414         /* scroll notification (for scroll bar implementation) */
415         void (*func_scroll_notify)(ImageWindow *, gint x, gint y, gint width, gint height, gpointer);
416
417         gpointer data_scroll_notify;
418
419         /* collection info */
420         CollectionData *collection;
421         CollectInfo *collection_info;
422
423         /* color profiles */
424         gboolean color_profile_enable;
425         gint color_profile_input;
426         gboolean color_profile_use_image;
427         gint color_profile_from_image;
428         gpointer cm;
429
430         AlterType delay_alter_type;
431
432         FileData *read_ahead_fd;
433         ImageLoader *read_ahead_il;
434
435         gint prev_color_row;
436
437         gboolean auto_refresh;
438
439         gboolean delay_flip;
440         gint orientation;
441         gboolean desaturate;
442
443         gboolean overlay_show_zoom; /* set to true if overlay is showing zoom ratio */
444 };
445
446 #define FILEDATA_MARKS_SIZE 6
447
448 struct _FileDataChangeInfo {
449         FileDataChangeType type;
450         gchar *source;
451         gchar *dest;
452         gint error;
453         gboolean regroup_when_finished;
454 };
455
456 struct _FileData {
457         gint magick;
458         gint type;
459         gchar *original_path; /* key to file_data_pool hash table */
460         gchar *path;
461         const gchar *name;
462         const gchar *extension;
463         gchar *collate_key_name;
464         gchar *collate_key_name_nocase;
465         gint64 size;
466         time_t date;
467         mode_t mode; /* this is needed at least for notification in view_dir because it is preserved after the file/directory is deleted */
468         
469         guint marks; /* each bit represents one mark */
470         guint valid_marks; /* zero bit means that the corresponding mark needs to be reread */
471
472
473         GList *sidecar_files;
474         FileData *parent; /* parent file if this is a sidecar file, NULL otherwise */
475         FileDataChangeInfo *change; /* for rename, move ... */
476         GdkPixbuf *thumb_pixbuf;
477
478         GdkPixbuf *pixbuf; /* full-size image, only complete images, NULL during loading
479                               all FileData with non-NULL pixbuf are referenced by image_cache */
480                               
481         HistMap *histmap;
482
483         gint ref;
484         gint version; /* increased when any field in this structure is changed */
485         gboolean disable_grouping;
486
487         gint user_orientation;
488         gint exif_orientation;
489         
490         ExifData *exif;
491         GHashTable *modified_xmp; // hash table which contains unwritten xmp metadata in format: key->list of string values
492 };
493
494 struct _LayoutOptions
495 {
496         gchar *id;
497
498         gchar *order;
499         gint style;
500
501         DirViewType dir_view_type;
502         FileViewType file_view_type;
503
504         gboolean show_thumbnails;
505         gboolean show_marks;
506         gboolean show_directory_date;
507         gboolean show_info_pixel;
508
509         struct {
510                 gint w;
511                 gint h;
512                 gint x;
513                 gint y;
514                 gboolean maximized;
515                 gint hdivider_pos;
516                 gint vdivider_pos;
517         } main_window;
518
519         struct {
520                 gint w;
521                 gint h;
522                 gint x;
523                 gint y;
524                 gint vdivider_pos;
525         } float_window;
526
527         struct {
528                 gint w;
529                 gint h;
530         } properties_window;
531
532         struct {
533                 guint state;
534                 gint histogram_channel;
535                 gint histogram_mode;
536         } image_overlay;
537
538         gboolean tools_float;
539         gboolean tools_hidden;
540         gboolean toolbar_hidden;
541
542         gchar *home_path;
543         gchar *last_path;
544
545         StartUpPath startup_path;
546
547         gboolean exit_on_close;
548 };
549
550 struct _LayoutWindow
551 {
552         LayoutOptions options;
553
554         FileData *dir_fd;
555
556         /* base */
557
558         GtkWidget *window;
559
560         GtkWidget *main_box;
561
562         GtkWidget *group_box;
563         GtkWidget *h_pane;
564         GtkWidget *v_pane;
565
566         /* menus, path selector */
567
568         GtkActionGroup *action_group;
569         GtkActionGroup *action_group_editors;
570         guint ui_editors_id;
571         GtkUIManager *ui_manager;
572         guint toolbar_merge_id[TOOLBAR_COUNT];
573         GList *toolbar_actions[TOOLBAR_COUNT];
574
575         GtkWidget *path_entry;
576
577         /* image */
578
579         LayoutLocation image_location;
580
581         ImageWindow *image;
582
583         ImageWindow *split_images[MAX_SPLIT_IMAGES];
584         ImageSplitMode split_mode;
585         gint active_split_image;
586
587         GtkWidget *split_image_widget;
588         GtkSizeGroup *split_image_sizegroup;
589
590         /* tools window (float) */
591
592         GtkWidget *tools;
593         GtkWidget *tools_pane;
594
595 //      gint tools_float;
596 //      gint tools_hidden;
597
598         GtkWidget *menu_bar; /* referenced by lw, exist during whole lw lifetime */
599         /* toolbar */
600
601         GtkWidget *toolbar[TOOLBAR_COUNT]; /* referenced by lw, exist during whole lw lifetime */
602 //      gint toolbar_hidden;
603
604 //      GtkWidget *thumb_button;
605 //      gint thumbs_enabled;
606 //      gint marks_enabled;
607
608         GtkWidget *back_button;
609
610         /* dir view */
611
612         LayoutLocation dir_location;
613
614         ViewDir *vd;
615         GtkWidget *dir_view;
616
617 //      DirViewType dir_view_type;
618
619         /* file view */
620
621         LayoutLocation file_location;
622
623         ViewFile *vf;
624 //      FileViewType file_view_type;
625
626         GtkWidget *file_view;
627
628         SortType sort_method;
629         gboolean sort_ascend;
630
631         /* status bar */
632
633         GtkWidget *info_box;
634         GtkWidget *info_progress_bar;
635         GtkWidget *info_sort;
636         GtkWidget *info_status;
637         GtkWidget *info_details;
638         GtkWidget *info_zoom;
639         GtkWidget *info_pixel;
640         
641         /* slide show */
642
643         SlideShowData *slideshow;
644
645         /* full screen */
646
647         FullScreenData *full_screen;
648
649         /* dividers */
650
651 //      gint div_h;
652 //      gint div_v;
653 //      gint div_float;
654
655         /* misc */
656
657         GtkWidget *utility_box; /* referenced by lw, exist during whole lw lifetime */
658         GtkWidget *utility_paned; /* between image and bar */
659         GtkWidget *bar_sort;
660         GtkWidget *bar;
661
662 //      gint bar_sort_enabled;
663 //      gint bar_enabled;
664
665 //      gint bar_width;
666
667         GtkWidget *exif_window;
668
669         /* file list for edit menu */
670         GList *editmenu_fd_list;
671 };
672
673 struct _ViewDir
674 {
675         DirViewType type;
676         gpointer info;
677
678         GtkWidget *widget;
679         GtkWidget *view;
680
681         FileData *dir_fd;
682
683         FileData *click_fd;
684
685         FileData *drop_fd;
686         GList *drop_list;
687         guint drop_scroll_id; /* event source id */
688
689         /* func list */
690         void (*select_func)(ViewDir *vd, FileData *fd, gpointer data);
691         gpointer select_data;
692
693         void (*dnd_drop_update_func)(ViewDir *vd);
694         void (*dnd_drop_leave_func)(ViewDir *vd);
695
696         LayoutWindow *layout;
697
698         GtkWidget *popup;
699
700         PixmapFolders *pf;
701 };
702
703 struct _ViewDirInfoList
704 {
705         GList *list;
706 };
707
708 struct _ViewDirInfoTree
709 {
710         guint drop_expand_id; /* event source id */
711         gint busy_ref;
712 };
713
714
715 struct _ViewFile
716 {
717         FileViewType type;
718         gpointer info;
719
720         GtkWidget *widget;
721         GtkWidget *listview;
722         GtkWidget *scrolled;
723         GtkWidget *filter;
724         GtkWidget *filter_check[FILEDATA_MARKS_SIZE];
725
726         FileData *dir_fd;
727         GList *list;
728
729         SortType sort_method;
730         gboolean sort_ascend;
731
732         /* func list */
733         void (*func_thumb_status)(ViewFile *vf, gdouble val, const gchar *text, gpointer data);
734         gpointer data_thumb_status;
735
736         void (*func_status)(ViewFile *vf, gpointer data);
737         gpointer data_status;
738
739         LayoutWindow *layout;
740
741         GtkWidget *popup;
742
743         /* thumbs updates*/
744         gboolean thumbs_running;
745         ThumbLoader *thumbs_loader;
746         FileData *thumbs_filedata;
747
748         /* marks */
749         gboolean marks_enabled;
750         gint active_mark;
751         gint clicked_mark;
752         
753         /* refresh */
754         guint refresh_idle_id; /* event source id */
755
756         /* file list for edit menu */
757         GList *editmenu_fd_list;
758 };
759
760 struct _ViewFileInfoList
761 {
762         FileData *click_fd;
763         FileData *select_fd;
764
765         gboolean thumbs_enabled;
766
767         guint select_idle_id; /* event source id */
768 };
769
770 struct _IconData;
771
772 struct _ViewFileInfoIcon
773 {
774         /* table stuff */
775         gint columns;
776         gint rows;
777
778         GList *selection;
779         struct _IconData *prev_selection;
780
781         GtkWidget *tip_window;
782         guint tip_delay_id; /* event source id */
783         struct _IconData *tip_id;
784
785         struct _IconData *click_id;
786
787         struct _IconData *focus_id;
788         gint focus_row;
789         gint focus_column;
790
791         gboolean show_text;
792 };
793
794 struct _SlideShowData
795 {
796         LayoutWindow *lw;        /* use this window to display the slideshow */
797         ImageWindow *imd;        /* use this window only if lw is not available,
798                                     FIXME: it is probably required only by img-view.c and should be dropped with it */
799
800         GList *filelist;
801         CollectionData *cd;
802         FileData *dir_fd;
803
804         GList *list;
805         GList *list_done;
806
807         FileData *slide_fd;
808
809         guint slide_count;
810         guint timeout_id; /* event source id */
811
812         gboolean from_selection;
813
814         void (*stop_func)(SlideShowData *, gpointer);
815         gpointer stop_data;
816
817         gboolean paused;
818 };
819
820 struct _FullScreenData
821 {
822         GtkWidget *window;
823         ImageWindow *imd;
824
825         GtkWidget *normal_window;
826         ImageWindow *normal_imd;
827
828         guint hide_mouse_id; /* event source id */
829         guint busy_mouse_id; /* event source id */
830
831         gint cursor_state;
832
833         guint saver_block_id; /* event source id */
834
835         void (*stop_func)(FullScreenData *, gpointer);
836         gpointer stop_data;
837 };
838
839 struct _PixmapFolders
840 {
841         GdkPixbuf *close;
842         GdkPixbuf *open;
843         GdkPixbuf *deny;
844         GdkPixbuf *parent;
845 };
846
847 struct _SecureSaveInfo {
848         FILE *fp; /**< file stream pointer */
849         gchar *file_name; /**< final file name */
850         gchar *tmp_file_name; /**< temporary file name */
851         gint err; /**< set to non-zero value in case of error */
852         gboolean secure_save; /**< use secure save for this file, internal use only */
853         gboolean preserve_perms; /**< whether to preserve perms, TRUE by default */
854         gboolean preserve_mtime; /**< whether to preserve mtime, FALSE by default */
855         gboolean unlink_on_error; /**< whether to remove temporary file on save failure, TRUE by default */
856 };
857
858 struct _CommandLine
859 {
860         int argc;
861         gchar **argv;
862         gboolean startup_blank;
863         gboolean startup_full_screen;
864         gboolean startup_in_slideshow;
865         gboolean startup_command_line_collection;
866         gboolean tools_hide;
867         gboolean tools_show;
868         gchar *path;
869         gchar *file;
870         GList *cmd_list;
871         GList *collection_list;
872         gchar *geometry;
873 };
874
875 #endif
876 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */