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