Mercurial > geeqie
annotate src/typedefs.h @ 885:ad420f2eb789
Use a specific enum for image.zoom_mode values (ZoomMode) and
simplify calls to image_zoom_get_default(), dropping last parameter
which was always options->image.zoom_mode.
author | zas_ |
---|---|
date | Tue, 15 Jul 2008 12:52:02 +0000 |
parents | db6977f8b0f1 |
children | d8e1e820cee7 |
rev | line source |
---|---|
9 | 1 /* |
196 | 2 * Geeqie |
115
53b2bfdcff69
Tue Nov 28 11:54:30 2006 John Ellis <johne@verizon.net>
gqview
parents:
113
diff
changeset
|
3 * (C) 2006 John Ellis |
475 | 4 * Copyright (C) 2008 The Geeqie Team |
9 | 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 | |
134
9009856628f7
started implementation of external commands; external Delete should work
nadvornik
parents:
132
diff
changeset
|
17 typedef enum { |
885
ad420f2eb789
Use a specific enum for image.zoom_mode values (ZoomMode) and
zas_
parents:
868
diff
changeset
|
18 ZOOM_RESET_ORIGINAL = 0, |
ad420f2eb789
Use a specific enum for image.zoom_mode values (ZoomMode) and
zas_
parents:
868
diff
changeset
|
19 ZOOM_RESET_FIT_WINDOW = 1, |
ad420f2eb789
Use a specific enum for image.zoom_mode values (ZoomMode) and
zas_
parents:
868
diff
changeset
|
20 ZOOM_RESET_NONE = 2 |
ad420f2eb789
Use a specific enum for image.zoom_mode values (ZoomMode) and
zas_
parents:
868
diff
changeset
|
21 } ZoomMode; |
ad420f2eb789
Use a specific enum for image.zoom_mode values (ZoomMode) and
zas_
parents:
868
diff
changeset
|
22 |
ad420f2eb789
Use a specific enum for image.zoom_mode values (ZoomMode) and
zas_
parents:
868
diff
changeset
|
23 typedef enum { |
448
a73cc0fa14d0
Use explicit names for mouse buttons instead of numbers.
zas_
parents:
446
diff
changeset
|
24 MOUSE_BUTTON_LEFT = 1, |
a73cc0fa14d0
Use explicit names for mouse buttons instead of numbers.
zas_
parents:
446
diff
changeset
|
25 MOUSE_BUTTON_MIDDLE = 2, |
a73cc0fa14d0
Use explicit names for mouse buttons instead of numbers.
zas_
parents:
446
diff
changeset
|
26 MOUSE_BUTTON_RIGHT = 3, |
a73cc0fa14d0
Use explicit names for mouse buttons instead of numbers.
zas_
parents:
446
diff
changeset
|
27 MOUSE_BUTTON_WHEEL_UP = 4, |
a73cc0fa14d0
Use explicit names for mouse buttons instead of numbers.
zas_
parents:
446
diff
changeset
|
28 MOUSE_BUTTON_WHEEL_DOWN = 5 |
a73cc0fa14d0
Use explicit names for mouse buttons instead of numbers.
zas_
parents:
446
diff
changeset
|
29 } MouseButton; |
a73cc0fa14d0
Use explicit names for mouse buttons instead of numbers.
zas_
parents:
446
diff
changeset
|
30 |
a73cc0fa14d0
Use explicit names for mouse buttons instead of numbers.
zas_
parents:
446
diff
changeset
|
31 typedef enum { |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
32 DIRVIEW_LIST, |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
33 DIRVIEW_TREE |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
34 } DirViewType; |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
35 |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
36 typedef enum { |
554
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
37 FILEVIEW_LIST, |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
38 FILEVIEW_ICON |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
39 } FileViewType; |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
40 |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
41 typedef enum { |
283 | 42 CMD_COPY = GQ_EDITOR_GENERIC_SLOTS, |
134
9009856628f7
started implementation of external commands; external Delete should work
nadvornik
parents:
132
diff
changeset
|
43 CMD_MOVE, |
9009856628f7
started implementation of external commands; external Delete should work
nadvornik
parents:
132
diff
changeset
|
44 CMD_RENAME, |
9009856628f7
started implementation of external commands; external Delete should work
nadvornik
parents:
132
diff
changeset
|
45 CMD_DELETE, |
9009856628f7
started implementation of external commands; external Delete should work
nadvornik
parents:
132
diff
changeset
|
46 CMD_FOLDER, |
283 | 47 GQ_EDITOR_SLOTS |
134
9009856628f7
started implementation of external commands; external Delete should work
nadvornik
parents:
132
diff
changeset
|
48 } SpecialEditor; |
9 | 49 |
50 typedef enum { | |
51 SORT_NONE, | |
52 SORT_NAME, | |
53 SORT_SIZE, | |
54 SORT_TIME, | |
55 SORT_PATH, | |
56 SORT_NUMBER | |
57 } SortType; | |
58 | |
59 typedef enum { | |
60 ALTER_NONE, /* do nothing */ | |
61 ALTER_ROTATE_90, | |
62 ALTER_ROTATE_90_CC, /* counterclockwise */ | |
63 ALTER_ROTATE_180, | |
64 ALTER_MIRROR, | |
82
a4c1b7014e6e
Thu Oct 19 15:20:51 2006 John Ellis <johne@verizon.net>
gqview
parents:
41
diff
changeset
|
65 ALTER_FLIP, |
a4c1b7014e6e
Thu Oct 19 15:20:51 2006 John Ellis <johne@verizon.net>
gqview
parents:
41
diff
changeset
|
66 ALTER_DESATURATE |
9 | 67 } AlterType; |
68 | |
69 typedef enum { | |
70 LAYOUT_HIDE = 0, | |
71 LAYOUT_LEFT = 1 << 0, | |
72 LAYOUT_RIGHT = 1 << 1, | |
73 LAYOUT_TOP = 1 << 2, | |
74 LAYOUT_BOTTOM = 1 << 3 | |
75 } LayoutLocation; | |
76 | |
77 | |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
78 typedef enum { |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
79 IMAGE_STATE_NONE = 0, |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
80 IMAGE_STATE_IMAGE = 1 << 0, |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
81 IMAGE_STATE_LOADING = 1 << 1, |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
82 IMAGE_STATE_ERROR = 1 << 2, |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
83 IMAGE_STATE_COLOR_ADJ = 1 << 3, |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
84 IMAGE_STATE_ROTATE_AUTO = 1 << 4, |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
85 IMAGE_STATE_ROTATE_USER = 1 << 5, |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
86 IMAGE_STATE_DELAY_FLIP = 1 << 6 |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
87 } ImageState; |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
88 |
127 | 89 typedef enum { |
90 SPLIT_NONE = 0, | |
91 SPLIT_VERT, | |
92 SPLIT_HOR, | |
93 SPLIT_QUAD, | |
94 } ImageSplitMode; | |
95 | |
143
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
96 typedef enum { |
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
97 FILEDATA_CHANGE_DELETE, |
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
98 FILEDATA_CHANGE_MOVE, |
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
99 FILEDATA_CHANGE_RENAME, |
590 | 100 FILEDATA_CHANGE_COPY, |
753 | 101 FILEDATA_CHANGE_UNSPECIFIED |
143
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
102 } FileDataChangeType; |
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
103 |
161 | 104 typedef enum { |
105 MTS_MODE_MINUS, | |
106 MTS_MODE_SET, | |
107 MTS_MODE_OR, | |
108 MTS_MODE_AND | |
109 } MarkToSelectionMode; | |
110 | |
111 typedef enum { | |
112 STM_MODE_RESET, | |
113 STM_MODE_SET, | |
114 STM_MODE_TOGGLE | |
115 } SelectionToMarkMode; | |
116 | |
212
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
196
diff
changeset
|
117 typedef enum { |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
196
diff
changeset
|
118 FORMAT_CLASS_UNKNOWN, |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
196
diff
changeset
|
119 FORMAT_CLASS_IMAGE, |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
196
diff
changeset
|
120 FORMAT_CLASS_RAWIMAGE, |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
196
diff
changeset
|
121 FORMAT_CLASS_META, |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
196
diff
changeset
|
122 FILE_FORMAT_CLASSES |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
196
diff
changeset
|
123 } FileFormatClass; |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
196
diff
changeset
|
124 |
276 | 125 typedef enum { |
126 SS_ERR_NONE = 0, | |
127 SS_ERR_DISABLED, /**< secsave is disabled. */ | |
128 SS_ERR_OUT_OF_MEM, /**< memory allocation failure */ | |
129 | |
130 /* see err field in SecureSaveInfo */ | |
131 SS_ERR_OPEN_READ, | |
132 SS_ERR_OPEN_WRITE, | |
133 SS_ERR_STAT, | |
134 SS_ERR_ACCESS, | |
135 SS_ERR_MKSTEMP, | |
136 SS_ERR_RENAME, | |
137 SS_ERR_OTHER, | |
138 } SecureSaveErrno; | |
139 | |
791 | 140 typedef enum { |
141 NOTIFY_PRIORITY_HIGH = 0, | |
142 NOTIFY_PRIORITY_MEDIUM, | |
143 NOTIFY_PRIORITY_LOW | |
144 } NotifyPriority; | |
145 | |
792 | 146 typedef enum { |
147 NOTIFY_TYPE_INTERNAL = 0, /* changed internal data only, like marks */ | |
148 NOTIFY_TYPE_REREAD, /* changed file size, date, etc., file name remains unchanged */ | |
149 NOTIFY_TYPE_CHANGE /* generic change described by fd->change */ | |
150 } NotifyType; | |
791 | 151 |
143
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
152 |
127 | 153 #define MAX_SPLIT_IMAGES 4 |
154 | |
9 | 155 typedef struct _ImageLoader ImageLoader; |
156 typedef struct _ThumbLoader ThumbLoader; | |
157 | |
158 typedef struct _CollectInfo CollectInfo; | |
159 typedef struct _CollectionData CollectionData; | |
160 typedef struct _CollectTable CollectTable; | |
161 typedef struct _CollectWindow CollectWindow; | |
162 | |
163 typedef struct _ImageWindow ImageWindow; | |
164 | |
165 typedef struct _FileData FileData; | |
138 | 166 typedef struct _FileDataChangeInfo FileDataChangeInfo; |
9 | 167 |
168 typedef struct _LayoutWindow LayoutWindow; | |
554
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
169 |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
170 typedef struct _ViewDir ViewDir; |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
171 typedef struct _ViewDirInfoList ViewDirInfoList; |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
172 typedef struct _ViewDirInfoTree ViewDirInfoTree; |
554
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
173 |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
174 typedef struct _ViewFile ViewFile; |
557
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
175 typedef struct _ViewFileInfoList ViewFileInfoList; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
176 typedef struct _ViewFileInfoIcon ViewFileInfoIcon; |
9 | 177 |
178 typedef struct _SlideShowData SlideShowData; | |
179 typedef struct _FullScreenData FullScreenData; | |
180 | |
181 typedef struct _PixmapFolders PixmapFolders; | |
273
e0e2c2b72c5a
reworked the histogram patch by Uwe Ohse, most of the code is in
nadvornik
parents:
212
diff
changeset
|
182 typedef struct _Histogram Histogram; |
e0e2c2b72c5a
reworked the histogram patch by Uwe Ohse, most of the code is in
nadvornik
parents:
212
diff
changeset
|
183 |
276 | 184 typedef struct _SecureSaveInfo SecureSaveInfo; |
9 | 185 |
844 | 186 typedef struct _ExifData ExifData; |
187 | |
730 | 188 typedef struct _Editor Editor; |
189 struct _Editor { | |
190 gchar *name; | |
191 gchar *command; | |
192 }; | |
9 | 193 |
194 struct _ImageLoader | |
195 { | |
196 GdkPixbuf *pixbuf; | |
138 | 197 FileData *fd; |
9 | 198 gchar *path; |
199 | |
200 gint bytes_read; | |
201 gint bytes_total; | |
202 | |
203 gint requested_width; | |
204 gint requested_height; | |
14
25335c62cd9b
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
12
diff
changeset
|
205 gint shrunk; |
9 | 206 |
207 gint done; | |
208 gint idle_id; | |
209 gint idle_priority; | |
210 | |
211 GdkPixbufLoader *loader; | |
212 gint load_fd; | |
213 | |
214 void (*func_area_ready)(ImageLoader *, guint x, guint y, guint w, guint h, gpointer); | |
215 void (*func_error)(ImageLoader *, gpointer); | |
216 void (*func_done)(ImageLoader *, gpointer); | |
217 void (*func_percent)(ImageLoader *, gdouble, gpointer); | |
218 | |
219 gpointer data_area_ready; | |
220 gpointer data_error; | |
221 gpointer data_done; | |
222 gpointer data_percent; | |
223 | |
224 gint idle_done_id; | |
413
9e521adbf312
Add two new options to control image read buffer at runtime.
zas_
parents:
407
diff
changeset
|
225 |
9e521adbf312
Add two new options to control image read buffer at runtime.
zas_
parents:
407
diff
changeset
|
226 guchar *read_buffer; |
9e521adbf312
Add two new options to control image read buffer at runtime.
zas_
parents:
407
diff
changeset
|
227 gint read_buffer_size; |
9e521adbf312
Add two new options to control image read buffer at runtime.
zas_
parents:
407
diff
changeset
|
228 gint idle_read_loop_count; |
9 | 229 }; |
230 | |
231 typedef void (* ThumbLoaderFunc)(ThumbLoader *tl, gpointer data); | |
232 | |
233 struct _ThumbLoader | |
234 { | |
235 gint standard_loader; | |
236 | |
237 ImageLoader *il; | |
838 | 238 FileData *fd; /* fd->pixbuf contains final (scaled) image when done */ |
9 | 239 |
240 gint cache_enable; | |
241 gint cache_hit; | |
242 gdouble percent_done; | |
243 | |
244 gint max_w; | |
245 gint max_h; | |
246 | |
247 ThumbLoaderFunc func_done; | |
248 ThumbLoaderFunc func_error; | |
249 ThumbLoaderFunc func_progress; | |
250 | |
251 gpointer data; | |
252 | |
253 gint idle_done_id; | |
254 }; | |
255 | |
256 struct _CollectInfo | |
257 { | |
138 | 258 FileData *fd; |
9 | 259 GdkPixbuf *pixbuf; |
736 | 260 guint flag_mask; |
9 | 261 }; |
262 | |
263 struct _CollectionData | |
264 { | |
265 gchar *path; | |
266 gchar *name; | |
267 GList *list; | |
268 SortType sort_method; | |
269 | |
270 ThumbLoader *thumb_loader; | |
271 CollectInfo *thumb_info; | |
272 | |
273 void (*info_updated_func)(CollectionData *, CollectInfo *, gpointer); | |
274 gpointer info_updated_data; | |
275 | |
276 gint ref; | |
277 | |
278 /* geometry */ | |
279 gint window_read; | |
280 gint window_x; | |
281 gint window_y; | |
282 gint window_w; | |
283 gint window_h; | |
284 | |
285 /* contents changed since save flag */ | |
286 gint changed; | |
303
6ff0bc50ac46
Prevent multiple insertion of the same file in a collection.
zas_
parents:
290
diff
changeset
|
287 |
6ff0bc50ac46
Prevent multiple insertion of the same file in a collection.
zas_
parents:
290
diff
changeset
|
288 GHashTable *existence; |
9 | 289 }; |
290 | |
291 struct _CollectTable | |
292 { | |
293 GtkWidget *scrolled; | |
294 GtkWidget *listview; | |
295 gint columns; | |
296 gint rows; | |
297 | |
298 CollectionData *cd; | |
299 | |
300 GList *selection; | |
301 CollectInfo *prev_selection; | |
302 | |
303 CollectInfo *click_info; | |
304 | |
305 GtkWidget *tip_window; | |
306 gint tip_delay_id; | |
307 CollectInfo *tip_info; | |
308 | |
309 GdkWindow *marker_window; | |
310 CollectInfo *marker_info; | |
311 | |
312 GtkWidget *status_label; | |
313 GtkWidget *extra_label; | |
314 | |
315 gint focus_row; | |
316 gint focus_column; | |
317 CollectInfo *focus_info; | |
318 | |
319 GtkWidget *popup; | |
320 CollectInfo *drop_info; | |
321 GList *drop_list; | |
322 | |
323 gint sync_idle_id; | |
324 gint drop_idle_id; | |
325 | |
326 gint show_text; | |
327 }; | |
328 | |
329 struct _CollectWindow | |
330 { | |
331 GtkWidget *window; | |
332 CollectTable *table; | |
333 GtkWidget *status_box; | |
334 GList *list; | |
335 | |
336 GtkWidget *close_dialog; | |
337 | |
338 CollectionData *cd; | |
339 }; | |
340 | |
12
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
341 typedef gint (* ImageTileRequestFunc)(ImageWindow *imd, gint x, gint y, |
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
342 gint width, gint height, GdkPixbuf *pixbuf, gpointer); |
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
343 typedef void (* ImageTileDisposeFunc)(ImageWindow *imd, gint x, gint y, |
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
344 gint width, gint height, GdkPixbuf *pixbuf, gpointer); |
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
345 |
9 | 346 struct _ImageWindow |
347 { | |
348 GtkWidget *widget; /* use this to add it and show it */ | |
23
17acca639a86
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
14
diff
changeset
|
349 GtkWidget *pr; |
17acca639a86
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
14
diff
changeset
|
350 GtkWidget *frame; |
9 | 351 |
138 | 352 FileData *image_fd; |
9 | 353 |
354 gint64 size; /* file size (bytes) */ | |
355 time_t mtime; /* file modified time stamp */ | |
356 gint unknown; /* failed to load image */ | |
357 | |
846 | 358 ImageLoader *il; /* FIXME - image loader should probably go to FileData, but it must first support |
359 sending callbacks to multiple ImageWindows in parallel */ | |
9 | 360 |
361 gint has_frame; | |
362 | |
363 /* top level (not necessarily parent) window */ | |
23
17acca639a86
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
14
diff
changeset
|
364 gint top_window_sync; /* resize top_window when image dimensions change */ |
9 | 365 GtkWidget *top_window; /* window that gets title, and window to resize when 'fitting' */ |
366 gchar *title; /* window title to display left of file name */ | |
367 gchar *title_right; /* window title to display right of file name */ | |
368 gint title_show_zoom; /* option to include zoom in window title */ | |
369 | |
370 gint completed; | |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
371 ImageState state; /* mask of IMAGE_STATE_* flags about current image */ |
9 | 372 |
117
0c2e1f0a001b
Wed Nov 29 14:28:30 2006 John Ellis <johne@verizon.net>
gqview
parents:
115
diff
changeset
|
373 void (*func_update)(ImageWindow *imd, gpointer data); |
0c2e1f0a001b
Wed Nov 29 14:28:30 2006 John Ellis <johne@verizon.net>
gqview
parents:
115
diff
changeset
|
374 void (*func_complete)(ImageWindow *imd, gint preload, gpointer data); |
0c2e1f0a001b
Wed Nov 29 14:28:30 2006 John Ellis <johne@verizon.net>
gqview
parents:
115
diff
changeset
|
375 void (*func_state)(ImageWindow *imd, ImageState state, gpointer data); |
12
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
376 ImageTileRequestFunc func_tile_request; |
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
377 ImageTileDisposeFunc func_tile_dispose; |
9 | 378 |
379 gpointer data_update; | |
380 gpointer data_complete; | |
117
0c2e1f0a001b
Wed Nov 29 14:28:30 2006 John Ellis <johne@verizon.net>
gqview
parents:
115
diff
changeset
|
381 gpointer data_state; |
12
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
382 gpointer data_tile; |
9 | 383 |
384 /* button, scroll functions */ | |
868
db6977f8b0f1
Reduce number of parameters (mostly unused), just pass the event pointer.
zas_
parents:
849
diff
changeset
|
385 void (*func_button)(ImageWindow *, GdkEventButton *event, gpointer); |
db6977f8b0f1
Reduce number of parameters (mostly unused), just pass the event pointer.
zas_
parents:
849
diff
changeset
|
386 void (*func_drag)(ImageWindow *, GdkEventButton *event, gdouble dx, gdouble dy, gpointer); |
db6977f8b0f1
Reduce number of parameters (mostly unused), just pass the event pointer.
zas_
parents:
849
diff
changeset
|
387 void (*func_scroll)(ImageWindow *, GdkEventScroll *event, gpointer); |
9 | 388 |
389 gpointer data_button; | |
128
98e2632b5d3d
improved connected scroll and active image switching
nadvornik
parents:
127
diff
changeset
|
390 gpointer data_drag; |
9 | 391 gpointer data_scroll; |
392 | |
12
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
393 /* scroll notification (for scroll bar implementation) */ |
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
394 void (*func_scroll_notify)(ImageWindow *, gint x, gint y, gint width, gint height, gpointer); |
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
395 |
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
396 gpointer data_scroll_notify; |
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
397 |
9 | 398 /* collection info */ |
399 CollectionData *collection; | |
400 CollectInfo *collection_info; | |
401 | |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
402 /* color profiles */ |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
403 gint color_profile_enable; |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
404 gint color_profile_input; |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
405 gint color_profile_screen; |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
406 gint color_profile_use_image; |
426
9fe0ca1b5263
show the AdobeRGB profile in the menu, indicate input profile from image
nadvornik
parents:
415
diff
changeset
|
407 gint color_profile_from_image; |
115
53b2bfdcff69
Tue Nov 28 11:54:30 2006 John Ellis <johne@verizon.net>
gqview
parents:
113
diff
changeset
|
408 gpointer cm; |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
409 |
9 | 410 AlterType delay_alter_type; |
411 | |
846 | 412 FileData *read_ahead_fd; |
9 | 413 ImageLoader *read_ahead_il; |
414 | |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
415 gint prev_color_row; |
9 | 416 |
417 gint auto_refresh_id; | |
418 gint auto_refresh_interval; | |
419 | |
420 gint delay_flip; | |
398
c4080362d619
image post-processing (rotation and color management) moved to
nadvornik
parents:
384
diff
changeset
|
421 gint orientation; |
c4080362d619
image post-processing (rotation and color management) moved to
nadvornik
parents:
384
diff
changeset
|
422 gint desaturate; |
415 | 423 |
424 gint overlay_show_zoom; /* set to true if overlay is showing zoom ratio */ | |
9 | 425 }; |
426 | |
149 | 427 #define FILEDATA_MARKS_SIZE 6 |
132 | 428 |
138 | 429 struct _FileDataChangeInfo { |
143
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
430 FileDataChangeType type; |
138 | 431 gchar *source; |
432 gchar *dest; | |
433 }; | |
137
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
434 |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
435 struct _FileData { |
138 | 436 gint magick; |
137
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
437 gint type; |
138 | 438 gchar *original_path; /* key to file_data_pool hash table */ |
137
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
439 gchar *path; |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
440 const gchar *name; |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
441 const gchar *extension; |
785 | 442 gchar *collate_key_name; |
443 gchar *collate_key_name_nocase; | |
137
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
444 gint64 size; |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
445 time_t date; |
808
c3fc736fb927
Use unsigned type for marks since it is used as a bitfield.
zas_
parents:
800
diff
changeset
|
446 guint marks; |
137
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
447 GList *sidecar_files; |
141 | 448 FileData *parent; /* parent file if this is a sidecar file, NULL otherwise */ |
138 | 449 FileDataChangeInfo *change; /* for rename, move ... */ |
845 | 450 GdkPixbuf *thumb_pixbuf; |
846 | 451 |
849
db68d673448f
added possibility to disable grouping of selected files
nadvornik
parents:
846
diff
changeset
|
452 GdkPixbuf *pixbuf; /* full-size image, only complete images, NULL during loading |
db68d673448f
added possibility to disable grouping of selected files
nadvornik
parents:
846
diff
changeset
|
453 all FileData with non-NULL pixbuf are referenced by image_cache */ |
846 | 454 |
138 | 455 gint ref; |
763
81f9e8dbb4bf
improved infrastructure for tracing changes, optimized vflist_populate_view
nadvornik
parents:
753
diff
changeset
|
456 gint version; /* increased when any field in this structure is changed */ |
849
db68d673448f
added possibility to disable grouping of selected files
nadvornik
parents:
846
diff
changeset
|
457 gint disable_grouping; |
db68d673448f
added possibility to disable grouping of selected files
nadvornik
parents:
846
diff
changeset
|
458 |
434
1b0aee2b162e
Keep image orientation set by the user during the session.
zas_
parents:
433
diff
changeset
|
459 gint user_orientation; |
439 | 460 gint exif_orientation; |
844 | 461 |
462 ExifData *exif; | |
9 | 463 }; |
464 | |
465 struct _LayoutWindow | |
466 { | |
783 | 467 FileData *dir_fd; |
9 | 468 |
469 /* base */ | |
470 | |
471 GtkWidget *window; | |
472 | |
473 GtkWidget *main_box; | |
474 | |
475 GtkWidget *group_box; | |
476 GtkWidget *h_pane; | |
477 GtkWidget *v_pane; | |
478 | |
479 /* menus, path selector */ | |
480 | |
481 GtkActionGroup *action_group; | |
482 GtkUIManager *ui_manager; | |
483 | |
484 GtkWidget *path_entry; | |
485 | |
486 /* image */ | |
487 | |
488 LayoutLocation image_location; | |
489 | |
490 ImageWindow *image; | |
491 | |
127 | 492 ImageWindow *split_images[MAX_SPLIT_IMAGES]; |
442 | 493 ImageSplitMode split_mode; |
127 | 494 gint active_split_image; |
495 | |
442 | 496 GtkWidget *split_image_widget; |
837
f8c22438376c
use GtkSizeGroup to control initial size of split images
nadvornik
parents:
812
diff
changeset
|
497 GtkSizeGroup *split_image_sizegroup; |
442 | 498 |
127 | 499 gint connect_zoom, connect_scroll; |
442 | 500 |
9 | 501 /* tools window (float) */ |
502 | |
503 GtkWidget *tools; | |
504 GtkWidget *tools_pane; | |
505 | |
506 gint tools_float; | |
507 gint tools_hidden; | |
508 | |
509 /* toolbar */ | |
510 | |
511 GtkWidget *toolbar; | |
512 gint toolbar_hidden; | |
513 | |
514 GtkWidget *thumb_button; | |
515 gint thumbs_enabled; | |
137
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
516 gint marks_enabled; |
442 | 517 |
9 | 518 /* dir view */ |
519 | |
520 LayoutLocation dir_location; | |
521 | |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
522 ViewDir *vd; |
9 | 523 GtkWidget *dir_view; |
524 | |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
525 DirViewType dir_view_type; |
9 | 526 |
527 /* file view */ | |
528 | |
529 LayoutLocation file_location; | |
530 | |
554
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
531 ViewFile *vf; |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
532 FileViewType file_view_type; |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
533 |
9 | 534 GtkWidget *file_view; |
535 | |
536 SortType sort_method; | |
537 gint sort_ascend; | |
538 | |
539 /* status bar */ | |
540 | |
541 GtkWidget *info_box; | |
542 GtkWidget *info_progress_bar; | |
543 GtkWidget *info_sort; | |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
544 GtkWidget *info_color; |
9 | 545 GtkWidget *info_status; |
546 GtkWidget *info_details; | |
547 GtkWidget *info_zoom; | |
548 | |
549 /* slide show */ | |
550 | |
551 SlideShowData *slideshow; | |
552 | |
553 /* full screen */ | |
554 | |
555 FullScreenData *full_screen; | |
556 | |
557 /* dividers */ | |
558 | |
559 gint div_h; | |
560 gint div_v; | |
561 gint div_float; | |
562 | |
563 /* misc */ | |
564 | |
565 GtkWidget *utility_box; | |
566 GtkWidget *bar_sort; | |
567 GtkWidget *bar_exif; | |
568 GtkWidget *bar_info; | |
569 | |
570 gint bar_sort_enabled; | |
571 gint bar_exif_enabled; | |
572 gint bar_info_enabled; | |
573 | |
489
3809ffa3567b
Save state and width of exif, info and sort panels to rc file.
zas_
parents:
480
diff
changeset
|
574 gint bar_exif_width; |
9 | 575 gint bar_exif_advanced; |
489
3809ffa3567b
Save state and width of exif, info and sort panels to rc file.
zas_
parents:
480
diff
changeset
|
576 gint bar_info_width; |
9 | 577 }; |
578 | |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
579 struct _ViewDir |
9 | 580 { |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
581 DirViewType type; |
384
392dd6541d51
Merge parts of view_dir_list/tree constructors/destructors to
zas_
parents:
380
diff
changeset
|
582 gpointer info; |
392dd6541d51
Merge parts of view_dir_list/tree constructors/destructors to
zas_
parents:
380
diff
changeset
|
583 |
9 | 584 GtkWidget *widget; |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
585 GtkWidget *view; |
9 | 586 |
783 | 587 FileData *dir_fd; |
9 | 588 |
589 FileData *click_fd; | |
590 | |
591 FileData *drop_fd; | |
592 GList *drop_list; | |
593 gint drop_scroll_id; | |
594 | |
595 /* func list */ | |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
596 void (*select_func)(ViewDir *vd, const gchar *path, gpointer data); |
9 | 597 gpointer select_data; |
598 | |
407 | 599 void (*dnd_drop_update_func)(ViewDir *vd); |
600 void (*dnd_drop_leave_func)(ViewDir *vd); | |
442 | 601 |
9 | 602 LayoutWindow *layout; |
603 | |
604 GtkWidget *popup; | |
605 | |
606 PixmapFolders *pf; | |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
607 }; |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
608 |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
609 struct _ViewDirInfoList |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
610 { |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
611 GList *list; |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
612 }; |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
613 |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
614 struct _ViewDirInfoTree |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
615 { |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
616 gint drop_expand_id; |
9 | 617 gint busy_ref; |
618 }; | |
619 | |
554
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
620 |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
621 struct _ViewFile |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
622 { |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
623 FileViewType type; |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
624 gpointer info; |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
625 |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
626 GtkWidget *widget; |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
627 GtkWidget *listview; |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
628 |
783 | 629 FileData *dir_fd; |
554
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
630 GList *list; |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
631 |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
632 SortType sort_method; |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
633 gint sort_ascend; |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
634 |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
635 /* func list */ |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
636 void (*func_thumb_status)(ViewFile *vf, gdouble val, const gchar *text, gpointer data); |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
637 gpointer data_thumb_status; |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
638 |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
639 void (*func_status)(ViewFile *vf, gpointer data); |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
640 gpointer data_status; |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
641 |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
642 LayoutWindow *layout; |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
643 |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
644 GtkWidget *popup; |
563
1ad894219964
Move common thumbs_* fields from _ViewFileInfoIcon and _ViewFileInfoList
zas_
parents:
562
diff
changeset
|
645 |
1ad894219964
Move common thumbs_* fields from _ViewFileInfoIcon and _ViewFileInfoList
zas_
parents:
562
diff
changeset
|
646 /* thumbs updates*/ |
1ad894219964
Move common thumbs_* fields from _ViewFileInfoIcon and _ViewFileInfoList
zas_
parents:
562
diff
changeset
|
647 gint thumbs_running; |
1ad894219964
Move common thumbs_* fields from _ViewFileInfoIcon and _ViewFileInfoList
zas_
parents:
562
diff
changeset
|
648 ThumbLoader *thumbs_loader; |
1ad894219964
Move common thumbs_* fields from _ViewFileInfoIcon and _ViewFileInfoList
zas_
parents:
562
diff
changeset
|
649 FileData *thumbs_filedata; |
564
514a4525d651
Move marks-related fields from _ViewFileInfoList to _ViewFile, since
zas_
parents:
563
diff
changeset
|
650 |
514a4525d651
Move marks-related fields from _ViewFileInfoList to _ViewFile, since
zas_
parents:
563
diff
changeset
|
651 /* marks */ |
514a4525d651
Move marks-related fields from _ViewFileInfoList to _ViewFile, since
zas_
parents:
563
diff
changeset
|
652 gint marks_enabled; |
514a4525d651
Move marks-related fields from _ViewFileInfoList to _ViewFile, since
zas_
parents:
563
diff
changeset
|
653 gint active_mark; |
654
6dcfac4b356f
Get rid of vflist_pop_menu() col_idx parameter, use new Viewfile field
zas_
parents:
616
diff
changeset
|
654 gint clicked_mark; |
772
f53c2bb5b1b1
replaced vflist_maint functions by vflist_refresh - it allows to follow
nadvornik
parents:
763
diff
changeset
|
655 |
f53c2bb5b1b1
replaced vflist_maint functions by vflist_refresh - it allows to follow
nadvornik
parents:
763
diff
changeset
|
656 /* refresh */ |
812 | 657 gint refresh_idle_id; |
554
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
658 }; |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
659 |
557
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
660 struct _ViewFileInfoList |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
661 { |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
662 FileData *click_fd; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
663 FileData *select_fd; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
664 |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
665 gint thumbs_enabled; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
666 |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
667 gint select_idle_id; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
668 }; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
669 |
138 | 670 struct _IconData; |
671 | |
557
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
672 struct _ViewFileInfoIcon |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
673 { |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
674 /* table stuff */ |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
675 gint columns; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
676 gint rows; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
677 |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
678 GList *selection; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
679 struct _IconData *prev_selection; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
680 |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
681 GtkWidget *tip_window; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
682 gint tip_delay_id; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
683 struct _IconData *tip_id; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
684 |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
685 struct _IconData *click_id; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
686 |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
687 struct _IconData *focus_id; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
688 gint focus_row; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
689 gint focus_column; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
690 |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
691 gint show_text; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
692 }; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
693 |
9 | 694 struct _SlideShowData |
695 { | |
696 ImageWindow *imd; | |
697 | |
138 | 698 GList *filelist; |
9 | 699 CollectionData *cd; |
783 | 700 FileData *dir_fd; |
9 | 701 LayoutWindow *layout; |
702 | |
703 GList *list; | |
704 GList *list_done; | |
705 | |
138 | 706 FileData *slide_fd; |
9 | 707 |
736 | 708 guint slide_count; |
9 | 709 gint timeout_id; |
710 | |
711 gint from_selection; | |
712 | |
713 void (*stop_func)(SlideShowData *, gpointer); | |
714 gpointer stop_data; | |
715 | |
716 gint paused; | |
717 }; | |
718 | |
719 struct _FullScreenData | |
720 { | |
721 GtkWidget *window; | |
722 ImageWindow *imd; | |
723 | |
724 GtkWidget *normal_window; | |
725 ImageWindow *normal_imd; | |
726 | |
727 gint hide_mouse_id; | |
728 gint busy_mouse_id; | |
729 gint cursor_state; | |
730 | |
731 gint saver_block_id; | |
732 | |
733 void (*stop_func)(FullScreenData *, gpointer); | |
734 gpointer stop_data; | |
735 }; | |
736 | |
737 struct _PixmapFolders | |
738 { | |
739 GdkPixbuf *close; | |
740 GdkPixbuf *open; | |
741 GdkPixbuf *deny; | |
742 GdkPixbuf *parent; | |
743 }; | |
744 | |
276 | 745 struct _SecureSaveInfo { |
746 FILE *fp; /**< file stream pointer */ | |
747 gchar *file_name; /**< final file name */ | |
748 gchar *tmp_file_name; /**< temporary file name */ | |
749 gint err; /**< set to non-zero value in case of error */ | |
313
a955b7fd626b
Secure save now unlinks temporary file on error by default.
zas_
parents:
311
diff
changeset
|
750 gint secure_save; /**< use secure save for this file, internal use only */ |
a955b7fd626b
Secure save now unlinks temporary file on error by default.
zas_
parents:
311
diff
changeset
|
751 gint preserve_perms; /**< whether to preserve perms, TRUE by default */ |
a955b7fd626b
Secure save now unlinks temporary file on error by default.
zas_
parents:
311
diff
changeset
|
752 gint preserve_mtime; /**< whether to preserve mtime, FALSE by default */ |
a955b7fd626b
Secure save now unlinks temporary file on error by default.
zas_
parents:
311
diff
changeset
|
753 gint unlink_on_error; /**< whether to remove temporary file on save failure, TRUE by default */ |
276 | 754 }; |
755 | |
9 | 756 |
757 #endif |