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