active image follows keyboard focus
[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         void (*func_focus_in)(ImageWindow *, gpointer);
398
399         gpointer data_button;
400         gpointer data_drag;
401         gpointer data_scroll;
402         gpointer data_focus_in;
403
404         /* scroll notification (for scroll bar implementation) */
405         void (*func_scroll_notify)(ImageWindow *, gint x, gint y, gint width, gint height, gpointer);
406
407         gpointer data_scroll_notify;
408
409         /* collection info */
410         CollectionData *collection;
411         CollectInfo *collection_info;
412
413         /* color profiles */
414         gboolean color_profile_enable;
415         gint color_profile_input;
416         gint color_profile_screen;
417         gboolean color_profile_use_image;
418         gint color_profile_from_image;
419         gpointer cm;
420
421         AlterType delay_alter_type;
422
423         FileData *read_ahead_fd;
424         ImageLoader *read_ahead_il;
425
426         gint prev_color_row;
427
428         gboolean auto_refresh;
429
430         gboolean delay_flip;
431         gint orientation;
432         gboolean desaturate;
433
434         gboolean overlay_show_zoom; /* set to true if overlay is showing zoom ratio */
435 };
436
437 #define FILEDATA_MARKS_SIZE 6
438
439 struct _FileDataChangeInfo {
440         FileDataChangeType type;
441         gchar *source;
442         gchar *dest;
443         gint error;
444 };
445
446 struct _FileData {
447         gint magick;
448         gint type;
449         gchar *original_path; /* key to file_data_pool hash table */
450         gchar *path;
451         const gchar *name;
452         const gchar *extension;
453         gchar *collate_key_name;
454         gchar *collate_key_name_nocase;
455         gint64 size;
456         time_t date;
457         mode_t mode; /* this is needed at least for notification in view_dir because it is preserved after the file/directory is deleted */
458         
459         guint marks; /* each bit represents one mark */
460         guint valid_marks; /* zero bit means that the corresponding mark needs to be reread */
461
462
463         GList *sidecar_files;
464         FileData *parent; /* parent file if this is a sidecar file, NULL otherwise */
465         FileDataChangeInfo *change; /* for rename, move ... */
466         GdkPixbuf *thumb_pixbuf;
467
468         GdkPixbuf *pixbuf; /* full-size image, only complete images, NULL during loading
469                               all FileData with non-NULL pixbuf are referenced by image_cache */
470                               
471         HistMap *histmap;
472
473         gint ref;
474         gint version; /* increased when any field in this structure is changed */
475         gboolean disable_grouping;
476
477         gint user_orientation;
478         gint exif_orientation;
479         
480         ExifData *exif;
481         GHashTable *modified_xmp; // hash table which contains unwritten xmp metadata in format: key->list of string values
482 };
483
484 struct _LayoutOptions
485 {
486         gchar *id;
487
488         gchar *order;
489         gint style;
490
491         DirViewType dir_view_type;
492         FileViewType file_view_type;
493
494         gboolean show_thumbnails;
495         gboolean show_marks;
496         gboolean show_directory_date;
497
498         struct {
499                 gint w;
500                 gint h;
501                 gint x;
502                 gint y;
503                 gboolean maximized;
504                 gint hdivider_pos;
505                 gint vdivider_pos;
506         } main_window;
507
508         struct {
509                 gint w;
510                 gint h;
511                 gint x;
512                 gint y;
513                 gint vdivider_pos;
514         } float_window;
515
516         struct {
517                 gint w;
518                 gint h;
519         } properties_window;
520
521         struct {
522                 guint state;
523                 gint histogram_channel;
524                 gint histogram_mode;
525         } image_overlay;
526
527         gboolean tools_float;
528         gboolean tools_hidden;
529         gboolean toolbar_hidden;
530         gboolean info_pixel_hidden;
531
532         gchar *home_path;
533 };
534
535 struct _LayoutWindow
536 {
537         LayoutOptions options;
538
539         FileData *dir_fd;
540
541         /* base */
542
543         GtkWidget *window;
544
545         GtkWidget *main_box;
546
547         GtkWidget *group_box;
548         GtkWidget *h_pane;
549         GtkWidget *v_pane;
550
551         /* menus, path selector */
552
553         GtkActionGroup *action_group;
554         GtkActionGroup *action_group_editors;
555         guint ui_editors_id;
556         GtkUIManager *ui_manager;
557         guint toolbar_merge_id;
558         GList *toolbar_actions;
559
560         GtkWidget *path_entry;
561
562         /* image */
563
564         LayoutLocation image_location;
565
566         ImageWindow *image;
567
568         ImageWindow *split_images[MAX_SPLIT_IMAGES];
569         ImageSplitMode split_mode;
570         gint active_split_image;
571
572         GtkWidget *split_image_widget;
573         GtkSizeGroup *split_image_sizegroup;
574
575         /* tools window (float) */
576
577         GtkWidget *tools;
578         GtkWidget *tools_pane;
579
580 //      gint tools_float;
581 //      gint tools_hidden;
582
583         GtkWidget *menu_bar; /* referenced by lw, exist during whole lw lifetime */
584         /* toolbar */
585
586         GtkWidget *toolbar; /* referenced by lw, exist during whole lw lifetime */
587 //      gint toolbar_hidden;
588
589 //      GtkWidget *thumb_button;
590 //      gint thumbs_enabled;
591 //      gint marks_enabled;
592
593         GtkWidget *back_button;
594
595         /* dir view */
596
597         LayoutLocation dir_location;
598
599         ViewDir *vd;
600         GtkWidget *dir_view;
601
602 //      DirViewType dir_view_type;
603
604         /* file view */
605
606         LayoutLocation file_location;
607
608         ViewFile *vf;
609 //      FileViewType file_view_type;
610
611         GtkWidget *file_view;
612
613         SortType sort_method;
614         gboolean sort_ascend;
615
616         /* status bar */
617
618         GtkWidget *info_box;
619         GtkWidget *info_progress_bar;
620         GtkWidget *info_sort;
621         GtkWidget *info_color;
622         GtkWidget *info_status;
623         GtkWidget *info_details;
624         GtkWidget *info_zoom;
625         GtkWidget *info_write;
626         GtkWidget *info_pixel;
627         
628         /* slide show */
629
630         SlideShowData *slideshow;
631
632         /* full screen */
633
634         FullScreenData *full_screen;
635
636         /* dividers */
637
638 //      gint div_h;
639 //      gint div_v;
640 //      gint div_float;
641
642         /* misc */
643
644         GtkWidget *utility_box; /* referenced by lw, exist during whole lw lifetime */
645         GtkWidget *utility_paned; /* between image and bar */
646         GtkWidget *bar_sort;
647         GtkWidget *bar;
648
649 //      gint bar_sort_enabled;
650 //      gint bar_enabled;
651
652 //      gint bar_width;
653
654         GtkWidget *exif_window;
655
656         /* file list for edit menu */
657         GList *editmenu_fd_list;
658 };
659
660 struct _ViewDir
661 {
662         DirViewType type;
663         gpointer info;
664
665         GtkWidget *widget;
666         GtkWidget *view;
667
668         FileData *dir_fd;
669
670         FileData *click_fd;
671
672         FileData *drop_fd;
673         GList *drop_list;
674         gint drop_scroll_id;
675
676         /* func list */
677         void (*select_func)(ViewDir *vd, const gchar *path, gpointer data);
678         gpointer select_data;
679
680         void (*dnd_drop_update_func)(ViewDir *vd);
681         void (*dnd_drop_leave_func)(ViewDir *vd);
682
683         LayoutWindow *layout;
684
685         GtkWidget *popup;
686
687         PixmapFolders *pf;
688 };
689
690 struct _ViewDirInfoList
691 {
692         GList *list;
693 };
694
695 struct _ViewDirInfoTree
696 {
697         gint drop_expand_id;
698         gint busy_ref;
699 };
700
701
702 struct _ViewFile
703 {
704         FileViewType type;
705         gpointer info;
706
707         GtkWidget *widget;
708         GtkWidget *listview;
709         GtkWidget *scrolled;
710         GtkWidget *filter;
711         GtkWidget *filter_check[FILEDATA_MARKS_SIZE];
712
713         FileData *dir_fd;
714         GList *list;
715
716         SortType sort_method;
717         gboolean sort_ascend;
718
719         /* func list */
720         void (*func_thumb_status)(ViewFile *vf, gdouble val, const gchar *text, gpointer data);
721         gpointer data_thumb_status;
722
723         void (*func_status)(ViewFile *vf, gpointer data);
724         gpointer data_status;
725
726         LayoutWindow *layout;
727
728         GtkWidget *popup;
729
730         /* thumbs updates*/
731         gboolean thumbs_running;
732         ThumbLoader *thumbs_loader;
733         FileData *thumbs_filedata;
734
735         /* marks */
736         gboolean marks_enabled;
737         gint active_mark;
738         gint clicked_mark;
739         
740         /* refresh */
741         gint refresh_idle_id;
742
743         /* file list for edit menu */
744         GList *editmenu_fd_list;
745 };
746
747 struct _ViewFileInfoList
748 {
749         FileData *click_fd;
750         FileData *select_fd;
751
752         gboolean thumbs_enabled;
753
754         gint select_idle_id;
755 };
756
757 struct _IconData;
758
759 struct _ViewFileInfoIcon
760 {
761         /* table stuff */
762         gint columns;
763         gint rows;
764
765         GList *selection;
766         struct _IconData *prev_selection;
767
768         GtkWidget *tip_window;
769         gint tip_delay_id;
770         struct _IconData *tip_id;
771
772         struct _IconData *click_id;
773
774         struct _IconData *focus_id;
775         gint focus_row;
776         gint focus_column;
777
778         gboolean show_text;
779 };
780
781 struct _SlideShowData
782 {
783         ImageWindow *imd;
784
785         GList *filelist;
786         CollectionData *cd;
787         FileData *dir_fd;
788         LayoutWindow *layout;
789
790         GList *list;
791         GList *list_done;
792
793         FileData *slide_fd;
794
795         guint slide_count;
796         gint timeout_id;
797
798         gboolean from_selection;
799
800         void (*stop_func)(SlideShowData *, gpointer);
801         gpointer stop_data;
802
803         gboolean paused;
804 };
805
806 struct _FullScreenData
807 {
808         GtkWidget *window;
809         ImageWindow *imd;
810
811         GtkWidget *normal_window;
812         ImageWindow *normal_imd;
813
814         gint hide_mouse_id;
815         gint busy_mouse_id;
816         gint cursor_state;
817
818         gint saver_block_id;
819
820         void (*stop_func)(FullScreenData *, gpointer);
821         gpointer stop_data;
822 };
823
824 struct _PixmapFolders
825 {
826         GdkPixbuf *close;
827         GdkPixbuf *open;
828         GdkPixbuf *deny;
829         GdkPixbuf *parent;
830 };
831
832 struct _SecureSaveInfo {
833         FILE *fp; /**< file stream pointer */
834         gchar *file_name; /**< final file name */
835         gchar *tmp_file_name; /**< temporary file name */
836         gint err; /**< set to non-zero value in case of error */
837         gboolean secure_save; /**< use secure save for this file, internal use only */
838         gboolean preserve_perms; /**< whether to preserve perms, TRUE by default */
839         gboolean preserve_mtime; /**< whether to preserve mtime, FALSE by default */
840         gboolean unlink_on_error; /**< whether to remove temporary file on save failure, TRUE by default */
841 };
842
843 struct _CommandLine
844 {
845         int argc;
846         gchar **argv;
847         gboolean startup_blank;
848         gboolean startup_full_screen;
849         gboolean startup_in_slideshow;
850         gboolean startup_command_line_collection;
851         gboolean tools_hide;
852         gboolean tools_show;
853         gchar *path;
854         gchar *file;
855         GList *cmd_list;
856         GList *collection_list;
857         gchar *geometry;
858 };
859
860 #endif
861 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */