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