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