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