Mercurial > geeqie.yaz
annotate src/typedefs.h @ 1431:7e180091e0b7
More gboolean and tidy up.
author | zas_ |
---|---|
date | Sat, 14 Mar 2009 11:26:43 +0000 |
parents | 5a534e1501e1 |
children | cf4029d10d38 |
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 |
1284 | 4 * Copyright (C) 2008 - 2009 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 |
1288 | 167 typedef enum { |
168 METADATA_PLAIN = 0, /* format that can be edited and written back */ | |
169 METADATA_FORMATTED = 1 /* for display only */ | |
170 } MetadataFormat; | |
171 | |
172 | |
127 | 173 #define MAX_SPLIT_IMAGES 4 |
174 | |
9 | 175 typedef struct _ImageLoader ImageLoader; |
176 typedef struct _ThumbLoader ThumbLoader; | |
177 | |
178 typedef struct _CollectInfo CollectInfo; | |
179 typedef struct _CollectionData CollectionData; | |
180 typedef struct _CollectTable CollectTable; | |
181 typedef struct _CollectWindow CollectWindow; | |
182 | |
183 typedef struct _ImageWindow ImageWindow; | |
184 | |
185 typedef struct _FileData FileData; | |
138 | 186 typedef struct _FileDataChangeInfo FileDataChangeInfo; |
9 | 187 |
188 typedef struct _LayoutWindow LayoutWindow; | |
1309 | 189 typedef struct _LayoutOptions LayoutOptions; |
554
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
190 |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
191 typedef struct _ViewDir ViewDir; |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
192 typedef struct _ViewDirInfoList ViewDirInfoList; |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
193 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
|
194 |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
195 typedef struct _ViewFile ViewFile; |
557
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
196 typedef struct _ViewFileInfoList ViewFileInfoList; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
197 typedef struct _ViewFileInfoIcon ViewFileInfoIcon; |
9 | 198 |
199 typedef struct _SlideShowData SlideShowData; | |
200 typedef struct _FullScreenData FullScreenData; | |
201 | |
202 typedef struct _PixmapFolders PixmapFolders; | |
273
e0e2c2b72c5a
reworked the histogram patch by Uwe Ohse, most of the code is in
nadvornik
parents:
212
diff
changeset
|
203 typedef struct _Histogram Histogram; |
1294 | 204 typedef struct _HistMap HistMap; |
273
e0e2c2b72c5a
reworked the histogram patch by Uwe Ohse, most of the code is in
nadvornik
parents:
212
diff
changeset
|
205 |
276 | 206 typedef struct _SecureSaveInfo SecureSaveInfo; |
9 | 207 |
844 | 208 typedef struct _ExifData ExifData; |
209 | |
1272 | 210 typedef struct _EditorDescription EditorDescription; |
211 | |
1313 | 212 typedef struct _CommandLine CommandLine; |
213 | |
1329
1fc356f629fe
Clean up histogram stuff: options saving/restoring, osd histogram separation, tidy up.
zas_
parents:
1320
diff
changeset
|
214 struct _Histogram { |
1fc356f629fe
Clean up histogram stuff: options saving/restoring, osd histogram separation, tidy up.
zas_
parents:
1320
diff
changeset
|
215 gint histogram_channel; /* drawing mode for histogram */ |
1fc356f629fe
Clean up histogram stuff: options saving/restoring, osd histogram separation, tidy up.
zas_
parents:
1320
diff
changeset
|
216 gint histogram_mode; /* logarithmical or not */ |
1fc356f629fe
Clean up histogram stuff: options saving/restoring, osd histogram separation, tidy up.
zas_
parents:
1320
diff
changeset
|
217 guint vgrid; /* number of vertical divisions, 0 for none */ |
1fc356f629fe
Clean up histogram stuff: options saving/restoring, osd histogram separation, tidy up.
zas_
parents:
1320
diff
changeset
|
218 guint hgrid; /* number of horizontal divisions, 0 for none */ |
1fc356f629fe
Clean up histogram stuff: options saving/restoring, osd histogram separation, tidy up.
zas_
parents:
1320
diff
changeset
|
219 struct { |
1fc356f629fe
Clean up histogram stuff: options saving/restoring, osd histogram separation, tidy up.
zas_
parents:
1320
diff
changeset
|
220 int R; /* red */ |
1fc356f629fe
Clean up histogram stuff: options saving/restoring, osd histogram separation, tidy up.
zas_
parents:
1320
diff
changeset
|
221 int G; /* green */ |
1fc356f629fe
Clean up histogram stuff: options saving/restoring, osd histogram separation, tidy up.
zas_
parents:
1320
diff
changeset
|
222 int B; /* blue */ |
1fc356f629fe
Clean up histogram stuff: options saving/restoring, osd histogram separation, tidy up.
zas_
parents:
1320
diff
changeset
|
223 int A; /* alpha */ |
1fc356f629fe
Clean up histogram stuff: options saving/restoring, osd histogram separation, tidy up.
zas_
parents:
1320
diff
changeset
|
224 } grid_color; /* grid color */ |
1fc356f629fe
Clean up histogram stuff: options saving/restoring, osd histogram separation, tidy up.
zas_
parents:
1320
diff
changeset
|
225 |
1fc356f629fe
Clean up histogram stuff: options saving/restoring, osd histogram separation, tidy up.
zas_
parents:
1320
diff
changeset
|
226 }; |
1fc356f629fe
Clean up histogram stuff: options saving/restoring, osd histogram separation, tidy up.
zas_
parents:
1320
diff
changeset
|
227 |
1fc356f629fe
Clean up histogram stuff: options saving/restoring, osd histogram separation, tidy up.
zas_
parents:
1320
diff
changeset
|
228 |
1272 | 229 |
1012
fe82830ab8fd
converted image loader to a GObject and use signals for notification
nadvornik
parents:
1008
diff
changeset
|
230 struct _ImageLoader; |
9 | 231 |
232 typedef void (* ThumbLoaderFunc)(ThumbLoader *tl, gpointer data); | |
233 | |
1231 | 234 typedef void (* FileUtilDoneFunc)(gboolean success, const gchar *done_path, gpointer data); |
235 | |
9 | 236 struct _ThumbLoader |
237 { | |
238 gint standard_loader; | |
239 | |
240 ImageLoader *il; | |
838 | 241 FileData *fd; /* fd->pixbuf contains final (scaled) image when done */ |
9 | 242 |
243 gint cache_enable; | |
244 gint cache_hit; | |
245 gdouble percent_done; | |
246 | |
247 gint max_w; | |
248 gint max_h; | |
249 | |
250 ThumbLoaderFunc func_done; | |
251 ThumbLoaderFunc func_error; | |
252 ThumbLoaderFunc func_progress; | |
253 | |
254 gpointer data; | |
255 | |
256 gint idle_done_id; | |
257 }; | |
258 | |
259 struct _CollectInfo | |
260 { | |
138 | 261 FileData *fd; |
9 | 262 GdkPixbuf *pixbuf; |
736 | 263 guint flag_mask; |
9 | 264 }; |
265 | |
266 struct _CollectionData | |
267 { | |
268 gchar *path; | |
269 gchar *name; | |
270 GList *list; | |
271 SortType sort_method; | |
272 | |
273 ThumbLoader *thumb_loader; | |
274 CollectInfo *thumb_info; | |
275 | |
276 void (*info_updated_func)(CollectionData *, CollectInfo *, gpointer); | |
277 gpointer info_updated_data; | |
278 | |
279 gint ref; | |
280 | |
281 /* geometry */ | |
282 gint window_read; | |
283 gint window_x; | |
284 gint window_y; | |
285 gint window_w; | |
286 gint window_h; | |
287 | |
288 /* contents changed since save flag */ | |
289 gint changed; | |
303
6ff0bc50ac46
Prevent multiple insertion of the same file in a collection.
zas_
parents:
290
diff
changeset
|
290 |
6ff0bc50ac46
Prevent multiple insertion of the same file in a collection.
zas_
parents:
290
diff
changeset
|
291 GHashTable *existence; |
9 | 292 }; |
293 | |
294 struct _CollectTable | |
295 { | |
296 GtkWidget *scrolled; | |
297 GtkWidget *listview; | |
298 gint columns; | |
299 gint rows; | |
300 | |
301 CollectionData *cd; | |
302 | |
303 GList *selection; | |
304 CollectInfo *prev_selection; | |
305 | |
306 CollectInfo *click_info; | |
307 | |
308 GtkWidget *tip_window; | |
309 gint tip_delay_id; | |
310 CollectInfo *tip_info; | |
311 | |
312 GdkWindow *marker_window; | |
313 CollectInfo *marker_info; | |
314 | |
315 GtkWidget *status_label; | |
316 GtkWidget *extra_label; | |
317 | |
318 gint focus_row; | |
319 gint focus_column; | |
320 CollectInfo *focus_info; | |
321 | |
322 GtkWidget *popup; | |
323 CollectInfo *drop_info; | |
324 GList *drop_list; | |
325 | |
326 gint sync_idle_id; | |
327 gint drop_idle_id; | |
328 | |
329 gint show_text; | |
1397
a0bd58a6535f
In various Edit context menus, only display editors that match the file types in the selection.
zas_
parents:
1383
diff
changeset
|
330 |
a0bd58a6535f
In various Edit context menus, only display editors that match the file types in the selection.
zas_
parents:
1383
diff
changeset
|
331 /* file list for edit menu */ |
a0bd58a6535f
In various Edit context menus, only display editors that match the file types in the selection.
zas_
parents:
1383
diff
changeset
|
332 GList *editmenu_fd_list; |
9 | 333 }; |
334 | |
335 struct _CollectWindow | |
336 { | |
337 GtkWidget *window; | |
338 CollectTable *table; | |
339 GtkWidget *status_box; | |
340 GList *list; | |
341 | |
342 GtkWidget *close_dialog; | |
343 | |
344 CollectionData *cd; | |
345 }; | |
346 | |
12
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
347 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
|
348 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
|
349 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
|
350 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
|
351 |
9 | 352 struct _ImageWindow |
353 { | |
354 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
|
355 GtkWidget *pr; |
17acca639a86
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
14
diff
changeset
|
356 GtkWidget *frame; |
9 | 357 |
138 | 358 FileData *image_fd; |
9 | 359 |
1431 | 360 gboolean unknown; /* failed to load image */ |
9 | 361 |
846 | 362 ImageLoader *il; /* FIXME - image loader should probably go to FileData, but it must first support |
995 | 363 sending callbacks to multiple ImageWindows in parallel */ |
9 | 364 |
1431 | 365 gint has_frame; /* not boolean, see image_new() */ |
9 | 366 |
367 /* top level (not necessarily parent) window */ | |
1431 | 368 gboolean top_window_sync; /* resize top_window when image dimensions change */ |
9 | 369 GtkWidget *top_window; /* window that gets title, and window to resize when 'fitting' */ |
370 gchar *title; /* window title to display left of file name */ | |
371 gchar *title_right; /* window title to display right of file name */ | |
1431 | 372 gboolean title_show_zoom; /* option to include zoom in window title */ |
9 | 373 |
1431 | 374 gboolean completed; |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
375 ImageState state; /* mask of IMAGE_STATE_* flags about current image */ |
9 | 376 |
117
0c2e1f0a001b
Wed Nov 29 14:28:30 2006 John Ellis <johne@verizon.net>
gqview
parents:
115
diff
changeset
|
377 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
|
378 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
|
379 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
|
380 ImageTileRequestFunc func_tile_request; |
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
381 ImageTileDisposeFunc func_tile_dispose; |
9 | 382 |
383 gpointer data_update; | |
384 gpointer data_complete; | |
117
0c2e1f0a001b
Wed Nov 29 14:28:30 2006 John Ellis <johne@verizon.net>
gqview
parents:
115
diff
changeset
|
385 gpointer data_state; |
12
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
386 gpointer data_tile; |
9 | 387 |
388 /* button, scroll functions */ | |
868
db6977f8b0f1
Reduce number of parameters (mostly unused), just pass the event pointer.
zas_
parents:
849
diff
changeset
|
389 void (*func_button)(ImageWindow *, GdkEventButton *event, gpointer); |
db6977f8b0f1
Reduce number of parameters (mostly unused), just pass the event pointer.
zas_
parents:
849
diff
changeset
|
390 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
|
391 void (*func_scroll)(ImageWindow *, GdkEventScroll *event, gpointer); |
9 | 392 |
393 gpointer data_button; | |
128
98e2632b5d3d
improved connected scroll and active image switching
nadvornik
parents:
127
diff
changeset
|
394 gpointer data_drag; |
9 | 395 gpointer data_scroll; |
396 | |
12
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
397 /* 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
|
398 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
|
399 |
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
400 gpointer data_scroll_notify; |
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
401 |
9 | 402 /* collection info */ |
403 CollectionData *collection; | |
404 CollectInfo *collection_info; | |
405 | |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
406 /* color profiles */ |
1431 | 407 gboolean color_profile_enable; |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
408 gint color_profile_input; |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
409 gint color_profile_screen; |
1431 | 410 gboolean color_profile_use_image; |
426
9fe0ca1b5263
show the AdobeRGB profile in the menu, indicate input profile from image
nadvornik
parents:
415
diff
changeset
|
411 gint color_profile_from_image; |
115
53b2bfdcff69
Tue Nov 28 11:54:30 2006 John Ellis <johne@verizon.net>
gqview
parents:
113
diff
changeset
|
412 gpointer cm; |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
413 |
9 | 414 AlterType delay_alter_type; |
415 | |
846 | 416 FileData *read_ahead_fd; |
9 | 417 ImageLoader *read_ahead_il; |
418 | |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
419 gint prev_color_row; |
9 | 420 |
1431 | 421 gboolean auto_refresh; |
9 | 422 |
1431 | 423 gboolean delay_flip; |
398
c4080362d619
image post-processing (rotation and color management) moved to
nadvornik
parents:
384
diff
changeset
|
424 gint orientation; |
1431 | 425 gboolean desaturate; |
415 | 426 |
1431 | 427 gboolean overlay_show_zoom; /* set to true if overlay is showing zoom ratio */ |
9 | 428 }; |
429 | |
149 | 430 #define FILEDATA_MARKS_SIZE 6 |
132 | 431 |
138 | 432 struct _FileDataChangeInfo { |
143
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
433 FileDataChangeType type; |
138 | 434 gchar *source; |
435 gchar *dest; | |
914
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
888
diff
changeset
|
436 gint error; |
138 | 437 }; |
137
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
438 |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
439 struct _FileData { |
138 | 440 gint magick; |
137
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
441 gint type; |
138 | 442 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
|
443 gchar *path; |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
444 const gchar *name; |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
445 const gchar *extension; |
785 | 446 gchar *collate_key_name; |
447 gchar *collate_key_name_nocase; | |
137
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
448 gint64 size; |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
449 time_t date; |
945
fd84847c8231
speed-up of directory notification on deleting large number of files
nadvornik
parents:
933
diff
changeset
|
450 mode_t mode; /* this is needed at least for notification in view_dir because it is preserved after the file/directory is deleted */ |
1227 | 451 |
452 guint marks; /* each bit represents one mark */ | |
453 guint valid_marks; /* zero bit means that the corresponding mark needs to be reread */ | |
454 | |
455 | |
137
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
456 GList *sidecar_files; |
141 | 457 FileData *parent; /* parent file if this is a sidecar file, NULL otherwise */ |
138 | 458 FileDataChangeInfo *change; /* for rename, move ... */ |
845 | 459 GdkPixbuf *thumb_pixbuf; |
846 | 460 |
849
db68d673448f
added possibility to disable grouping of selected files
nadvornik
parents:
846
diff
changeset
|
461 GdkPixbuf *pixbuf; /* full-size image, only complete images, NULL during loading |
995 | 462 all FileData with non-NULL pixbuf are referenced by image_cache */ |
1294 | 463 |
464 HistMap *histmap; | |
846 | 465 |
138 | 466 gint ref; |
763
81f9e8dbb4bf
improved infrastructure for tracing changes, optimized vflist_populate_view
nadvornik
parents:
753
diff
changeset
|
467 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
|
468 gint disable_grouping; |
db68d673448f
added possibility to disable grouping of selected files
nadvornik
parents:
846
diff
changeset
|
469 |
434
1b0aee2b162e
Keep image orientation set by the user during the session.
zas_
parents:
433
diff
changeset
|
470 gint user_orientation; |
439 | 471 gint exif_orientation; |
844 | 472 |
473 ExifData *exif; | |
1203
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1167
diff
changeset
|
474 GHashTable *modified_xmp; // hash table which contains unwritten xmp metadata in format: key->list of string values |
9 | 475 }; |
476 | |
1309 | 477 struct _LayoutOptions |
478 { | |
479 gchar *order; | |
480 gint style; | |
481 | |
482 DirViewType dir_view_type; | |
483 FileViewType file_view_type; | |
484 | |
485 gboolean show_thumbnails; | |
486 gboolean show_marks; | |
487 gboolean show_directory_date; | |
488 | |
489 struct { | |
490 gint w; | |
491 gint h; | |
492 gint x; | |
493 gint y; | |
494 gboolean maximized; | |
495 gint hdivider_pos; | |
496 gint vdivider_pos; | |
497 } main_window; | |
498 | |
499 struct { | |
500 gint w; | |
501 gint h; | |
502 gint x; | |
503 gint y; | |
504 gint vdivider_pos; | |
505 } float_window; | |
506 | |
507 struct { | |
508 gint w; | |
509 gint h; | |
510 } properties_window; | |
511 | |
1336 | 512 struct { |
513 guint state; | |
514 gint histogram_channel; | |
515 gint histogram_mode; | |
516 } image_overlay; | |
517 | |
1309 | 518 gboolean save_window_positions; |
519 | |
520 gboolean tools_float; | |
521 gboolean tools_hidden; | |
522 gboolean tools_restore_state; | |
523 | |
524 gboolean toolbar_hidden; | |
1375
df58e511d90e
Display pixel coordinates and rgb - patch by Ruben Stein
nadvornik
parents:
1336
diff
changeset
|
525 gboolean info_pixel_hidden; |
df58e511d90e
Display pixel coordinates and rgb - patch by Ruben Stein
nadvornik
parents:
1336
diff
changeset
|
526 |
1309 | 527 gchar *home_path; |
528 }; | |
529 | |
9 | 530 struct _LayoutWindow |
531 { | |
1309 | 532 LayoutOptions options; |
533 | |
783 | 534 FileData *dir_fd; |
9 | 535 |
536 /* base */ | |
537 | |
538 GtkWidget *window; | |
539 | |
540 GtkWidget *main_box; | |
541 | |
542 GtkWidget *group_box; | |
543 GtkWidget *h_pane; | |
544 GtkWidget *v_pane; | |
545 | |
546 /* menus, path selector */ | |
547 | |
548 GtkActionGroup *action_group; | |
1279
6248faa9e829
do not translate already translated texts from desktop files
nadvornik
parents:
1277
diff
changeset
|
549 GtkActionGroup *action_group_external; |
9 | 550 GtkUIManager *ui_manager; |
1335 | 551 guint toolbar_merge_id; |
552 GList *toolbar_actions; | |
9 | 553 |
554 GtkWidget *path_entry; | |
555 | |
556 /* image */ | |
557 | |
558 LayoutLocation image_location; | |
559 | |
560 ImageWindow *image; | |
561 | |
127 | 562 ImageWindow *split_images[MAX_SPLIT_IMAGES]; |
442 | 563 ImageSplitMode split_mode; |
127 | 564 gint active_split_image; |
565 | |
442 | 566 GtkWidget *split_image_widget; |
837
f8c22438376c
use GtkSizeGroup to control initial size of split images
nadvornik
parents:
812
diff
changeset
|
567 GtkSizeGroup *split_image_sizegroup; |
442 | 568 |
9 | 569 /* tools window (float) */ |
570 | |
571 GtkWidget *tools; | |
572 GtkWidget *tools_pane; | |
573 | |
1309 | 574 // gint tools_float; |
575 // gint tools_hidden; | |
9 | 576 |
577 /* toolbar */ | |
578 | |
579 GtkWidget *toolbar; | |
1309 | 580 // gint toolbar_hidden; |
9 | 581 |
1334 | 582 // GtkWidget *thumb_button; |
1309 | 583 // gint thumbs_enabled; |
584 // gint marks_enabled; | |
442 | 585 |
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
|
586 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
|
587 |
9 | 588 /* dir view */ |
589 | |
590 LayoutLocation dir_location; | |
591 | |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
592 ViewDir *vd; |
9 | 593 GtkWidget *dir_view; |
594 | |
1309 | 595 // DirViewType dir_view_type; |
9 | 596 |
597 /* file view */ | |
598 | |
599 LayoutLocation file_location; | |
600 | |
554
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
601 ViewFile *vf; |
1412 | 602 // FileViewType file_view_type; |
554
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
603 |
9 | 604 GtkWidget *file_view; |
605 | |
606 SortType sort_method; | |
607 gint sort_ascend; | |
608 | |
609 /* status bar */ | |
610 | |
611 GtkWidget *info_box; | |
612 GtkWidget *info_progress_bar; | |
613 GtkWidget *info_sort; | |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
614 GtkWidget *info_color; |
9 | 615 GtkWidget *info_status; |
616 GtkWidget *info_details; | |
617 GtkWidget *info_zoom; | |
1240
30e207ac22e4
added a status bar button for writting metadata immediately
nadvornik
parents:
1231
diff
changeset
|
618 GtkWidget *info_write; |
1375
df58e511d90e
Display pixel coordinates and rgb - patch by Ruben Stein
nadvornik
parents:
1336
diff
changeset
|
619 GtkWidget *info_pixel; |
df58e511d90e
Display pixel coordinates and rgb - patch by Ruben Stein
nadvornik
parents:
1336
diff
changeset
|
620 |
9 | 621 /* slide show */ |
622 | |
623 SlideShowData *slideshow; | |
624 | |
625 /* full screen */ | |
626 | |
627 FullScreenData *full_screen; | |
628 | |
629 /* dividers */ | |
630 | |
1309 | 631 // gint div_h; |
632 // gint div_v; | |
633 // gint div_float; | |
9 | 634 |
635 /* misc */ | |
636 | |
637 GtkWidget *utility_box; | |
1383 | 638 GtkWidget *utility_paned; /* between image and bar */ |
9 | 639 GtkWidget *bar_sort; |
1291
50ae02a4a675
replaced bar_info with an universal bar, restored the original
nadvornik
parents:
1288
diff
changeset
|
640 GtkWidget *bar; |
9 | 641 |
1309 | 642 // gint bar_sort_enabled; |
643 // gint bar_enabled; | |
9 | 644 |
1309 | 645 // gint bar_width; |
1293
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
1291
diff
changeset
|
646 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
1291
diff
changeset
|
647 GtkWidget *exif_window; |
1397
a0bd58a6535f
In various Edit context menus, only display editors that match the file types in the selection.
zas_
parents:
1383
diff
changeset
|
648 |
a0bd58a6535f
In various Edit context menus, only display editors that match the file types in the selection.
zas_
parents:
1383
diff
changeset
|
649 /* file list for edit menu */ |
a0bd58a6535f
In various Edit context menus, only display editors that match the file types in the selection.
zas_
parents:
1383
diff
changeset
|
650 GList *editmenu_fd_list; |
9 | 651 }; |
652 | |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
653 struct _ViewDir |
9 | 654 { |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
655 DirViewType type; |
384
392dd6541d51
Merge parts of view_dir_list/tree constructors/destructors to
zas_
parents:
380
diff
changeset
|
656 gpointer info; |
392dd6541d51
Merge parts of view_dir_list/tree constructors/destructors to
zas_
parents:
380
diff
changeset
|
657 |
9 | 658 GtkWidget *widget; |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
659 GtkWidget *view; |
9 | 660 |
783 | 661 FileData *dir_fd; |
9 | 662 |
663 FileData *click_fd; | |
664 | |
665 FileData *drop_fd; | |
666 GList *drop_list; | |
667 gint drop_scroll_id; | |
668 | |
669 /* func list */ | |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
670 void (*select_func)(ViewDir *vd, const gchar *path, gpointer data); |
9 | 671 gpointer select_data; |
672 | |
407 | 673 void (*dnd_drop_update_func)(ViewDir *vd); |
674 void (*dnd_drop_leave_func)(ViewDir *vd); | |
442 | 675 |
9 | 676 LayoutWindow *layout; |
677 | |
678 GtkWidget *popup; | |
679 | |
680 PixmapFolders *pf; | |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
681 }; |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
682 |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
683 struct _ViewDirInfoList |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
684 { |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
685 GList *list; |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
686 }; |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
687 |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
688 struct _ViewDirInfoTree |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
689 { |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
690 gint drop_expand_id; |
9 | 691 gint busy_ref; |
692 }; | |
693 | |
554
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
694 |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
695 struct _ViewFile |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
696 { |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
697 FileViewType type; |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
698 gpointer info; |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
699 |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
700 GtkWidget *widget; |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
701 GtkWidget *listview; |
964 | 702 GtkWidget *scrolled; |
703 GtkWidget *filter; | |
704 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
|
705 |
783 | 706 FileData *dir_fd; |
554
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
707 GList *list; |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
708 |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
709 SortType sort_method; |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
710 gint sort_ascend; |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
711 |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
712 /* func list */ |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
713 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
|
714 gpointer data_thumb_status; |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
715 |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
716 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
|
717 gpointer data_status; |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
718 |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
719 LayoutWindow *layout; |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
720 |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
721 GtkWidget *popup; |
563
1ad894219964
Move common thumbs_* fields from _ViewFileInfoIcon and _ViewFileInfoList
zas_
parents:
562
diff
changeset
|
722 |
1ad894219964
Move common thumbs_* fields from _ViewFileInfoIcon and _ViewFileInfoList
zas_
parents:
562
diff
changeset
|
723 /* thumbs updates*/ |
1ad894219964
Move common thumbs_* fields from _ViewFileInfoIcon and _ViewFileInfoList
zas_
parents:
562
diff
changeset
|
724 gint thumbs_running; |
1ad894219964
Move common thumbs_* fields from _ViewFileInfoIcon and _ViewFileInfoList
zas_
parents:
562
diff
changeset
|
725 ThumbLoader *thumbs_loader; |
1ad894219964
Move common thumbs_* fields from _ViewFileInfoIcon and _ViewFileInfoList
zas_
parents:
562
diff
changeset
|
726 FileData *thumbs_filedata; |
564
514a4525d651
Move marks-related fields from _ViewFileInfoList to _ViewFile, since
zas_
parents:
563
diff
changeset
|
727 |
514a4525d651
Move marks-related fields from _ViewFileInfoList to _ViewFile, since
zas_
parents:
563
diff
changeset
|
728 /* marks */ |
514a4525d651
Move marks-related fields from _ViewFileInfoList to _ViewFile, since
zas_
parents:
563
diff
changeset
|
729 gint marks_enabled; |
514a4525d651
Move marks-related fields from _ViewFileInfoList to _ViewFile, since
zas_
parents:
563
diff
changeset
|
730 gint active_mark; |
654
6dcfac4b356f
Get rid of vflist_pop_menu() col_idx parameter, use new Viewfile field
zas_
parents:
616
diff
changeset
|
731 gint clicked_mark; |
772
f53c2bb5b1b1
replaced vflist_maint functions by vflist_refresh - it allows to follow
nadvornik
parents:
763
diff
changeset
|
732 |
f53c2bb5b1b1
replaced vflist_maint functions by vflist_refresh - it allows to follow
nadvornik
parents:
763
diff
changeset
|
733 /* refresh */ |
812 | 734 gint refresh_idle_id; |
1397
a0bd58a6535f
In various Edit context menus, only display editors that match the file types in the selection.
zas_
parents:
1383
diff
changeset
|
735 |
a0bd58a6535f
In various Edit context menus, only display editors that match the file types in the selection.
zas_
parents:
1383
diff
changeset
|
736 /* file list for edit menu */ |
a0bd58a6535f
In various Edit context menus, only display editors that match the file types in the selection.
zas_
parents:
1383
diff
changeset
|
737 GList *editmenu_fd_list; |
554
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
738 }; |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
739 |
557
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
740 struct _ViewFileInfoList |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
741 { |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
742 FileData *click_fd; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
743 FileData *select_fd; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
744 |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
745 gint thumbs_enabled; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
746 |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
747 gint select_idle_id; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
748 }; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
749 |
138 | 750 struct _IconData; |
751 | |
557
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
752 struct _ViewFileInfoIcon |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
753 { |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
754 /* table stuff */ |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
755 gint columns; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
756 gint rows; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
757 |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
758 GList *selection; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
759 struct _IconData *prev_selection; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
760 |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
761 GtkWidget *tip_window; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
762 gint tip_delay_id; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
763 struct _IconData *tip_id; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
764 |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
765 struct _IconData *click_id; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
766 |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
767 struct _IconData *focus_id; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
768 gint focus_row; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
769 gint focus_column; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
770 |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
771 gint show_text; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
772 }; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
773 |
9 | 774 struct _SlideShowData |
775 { | |
776 ImageWindow *imd; | |
777 | |
138 | 778 GList *filelist; |
9 | 779 CollectionData *cd; |
783 | 780 FileData *dir_fd; |
9 | 781 LayoutWindow *layout; |
782 | |
783 GList *list; | |
784 GList *list_done; | |
785 | |
138 | 786 FileData *slide_fd; |
9 | 787 |
736 | 788 guint slide_count; |
9 | 789 gint timeout_id; |
790 | |
791 gint from_selection; | |
792 | |
793 void (*stop_func)(SlideShowData *, gpointer); | |
794 gpointer stop_data; | |
795 | |
796 gint paused; | |
797 }; | |
798 | |
799 struct _FullScreenData | |
800 { | |
801 GtkWidget *window; | |
802 ImageWindow *imd; | |
803 | |
804 GtkWidget *normal_window; | |
805 ImageWindow *normal_imd; | |
806 | |
807 gint hide_mouse_id; | |
808 gint busy_mouse_id; | |
809 gint cursor_state; | |
810 | |
811 gint saver_block_id; | |
812 | |
813 void (*stop_func)(FullScreenData *, gpointer); | |
814 gpointer stop_data; | |
815 }; | |
816 | |
817 struct _PixmapFolders | |
818 { | |
819 GdkPixbuf *close; | |
820 GdkPixbuf *open; | |
821 GdkPixbuf *deny; | |
822 GdkPixbuf *parent; | |
823 }; | |
824 | |
276 | 825 struct _SecureSaveInfo { |
826 FILE *fp; /**< file stream pointer */ | |
827 gchar *file_name; /**< final file name */ | |
828 gchar *tmp_file_name; /**< temporary file name */ | |
829 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
|
830 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
|
831 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
|
832 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
|
833 gint unlink_on_error; /**< whether to remove temporary file on save failure, TRUE by default */ |
276 | 834 }; |
835 | |
1313 | 836 struct _CommandLine |
837 { | |
838 int argc; | |
839 gchar **argv; | |
840 gboolean startup_blank; | |
841 gboolean startup_full_screen; | |
842 gboolean startup_in_slideshow; | |
843 gboolean startup_command_line_collection; | |
844 gboolean tools_hide; | |
845 gboolean tools_show; | |
846 gchar *path; | |
847 gchar *file; | |
848 GList *cmd_list; | |
849 GList *collection_list; | |
850 gchar *geometry; | |
851 }; | |
852 | |
9 | 853 #endif |
1055
1646720364cf
Adding a vim modeline to all files - patch by Klaus Ethgen
nadvornik
parents:
1047
diff
changeset
|
854 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */ |