added possibility to update existing layout window from config
[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         gboolean standard_loader;
244
245         ImageLoader *il;
246         FileData *fd;           /* fd->pixbuf contains final (scaled) image when done */
247
248         gboolean cache_enable;
249         gboolean 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         gboolean 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         gboolean 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         gboolean 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 *id;
485
486         gchar *order;
487         gint style;
488
489         DirViewType dir_view_type;
490         FileViewType file_view_type;
491
492         gboolean show_thumbnails;
493         gboolean show_marks;
494         gboolean show_directory_date;
495
496         struct {
497                 gint w;
498                 gint h;
499                 gint x;
500                 gint y;
501                 gboolean maximized;
502                 gint hdivider_pos;
503                 gint vdivider_pos;
504         } main_window;
505
506         struct {
507                 gint w;
508                 gint h;
509                 gint x;
510                 gint y;
511                 gint vdivider_pos;
512         } float_window;
513
514         struct {
515                 gint w;
516                 gint h;
517         } properties_window;
518
519         struct {
520                 guint state;
521                 gint histogram_channel;
522                 gint histogram_mode;
523         } image_overlay;
524
525         gboolean tools_float;
526         gboolean tools_hidden;
527         gboolean toolbar_hidden;
528         gboolean info_pixel_hidden;
529
530         gchar *home_path;
531 };
532
533 struct _LayoutWindow
534 {
535         LayoutOptions options;
536
537         FileData *dir_fd;
538
539         /* base */
540
541         GtkWidget *window;
542
543         GtkWidget *main_box;
544
545         GtkWidget *group_box;
546         GtkWidget *h_pane;
547         GtkWidget *v_pane;
548
549         /* menus, path selector */
550
551         GtkActionGroup *action_group;
552         GtkActionGroup *action_group_editors;
553         guint ui_editors_id;
554         GtkUIManager *ui_manager;
555         guint toolbar_merge_id;
556         GList *toolbar_actions;
557
558         GtkWidget *path_entry;
559
560         /* image */
561
562         LayoutLocation image_location;
563
564         ImageWindow *image;
565
566         ImageWindow *split_images[MAX_SPLIT_IMAGES];
567         ImageSplitMode split_mode;
568         gint active_split_image;
569
570         GtkWidget *split_image_widget;
571         GtkSizeGroup *split_image_sizegroup;
572
573         /* tools window (float) */
574
575         GtkWidget *tools;
576         GtkWidget *tools_pane;
577
578 //      gint tools_float;
579 //      gint tools_hidden;
580
581         /* toolbar */
582
583         GtkWidget *toolbar;
584 //      gint toolbar_hidden;
585
586 //      GtkWidget *thumb_button;
587 //      gint thumbs_enabled;
588 //      gint marks_enabled;
589
590         GtkWidget *back_button;
591
592         /* dir view */
593
594         LayoutLocation dir_location;
595
596         ViewDir *vd;
597         GtkWidget *dir_view;
598
599 //      DirViewType dir_view_type;
600
601         /* file view */
602
603         LayoutLocation file_location;
604
605         ViewFile *vf;
606 //      FileViewType file_view_type;
607
608         GtkWidget *file_view;
609
610         SortType sort_method;
611         gboolean sort_ascend;
612
613         /* status bar */
614
615         GtkWidget *info_box;
616         GtkWidget *info_progress_bar;
617         GtkWidget *info_sort;
618         GtkWidget *info_color;
619         GtkWidget *info_status;
620         GtkWidget *info_details;
621         GtkWidget *info_zoom;
622         GtkWidget *info_write;
623         GtkWidget *info_pixel;
624         
625         /* slide show */
626
627         SlideShowData *slideshow;
628
629         /* full screen */
630
631         FullScreenData *full_screen;
632
633         /* dividers */
634
635 //      gint div_h;
636 //      gint div_v;
637 //      gint div_float;
638
639         /* misc */
640
641         GtkWidget *utility_box;
642         GtkWidget *utility_paned; /* between image and bar */
643         GtkWidget *bar_sort;
644         GtkWidget *bar;
645
646 //      gint bar_sort_enabled;
647 //      gint bar_enabled;
648
649 //      gint bar_width;
650
651         GtkWidget *exif_window;
652
653         /* file list for edit menu */
654         GList *editmenu_fd_list;
655 };
656
657 struct _ViewDir
658 {
659         DirViewType type;
660         gpointer info;
661
662         GtkWidget *widget;
663         GtkWidget *view;
664
665         FileData *dir_fd;
666
667         FileData *click_fd;
668
669         FileData *drop_fd;
670         GList *drop_list;
671         gint drop_scroll_id;
672
673         /* func list */
674         void (*select_func)(ViewDir *vd, const gchar *path, gpointer data);
675         gpointer select_data;
676
677         void (*dnd_drop_update_func)(ViewDir *vd);
678         void (*dnd_drop_leave_func)(ViewDir *vd);
679
680         LayoutWindow *layout;
681
682         GtkWidget *popup;
683
684         PixmapFolders *pf;
685 };
686
687 struct _ViewDirInfoList
688 {
689         GList *list;
690 };
691
692 struct _ViewDirInfoTree
693 {
694         gint drop_expand_id;
695         gint busy_ref;
696 };
697
698
699 struct _ViewFile
700 {
701         FileViewType type;
702         gpointer info;
703
704         GtkWidget *widget;
705         GtkWidget *listview;
706         GtkWidget *scrolled;
707         GtkWidget *filter;
708         GtkWidget *filter_check[FILEDATA_MARKS_SIZE];
709
710         FileData *dir_fd;
711         GList *list;
712
713         SortType sort_method;
714         gboolean sort_ascend;
715
716         /* func list */
717         void (*func_thumb_status)(ViewFile *vf, gdouble val, const gchar *text, gpointer data);
718         gpointer data_thumb_status;
719
720         void (*func_status)(ViewFile *vf, gpointer data);
721         gpointer data_status;
722
723         LayoutWindow *layout;
724
725         GtkWidget *popup;
726
727         /* thumbs updates*/
728         gboolean thumbs_running;
729         ThumbLoader *thumbs_loader;
730         FileData *thumbs_filedata;
731
732         /* marks */
733         gboolean marks_enabled;
734         gint active_mark;
735         gint clicked_mark;
736         
737         /* refresh */
738         gint refresh_idle_id;
739
740         /* file list for edit menu */
741         GList *editmenu_fd_list;
742 };
743
744 struct _ViewFileInfoList
745 {
746         FileData *click_fd;
747         FileData *select_fd;
748
749         gboolean thumbs_enabled;
750
751         gint select_idle_id;
752 };
753
754 struct _IconData;
755
756 struct _ViewFileInfoIcon
757 {
758         /* table stuff */
759         gint columns;
760         gint rows;
761
762         GList *selection;
763         struct _IconData *prev_selection;
764
765         GtkWidget *tip_window;
766         gint tip_delay_id;
767         struct _IconData *tip_id;
768
769         struct _IconData *click_id;
770
771         struct _IconData *focus_id;
772         gint focus_row;
773         gint focus_column;
774
775         gboolean show_text;
776 };
777
778 struct _SlideShowData
779 {
780         ImageWindow *imd;
781
782         GList *filelist;
783         CollectionData *cd;
784         FileData *dir_fd;
785         LayoutWindow *layout;
786
787         GList *list;
788         GList *list_done;
789
790         FileData *slide_fd;
791
792         guint slide_count;
793         gint timeout_id;
794
795         gboolean from_selection;
796
797         void (*stop_func)(SlideShowData *, gpointer);
798         gpointer stop_data;
799
800         gboolean paused;
801 };
802
803 struct _FullScreenData
804 {
805         GtkWidget *window;
806         ImageWindow *imd;
807
808         GtkWidget *normal_window;
809         ImageWindow *normal_imd;
810
811         gint hide_mouse_id;
812         gint busy_mouse_id;
813         gint cursor_state;
814
815         gint saver_block_id;
816
817         void (*stop_func)(FullScreenData *, gpointer);
818         gpointer stop_data;
819 };
820
821 struct _PixmapFolders
822 {
823         GdkPixbuf *close;
824         GdkPixbuf *open;
825         GdkPixbuf *deny;
826         GdkPixbuf *parent;
827 };
828
829 struct _SecureSaveInfo {
830         FILE *fp; /**< file stream pointer */
831         gchar *file_name; /**< final file name */
832         gchar *tmp_file_name; /**< temporary file name */
833         gint err; /**< set to non-zero value in case of error */
834         gboolean secure_save; /**< use secure save for this file, internal use only */
835         gboolean preserve_perms; /**< whether to preserve perms, TRUE by default */
836         gboolean preserve_mtime; /**< whether to preserve mtime, FALSE by default */
837         gboolean unlink_on_error; /**< whether to remove temporary file on save failure, TRUE by default */
838 };
839
840 struct _CommandLine
841 {
842         int argc;
843         gchar **argv;
844         gboolean startup_blank;
845         gboolean startup_full_screen;
846         gboolean startup_in_slideshow;
847         gboolean startup_command_line_collection;
848         gboolean tools_hide;
849         gboolean tools_show;
850         gchar *path;
851         gchar *file;
852         GList *cmd_list;
853         GList *collection_list;
854         gchar *geometry;
855 };
856
857 #endif
858 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */