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