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