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