Mercurial > geeqie
annotate src/typedefs.h @ 1282:ec1996140b42
Update README header.
author | zas_ |
---|---|
date | Wed, 04 Feb 2009 16:49:11 +0000 |
parents | 6248faa9e829 |
children | 8b89e3ff286b |
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 |
1272 | 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" | |
9 | 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, | |
82
a4c1b7014e6e
Thu Oct 19 15:20:51 2006 John Ellis <johne@verizon.net>
gqview
parents:
41
diff
changeset
|
62 ALTER_FLIP, |
a4c1b7014e6e
Thu Oct 19 15:20:51 2006 John Ellis <johne@verizon.net>
gqview
parents:
41
diff
changeset
|
63 ALTER_DESATURATE |
9 | 64 } AlterType; |
65 | |
66 typedef enum { | |
67 LAYOUT_HIDE = 0, | |
68 LAYOUT_LEFT = 1 << 0, | |
69 LAYOUT_RIGHT = 1 << 1, | |
70 LAYOUT_TOP = 1 << 2, | |
71 LAYOUT_BOTTOM = 1 << 3 | |
72 } LayoutLocation; | |
73 | |
74 | |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
75 typedef enum { |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
76 IMAGE_STATE_NONE = 0, |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
77 IMAGE_STATE_IMAGE = 1 << 0, |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
78 IMAGE_STATE_LOADING = 1 << 1, |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
79 IMAGE_STATE_ERROR = 1 << 2, |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
80 IMAGE_STATE_COLOR_ADJ = 1 << 3, |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
81 IMAGE_STATE_ROTATE_AUTO = 1 << 4, |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
82 IMAGE_STATE_ROTATE_USER = 1 << 5, |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
83 IMAGE_STATE_DELAY_FLIP = 1 << 6 |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
84 } ImageState; |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
85 |
127 | 86 typedef enum { |
87 SPLIT_NONE = 0, | |
88 SPLIT_VERT, | |
89 SPLIT_HOR, | |
90 SPLIT_QUAD, | |
91 } ImageSplitMode; | |
92 | |
143
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
93 typedef enum { |
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
94 FILEDATA_CHANGE_DELETE, |
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
95 FILEDATA_CHANGE_MOVE, |
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
96 FILEDATA_CHANGE_RENAME, |
590 | 97 FILEDATA_CHANGE_COPY, |
1205
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1203
diff
changeset
|
98 FILEDATA_CHANGE_UNSPECIFIED, |
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1203
diff
changeset
|
99 FILEDATA_CHANGE_WRITE_METADATA |
143
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
100 } FileDataChangeType; |
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
101 |
161 | 102 typedef enum { |
103 MTS_MODE_MINUS, | |
104 MTS_MODE_SET, | |
105 MTS_MODE_OR, | |
106 MTS_MODE_AND | |
107 } MarkToSelectionMode; | |
108 | |
109 typedef enum { | |
110 STM_MODE_RESET, | |
111 STM_MODE_SET, | |
112 STM_MODE_TOGGLE | |
113 } SelectionToMarkMode; | |
114 | |
212
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
196
diff
changeset
|
115 typedef enum { |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
196
diff
changeset
|
116 FORMAT_CLASS_UNKNOWN, |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
196
diff
changeset
|
117 FORMAT_CLASS_IMAGE, |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
196
diff
changeset
|
118 FORMAT_CLASS_RAWIMAGE, |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
196
diff
changeset
|
119 FORMAT_CLASS_META, |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
196
diff
changeset
|
120 FILE_FORMAT_CLASSES |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
196
diff
changeset
|
121 } FileFormatClass; |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
196
diff
changeset
|
122 |
276 | 123 typedef enum { |
124 SS_ERR_NONE = 0, | |
125 SS_ERR_DISABLED, /**< secsave is disabled. */ | |
126 SS_ERR_OUT_OF_MEM, /**< memory allocation failure */ | |
127 | |
128 /* see err field in SecureSaveInfo */ | |
129 SS_ERR_OPEN_READ, | |
130 SS_ERR_OPEN_WRITE, | |
131 SS_ERR_STAT, | |
132 SS_ERR_ACCESS, | |
133 SS_ERR_MKSTEMP, | |
134 SS_ERR_RENAME, | |
135 SS_ERR_OTHER, | |
136 } SecureSaveErrno; | |
137 | |
791 | 138 typedef enum { |
139 NOTIFY_PRIORITY_HIGH = 0, | |
140 NOTIFY_PRIORITY_MEDIUM, | |
141 NOTIFY_PRIORITY_LOW | |
142 } NotifyPriority; | |
143 | |
792 | 144 typedef enum { |
145 NOTIFY_TYPE_INTERNAL = 0, /* changed internal data only, like marks */ | |
146 NOTIFY_TYPE_REREAD, /* changed file size, date, etc., file name remains unchanged */ | |
147 NOTIFY_TYPE_CHANGE /* generic change described by fd->change */ | |
148 } NotifyType; | |
791 | 149 |
914
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
888
diff
changeset
|
150 typedef enum { |
929 | 151 CHANGE_OK = 0, |
152 CHANGE_WARN_DEST_EXISTS = 1 << 0, | |
153 CHANGE_WARN_NO_WRITE_PERM = 1 << 1, | |
154 CHANGE_WARN_SAME = 1 << 2, | |
933 | 155 CHANGE_WARN_CHANGED_EXT = 1 << 3, |
156 CHANGE_ERROR_MASK = (~0) << 4, /* the values below are fatal errors */ | |
157 CHANGE_NO_READ_PERM = 1 << 4, | |
158 CHANGE_NO_WRITE_PERM_DIR = 1 << 5, | |
159 CHANGE_NO_DEST_DIR = 1 << 6, | |
160 CHANGE_NO_WRITE_PERM_DEST_DIR = 1 << 7, | |
161 CHANGE_NO_WRITE_PERM_DEST = 1 << 8, | |
162 CHANGE_DEST_EXISTS = 1 << 9, | |
163 CHANGE_NO_SRC = 1 << 10, | |
931
a53f5141228b
allow only existing folders in destination dialog
nadvornik
parents:
929
diff
changeset
|
164 CHANGE_GENERIC_ERROR = 1 << 16 |
914
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
888
diff
changeset
|
165 } ChangeError; |
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
888
diff
changeset
|
166 |
127 | 167 #define MAX_SPLIT_IMAGES 4 |
168 | |
9 | 169 typedef struct _ImageLoader ImageLoader; |
170 typedef struct _ThumbLoader ThumbLoader; | |
171 | |
172 typedef struct _CollectInfo CollectInfo; | |
173 typedef struct _CollectionData CollectionData; | |
174 typedef struct _CollectTable CollectTable; | |
175 typedef struct _CollectWindow CollectWindow; | |
176 | |
177 typedef struct _ImageWindow ImageWindow; | |
178 | |
179 typedef struct _FileData FileData; | |
138 | 180 typedef struct _FileDataChangeInfo FileDataChangeInfo; |
9 | 181 |
182 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
|
183 |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
184 typedef struct _ViewDir ViewDir; |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
185 typedef struct _ViewDirInfoList ViewDirInfoList; |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
186 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
|
187 |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
188 typedef struct _ViewFile ViewFile; |
557
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
189 typedef struct _ViewFileInfoList ViewFileInfoList; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
190 typedef struct _ViewFileInfoIcon ViewFileInfoIcon; |
9 | 191 |
192 typedef struct _SlideShowData SlideShowData; | |
193 typedef struct _FullScreenData FullScreenData; | |
194 | |
195 typedef struct _PixmapFolders PixmapFolders; | |
273
e0e2c2b72c5a
reworked the histogram patch by Uwe Ohse, most of the code is in
nadvornik
parents:
212
diff
changeset
|
196 typedef struct _Histogram Histogram; |
e0e2c2b72c5a
reworked the histogram patch by Uwe Ohse, most of the code is in
nadvornik
parents:
212
diff
changeset
|
197 |
276 | 198 typedef struct _SecureSaveInfo SecureSaveInfo; |
9 | 199 |
844 | 200 typedef struct _ExifData ExifData; |
201 | |
1272 | 202 typedef struct _EditorDescription EditorDescription; |
203 | |
204 struct _EditorDescription { | |
1277 | 205 gchar *key; /* desktop file name, not including path, including extension */ |
206 gchar *name; /* Name, localized name presented to user */ | |
207 gchar *icon; /* Icon */ | |
208 gchar *exec; /* Exec */ | |
209 gchar *menu_path; | |
1272 | 210 gchar *hotkey; |
211 GList *ext_list; | |
212 gchar *file; | |
1277 | 213 guint flags; |
1272 | 214 gboolean hidden; |
730 | 215 }; |
9 | 216 |
1272 | 217 |
1012
fe82830ab8fd
converted image loader to a GObject and use signals for notification
nadvornik
parents:
1008
diff
changeset
|
218 struct _ImageLoader; |
9 | 219 |
220 typedef void (* ThumbLoaderFunc)(ThumbLoader *tl, gpointer data); | |
221 | |
1231 | 222 typedef void (* FileUtilDoneFunc)(gboolean success, const gchar *done_path, gpointer data); |
223 | |
9 | 224 struct _ThumbLoader |
225 { | |
226 gint standard_loader; | |
227 | |
228 ImageLoader *il; | |
838 | 229 FileData *fd; /* fd->pixbuf contains final (scaled) image when done */ |
9 | 230 |
231 gint cache_enable; | |
232 gint cache_hit; | |
233 gdouble percent_done; | |
234 | |
235 gint max_w; | |
236 gint max_h; | |
237 | |
238 ThumbLoaderFunc func_done; | |
239 ThumbLoaderFunc func_error; | |
240 ThumbLoaderFunc func_progress; | |
241 | |
242 gpointer data; | |
243 | |
244 gint idle_done_id; | |
245 }; | |
246 | |
247 struct _CollectInfo | |
248 { | |
138 | 249 FileData *fd; |
9 | 250 GdkPixbuf *pixbuf; |
736 | 251 guint flag_mask; |
9 | 252 }; |
253 | |
254 struct _CollectionData | |
255 { | |
256 gchar *path; | |
257 gchar *name; | |
258 GList *list; | |
259 SortType sort_method; | |
260 | |
261 ThumbLoader *thumb_loader; | |
262 CollectInfo *thumb_info; | |
263 | |
264 void (*info_updated_func)(CollectionData *, CollectInfo *, gpointer); | |
265 gpointer info_updated_data; | |
266 | |
267 gint ref; | |
268 | |
269 /* geometry */ | |
270 gint window_read; | |
271 gint window_x; | |
272 gint window_y; | |
273 gint window_w; | |
274 gint window_h; | |
275 | |
276 /* contents changed since save flag */ | |
277 gint changed; | |
303
6ff0bc50ac46
Prevent multiple insertion of the same file in a collection.
zas_
parents:
290
diff
changeset
|
278 |
6ff0bc50ac46
Prevent multiple insertion of the same file in a collection.
zas_
parents:
290
diff
changeset
|
279 GHashTable *existence; |
9 | 280 }; |
281 | |
282 struct _CollectTable | |
283 { | |
284 GtkWidget *scrolled; | |
285 GtkWidget *listview; | |
286 gint columns; | |
287 gint rows; | |
288 | |
289 CollectionData *cd; | |
290 | |
291 GList *selection; | |
292 CollectInfo *prev_selection; | |
293 | |
294 CollectInfo *click_info; | |
295 | |
296 GtkWidget *tip_window; | |
297 gint tip_delay_id; | |
298 CollectInfo *tip_info; | |
299 | |
300 GdkWindow *marker_window; | |
301 CollectInfo *marker_info; | |
302 | |
303 GtkWidget *status_label; | |
304 GtkWidget *extra_label; | |
305 | |
306 gint focus_row; | |
307 gint focus_column; | |
308 CollectInfo *focus_info; | |
309 | |
310 GtkWidget *popup; | |
311 CollectInfo *drop_info; | |
312 GList *drop_list; | |
313 | |
314 gint sync_idle_id; | |
315 gint drop_idle_id; | |
316 | |
317 gint show_text; | |
318 }; | |
319 | |
320 struct _CollectWindow | |
321 { | |
322 GtkWidget *window; | |
323 CollectTable *table; | |
324 GtkWidget *status_box; | |
325 GList *list; | |
326 | |
327 GtkWidget *close_dialog; | |
328 | |
329 CollectionData *cd; | |
330 }; | |
331 | |
12
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
332 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
|
333 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
|
334 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
|
335 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
|
336 |
9 | 337 struct _ImageWindow |
338 { | |
339 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
|
340 GtkWidget *pr; |
17acca639a86
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
14
diff
changeset
|
341 GtkWidget *frame; |
9 | 342 |
138 | 343 FileData *image_fd; |
9 | 344 |
345 gint unknown; /* failed to load image */ | |
346 | |
846 | 347 ImageLoader *il; /* FIXME - image loader should probably go to FileData, but it must first support |
995 | 348 sending callbacks to multiple ImageWindows in parallel */ |
9 | 349 |
350 gint has_frame; | |
351 | |
352 /* 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
|
353 gint top_window_sync; /* resize top_window when image dimensions change */ |
9 | 354 GtkWidget *top_window; /* window that gets title, and window to resize when 'fitting' */ |
355 gchar *title; /* window title to display left of file name */ | |
356 gchar *title_right; /* window title to display right of file name */ | |
357 gint title_show_zoom; /* option to include zoom in window title */ | |
358 | |
359 gint completed; | |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
360 ImageState state; /* mask of IMAGE_STATE_* flags about current image */ |
9 | 361 |
117
0c2e1f0a001b
Wed Nov 29 14:28:30 2006 John Ellis <johne@verizon.net>
gqview
parents:
115
diff
changeset
|
362 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
|
363 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
|
364 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
|
365 ImageTileRequestFunc func_tile_request; |
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
366 ImageTileDisposeFunc func_tile_dispose; |
9 | 367 |
368 gpointer data_update; | |
369 gpointer data_complete; | |
117
0c2e1f0a001b
Wed Nov 29 14:28:30 2006 John Ellis <johne@verizon.net>
gqview
parents:
115
diff
changeset
|
370 gpointer data_state; |
12
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
371 gpointer data_tile; |
9 | 372 |
373 /* button, scroll functions */ | |
868
db6977f8b0f1
Reduce number of parameters (mostly unused), just pass the event pointer.
zas_
parents:
849
diff
changeset
|
374 void (*func_button)(ImageWindow *, GdkEventButton *event, gpointer); |
db6977f8b0f1
Reduce number of parameters (mostly unused), just pass the event pointer.
zas_
parents:
849
diff
changeset
|
375 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
|
376 void (*func_scroll)(ImageWindow *, GdkEventScroll *event, gpointer); |
9 | 377 |
378 gpointer data_button; | |
128
98e2632b5d3d
improved connected scroll and active image switching
nadvornik
parents:
127
diff
changeset
|
379 gpointer data_drag; |
9 | 380 gpointer data_scroll; |
381 | |
12
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
382 /* 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
|
383 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
|
384 |
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
385 gpointer data_scroll_notify; |
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
386 |
9 | 387 /* collection info */ |
388 CollectionData *collection; | |
389 CollectInfo *collection_info; | |
390 | |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
391 /* color profiles */ |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
392 gint color_profile_enable; |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
393 gint color_profile_input; |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
394 gint color_profile_screen; |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
395 gint color_profile_use_image; |
426
9fe0ca1b5263
show the AdobeRGB profile in the menu, indicate input profile from image
nadvornik
parents:
415
diff
changeset
|
396 gint color_profile_from_image; |
115
53b2bfdcff69
Tue Nov 28 11:54:30 2006 John Ellis <johne@verizon.net>
gqview
parents:
113
diff
changeset
|
397 gpointer cm; |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
398 |
9 | 399 AlterType delay_alter_type; |
400 | |
846 | 401 FileData *read_ahead_fd; |
9 | 402 ImageLoader *read_ahead_il; |
403 | |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
404 gint prev_color_row; |
9 | 405 |
888 | 406 gint auto_refresh; |
9 | 407 |
408 gint delay_flip; | |
398
c4080362d619
image post-processing (rotation and color management) moved to
nadvornik
parents:
384
diff
changeset
|
409 gint orientation; |
c4080362d619
image post-processing (rotation and color management) moved to
nadvornik
parents:
384
diff
changeset
|
410 gint desaturate; |
415 | 411 |
412 gint overlay_show_zoom; /* set to true if overlay is showing zoom ratio */ | |
9 | 413 }; |
414 | |
149 | 415 #define FILEDATA_MARKS_SIZE 6 |
132 | 416 |
138 | 417 struct _FileDataChangeInfo { |
143
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
418 FileDataChangeType type; |
138 | 419 gchar *source; |
420 gchar *dest; | |
914
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
888
diff
changeset
|
421 gint error; |
138 | 422 }; |
137
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
423 |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
424 struct _FileData { |
138 | 425 gint magick; |
137
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
426 gint type; |
138 | 427 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
|
428 gchar *path; |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
429 const gchar *name; |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
430 const gchar *extension; |
785 | 431 gchar *collate_key_name; |
432 gchar *collate_key_name_nocase; | |
137
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
433 gint64 size; |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
434 time_t date; |
945
fd84847c8231
speed-up of directory notification on deleting large number of files
nadvornik
parents:
933
diff
changeset
|
435 mode_t mode; /* this is needed at least for notification in view_dir because it is preserved after the file/directory is deleted */ |
1227 | 436 |
437 guint marks; /* each bit represents one mark */ | |
438 guint valid_marks; /* zero bit means that the corresponding mark needs to be reread */ | |
439 | |
440 | |
137
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
441 GList *sidecar_files; |
141 | 442 FileData *parent; /* parent file if this is a sidecar file, NULL otherwise */ |
138 | 443 FileDataChangeInfo *change; /* for rename, move ... */ |
845 | 444 GdkPixbuf *thumb_pixbuf; |
846 | 445 |
849
db68d673448f
added possibility to disable grouping of selected files
nadvornik
parents:
846
diff
changeset
|
446 GdkPixbuf *pixbuf; /* full-size image, only complete images, NULL during loading |
995 | 447 all FileData with non-NULL pixbuf are referenced by image_cache */ |
846 | 448 |
138 | 449 gint ref; |
763
81f9e8dbb4bf
improved infrastructure for tracing changes, optimized vflist_populate_view
nadvornik
parents:
753
diff
changeset
|
450 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
|
451 gint disable_grouping; |
db68d673448f
added possibility to disable grouping of selected files
nadvornik
parents:
846
diff
changeset
|
452 |
434
1b0aee2b162e
Keep image orientation set by the user during the session.
zas_
parents:
433
diff
changeset
|
453 gint user_orientation; |
439 | 454 gint exif_orientation; |
844 | 455 |
456 ExifData *exif; | |
1203
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1167
diff
changeset
|
457 GHashTable *modified_xmp; // hash table which contains unwritten xmp metadata in format: key->list of string values |
9 | 458 }; |
459 | |
460 struct _LayoutWindow | |
461 { | |
783 | 462 FileData *dir_fd; |
9 | 463 |
464 /* base */ | |
465 | |
466 GtkWidget *window; | |
467 | |
468 GtkWidget *main_box; | |
469 | |
470 GtkWidget *group_box; | |
471 GtkWidget *h_pane; | |
472 GtkWidget *v_pane; | |
473 | |
474 /* menus, path selector */ | |
475 | |
476 GtkActionGroup *action_group; | |
1279
6248faa9e829
do not translate already translated texts from desktop files
nadvornik
parents:
1277
diff
changeset
|
477 GtkActionGroup *action_group_external; |
9 | 478 GtkUIManager *ui_manager; |
479 | |
480 GtkWidget *path_entry; | |
481 | |
482 /* image */ | |
483 | |
484 LayoutLocation image_location; | |
485 | |
486 ImageWindow *image; | |
487 | |
127 | 488 ImageWindow *split_images[MAX_SPLIT_IMAGES]; |
442 | 489 ImageSplitMode split_mode; |
127 | 490 gint active_split_image; |
491 | |
442 | 492 GtkWidget *split_image_widget; |
837
f8c22438376c
use GtkSizeGroup to control initial size of split images
nadvornik
parents:
812
diff
changeset
|
493 GtkSizeGroup *split_image_sizegroup; |
442 | 494 |
9 | 495 /* tools window (float) */ |
496 | |
497 GtkWidget *tools; | |
498 GtkWidget *tools_pane; | |
499 | |
500 gint tools_float; | |
501 gint tools_hidden; | |
502 | |
503 /* toolbar */ | |
504 | |
505 GtkWidget *toolbar; | |
506 gint toolbar_hidden; | |
507 | |
508 GtkWidget *thumb_button; | |
509 gint thumbs_enabled; | |
137
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
510 gint marks_enabled; |
442 | 511 |
1167
e812b1a7adda
Add a back button in the toolbar: it allows to go back and forth between two directories. Experimental, please test and comment on ml.
zas_
parents:
1055
diff
changeset
|
512 GtkWidget *back_button; |
e812b1a7adda
Add a back button in the toolbar: it allows to go back and forth between two directories. Experimental, please test and comment on ml.
zas_
parents:
1055
diff
changeset
|
513 |
9 | 514 /* dir view */ |
515 | |
516 LayoutLocation dir_location; | |
517 | |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
518 ViewDir *vd; |
9 | 519 GtkWidget *dir_view; |
520 | |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
521 DirViewType dir_view_type; |
9 | 522 |
523 /* file view */ | |
524 | |
525 LayoutLocation file_location; | |
526 | |
554
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
527 ViewFile *vf; |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
528 FileViewType file_view_type; |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
529 |
9 | 530 GtkWidget *file_view; |
531 | |
532 SortType sort_method; | |
533 gint sort_ascend; | |
534 | |
535 /* status bar */ | |
536 | |
537 GtkWidget *info_box; | |
538 GtkWidget *info_progress_bar; | |
539 GtkWidget *info_sort; | |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
540 GtkWidget *info_color; |
9 | 541 GtkWidget *info_status; |
542 GtkWidget *info_details; | |
543 GtkWidget *info_zoom; | |
1240
30e207ac22e4
added a status bar button for writting metadata immediately
nadvornik
parents:
1231
diff
changeset
|
544 GtkWidget *info_write; |
9 | 545 |
546 /* slide show */ | |
547 | |
548 SlideShowData *slideshow; | |
549 | |
550 /* full screen */ | |
551 | |
552 FullScreenData *full_screen; | |
553 | |
554 /* dividers */ | |
555 | |
556 gint div_h; | |
557 gint div_v; | |
558 gint div_float; | |
559 | |
560 /* misc */ | |
561 | |
562 GtkWidget *utility_box; | |
563 GtkWidget *bar_sort; | |
564 GtkWidget *bar_exif; | |
565 GtkWidget *bar_info; | |
566 | |
567 gint bar_sort_enabled; | |
568 gint bar_exif_enabled; | |
569 gint bar_info_enabled; | |
570 | |
489
3809ffa3567b
Save state and width of exif, info and sort panels to rc file.
zas_
parents:
480
diff
changeset
|
571 gint bar_exif_width; |
9 | 572 gint bar_exif_advanced; |
489
3809ffa3567b
Save state and width of exif, info and sort panels to rc file.
zas_
parents:
480
diff
changeset
|
573 gint bar_info_width; |
9 | 574 }; |
575 | |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
576 struct _ViewDir |
9 | 577 { |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
578 DirViewType type; |
384
392dd6541d51
Merge parts of view_dir_list/tree constructors/destructors to
zas_
parents:
380
diff
changeset
|
579 gpointer info; |
392dd6541d51
Merge parts of view_dir_list/tree constructors/destructors to
zas_
parents:
380
diff
changeset
|
580 |
9 | 581 GtkWidget *widget; |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
582 GtkWidget *view; |
9 | 583 |
783 | 584 FileData *dir_fd; |
9 | 585 |
586 FileData *click_fd; | |
587 | |
588 FileData *drop_fd; | |
589 GList *drop_list; | |
590 gint drop_scroll_id; | |
591 | |
592 /* func list */ | |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
593 void (*select_func)(ViewDir *vd, const gchar *path, gpointer data); |
9 | 594 gpointer select_data; |
595 | |
407 | 596 void (*dnd_drop_update_func)(ViewDir *vd); |
597 void (*dnd_drop_leave_func)(ViewDir *vd); | |
442 | 598 |
9 | 599 LayoutWindow *layout; |
600 | |
601 GtkWidget *popup; | |
602 | |
603 PixmapFolders *pf; | |
380
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 |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
606 struct _ViewDirInfoList |
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 GList *list; |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
609 }; |
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 struct _ViewDirInfoTree |
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 gint drop_expand_id; |
9 | 614 gint busy_ref; |
615 }; | |
616 | |
554
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
617 |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
618 struct _ViewFile |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
619 { |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
620 FileViewType type; |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
621 gpointer info; |
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 GtkWidget *widget; |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
624 GtkWidget *listview; |
964 | 625 GtkWidget *scrolled; |
626 GtkWidget *filter; | |
627 GtkWidget *filter_check[FILEDATA_MARKS_SIZE]; | |
554
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 #endif |
1055
1646720364cf
Adding a vim modeline to all files - patch by Klaus Ethgen
nadvornik
parents:
1047
diff
changeset
|
757 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */ |