Mercurial > geeqie.yaz
annotate src/typedefs.h @ 487:d2a94917ee57
fixed version string ;)
author | nadvornik |
---|---|
date | Tue, 22 Apr 2008 18:06:38 +0000 |
parents | 805c3258d228 |
children | 3809ffa3567b |
rev | line source |
---|---|
9 | 1 /* |
196 | 2 * Geeqie |
115
53b2bfdcff69
Tue Nov 28 11:54:30 2006 John Ellis <johne@verizon.net>
gqview
parents:
113
diff
changeset
|
3 * (C) 2006 John Ellis |
475 | 4 * Copyright (C) 2008 The Geeqie Team |
9 | 5 * |
6 * Author: John Ellis | |
7 * | |
8 * This software is released under the GNU General Public License (GNU GPL). | |
9 * Please read the included file COPYING for more information. | |
10 * This software comes with no warranty of any kind, use at your own risk! | |
11 */ | |
12 | |
13 | |
14 #ifndef TYPEDEFS_H | |
15 #define TYPEDEFS_H | |
16 | |
134
9009856628f7
started implementation of external commands; external Delete should work
nadvornik
parents:
132
diff
changeset
|
17 typedef enum { |
448
a73cc0fa14d0
Use explicit names for mouse buttons instead of numbers.
zas_
parents:
446
diff
changeset
|
18 MOUSE_BUTTON_LEFT = 1, |
a73cc0fa14d0
Use explicit names for mouse buttons instead of numbers.
zas_
parents:
446
diff
changeset
|
19 MOUSE_BUTTON_MIDDLE = 2, |
a73cc0fa14d0
Use explicit names for mouse buttons instead of numbers.
zas_
parents:
446
diff
changeset
|
20 MOUSE_BUTTON_RIGHT = 3, |
a73cc0fa14d0
Use explicit names for mouse buttons instead of numbers.
zas_
parents:
446
diff
changeset
|
21 MOUSE_BUTTON_WHEEL_UP = 4, |
a73cc0fa14d0
Use explicit names for mouse buttons instead of numbers.
zas_
parents:
446
diff
changeset
|
22 MOUSE_BUTTON_WHEEL_DOWN = 5 |
a73cc0fa14d0
Use explicit names for mouse buttons instead of numbers.
zas_
parents:
446
diff
changeset
|
23 } MouseButton; |
a73cc0fa14d0
Use explicit names for mouse buttons instead of numbers.
zas_
parents:
446
diff
changeset
|
24 |
a73cc0fa14d0
Use explicit names for mouse buttons instead of numbers.
zas_
parents:
446
diff
changeset
|
25 typedef enum { |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
26 DIRVIEW_LIST, |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
27 DIRVIEW_TREE |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
28 } DirViewType; |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
29 |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
30 typedef enum { |
283 | 31 CMD_COPY = GQ_EDITOR_GENERIC_SLOTS, |
134
9009856628f7
started implementation of external commands; external Delete should work
nadvornik
parents:
132
diff
changeset
|
32 CMD_MOVE, |
9009856628f7
started implementation of external commands; external Delete should work
nadvornik
parents:
132
diff
changeset
|
33 CMD_RENAME, |
9009856628f7
started implementation of external commands; external Delete should work
nadvornik
parents:
132
diff
changeset
|
34 CMD_DELETE, |
9009856628f7
started implementation of external commands; external Delete should work
nadvornik
parents:
132
diff
changeset
|
35 CMD_FOLDER, |
283 | 36 GQ_EDITOR_SLOTS |
134
9009856628f7
started implementation of external commands; external Delete should work
nadvornik
parents:
132
diff
changeset
|
37 } SpecialEditor; |
9 | 38 |
39 typedef enum { | |
40 SORT_NONE, | |
41 SORT_NAME, | |
42 SORT_SIZE, | |
43 SORT_TIME, | |
44 SORT_PATH, | |
45 SORT_NUMBER | |
46 } SortType; | |
47 | |
48 typedef enum { | |
49 ALTER_NONE, /* do nothing */ | |
50 ALTER_ROTATE_90, | |
51 ALTER_ROTATE_90_CC, /* counterclockwise */ | |
52 ALTER_ROTATE_180, | |
53 ALTER_MIRROR, | |
82
a4c1b7014e6e
Thu Oct 19 15:20:51 2006 John Ellis <johne@verizon.net>
gqview
parents:
41
diff
changeset
|
54 ALTER_FLIP, |
a4c1b7014e6e
Thu Oct 19 15:20:51 2006 John Ellis <johne@verizon.net>
gqview
parents:
41
diff
changeset
|
55 ALTER_DESATURATE |
9 | 56 } AlterType; |
57 | |
58 typedef enum { | |
59 LAYOUT_HIDE = 0, | |
60 LAYOUT_LEFT = 1 << 0, | |
61 LAYOUT_RIGHT = 1 << 1, | |
62 LAYOUT_TOP = 1 << 2, | |
63 LAYOUT_BOTTOM = 1 << 3 | |
64 } LayoutLocation; | |
65 | |
66 | |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
67 typedef enum { |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
68 IMAGE_STATE_NONE = 0, |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
69 IMAGE_STATE_IMAGE = 1 << 0, |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
70 IMAGE_STATE_LOADING = 1 << 1, |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
71 IMAGE_STATE_ERROR = 1 << 2, |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
72 IMAGE_STATE_COLOR_ADJ = 1 << 3, |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
73 IMAGE_STATE_ROTATE_AUTO = 1 << 4, |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
74 IMAGE_STATE_ROTATE_USER = 1 << 5, |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
75 IMAGE_STATE_DELAY_FLIP = 1 << 6 |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
76 } ImageState; |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
77 |
127 | 78 typedef enum { |
79 SPLIT_NONE = 0, | |
80 SPLIT_VERT, | |
81 SPLIT_HOR, | |
82 SPLIT_QUAD, | |
83 } ImageSplitMode; | |
84 | |
143
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
85 typedef enum { |
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
86 FILEDATA_CHANGE_DELETE, |
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
87 FILEDATA_CHANGE_MOVE, |
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
88 FILEDATA_CHANGE_RENAME, |
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
89 FILEDATA_CHANGE_COPY |
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
90 } FileDataChangeType; |
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
91 |
161 | 92 typedef enum { |
93 MTS_MODE_MINUS, | |
94 MTS_MODE_SET, | |
95 MTS_MODE_OR, | |
96 MTS_MODE_AND | |
97 } MarkToSelectionMode; | |
98 | |
99 typedef enum { | |
100 STM_MODE_RESET, | |
101 STM_MODE_SET, | |
102 STM_MODE_TOGGLE | |
103 } SelectionToMarkMode; | |
104 | |
212
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
196
diff
changeset
|
105 typedef enum { |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
196
diff
changeset
|
106 FORMAT_CLASS_UNKNOWN, |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
196
diff
changeset
|
107 FORMAT_CLASS_IMAGE, |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
196
diff
changeset
|
108 FORMAT_CLASS_RAWIMAGE, |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
196
diff
changeset
|
109 FORMAT_CLASS_META, |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
196
diff
changeset
|
110 FILE_FORMAT_CLASSES |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
196
diff
changeset
|
111 } FileFormatClass; |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
196
diff
changeset
|
112 |
276 | 113 typedef enum { |
114 SS_ERR_NONE = 0, | |
115 SS_ERR_DISABLED, /**< secsave is disabled. */ | |
116 SS_ERR_OUT_OF_MEM, /**< memory allocation failure */ | |
117 | |
118 /* see err field in SecureSaveInfo */ | |
119 SS_ERR_OPEN_READ, | |
120 SS_ERR_OPEN_WRITE, | |
121 SS_ERR_STAT, | |
122 SS_ERR_ACCESS, | |
123 SS_ERR_MKSTEMP, | |
124 SS_ERR_RENAME, | |
125 SS_ERR_OTHER, | |
126 } SecureSaveErrno; | |
127 | |
143
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
128 |
127 | 129 #define MAX_SPLIT_IMAGES 4 |
130 | |
9 | 131 typedef struct _ImageLoader ImageLoader; |
132 typedef struct _ThumbLoader ThumbLoader; | |
133 | |
134 typedef struct _CollectInfo CollectInfo; | |
135 typedef struct _CollectionData CollectionData; | |
136 typedef struct _CollectTable CollectTable; | |
137 typedef struct _CollectWindow CollectWindow; | |
138 | |
139 typedef struct _ImageWindow ImageWindow; | |
140 | |
141 typedef struct _FileData FileData; | |
138 | 142 typedef struct _FileDataChangeInfo FileDataChangeInfo; |
9 | 143 |
144 typedef struct _LayoutWindow LayoutWindow; | |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
145 typedef struct _ViewDir ViewDir; |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
146 typedef struct _ViewDirInfoList ViewDirInfoList; |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
147 typedef struct _ViewDirInfoTree ViewDirInfoTree; |
9 | 148 typedef struct _ViewFileList ViewFileList; |
149 typedef struct _ViewFileIcon ViewFileIcon; | |
150 | |
151 typedef struct _SlideShowData SlideShowData; | |
152 typedef struct _FullScreenData FullScreenData; | |
153 | |
154 typedef struct _PixmapFolders PixmapFolders; | |
273
e0e2c2b72c5a
reworked the histogram patch by Uwe Ohse, most of the code is in
nadvornik
parents:
212
diff
changeset
|
155 typedef struct _Histogram Histogram; |
e0e2c2b72c5a
reworked the histogram patch by Uwe Ohse, most of the code is in
nadvornik
parents:
212
diff
changeset
|
156 |
276 | 157 typedef struct _SecureSaveInfo SecureSaveInfo; |
9 | 158 |
318 | 159 typedef struct _ConfOptions ConfOptions; |
9 | 160 |
161 struct _ImageLoader | |
162 { | |
163 GdkPixbuf *pixbuf; | |
138 | 164 FileData *fd; |
9 | 165 gchar *path; |
166 | |
167 gint bytes_read; | |
168 gint bytes_total; | |
169 | |
170 gint requested_width; | |
171 gint requested_height; | |
14
25335c62cd9b
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
12
diff
changeset
|
172 gint shrunk; |
9 | 173 |
174 gint done; | |
175 gint idle_id; | |
176 gint idle_priority; | |
177 | |
178 GdkPixbufLoader *loader; | |
179 gint load_fd; | |
180 | |
181 void (*func_area_ready)(ImageLoader *, guint x, guint y, guint w, guint h, gpointer); | |
182 void (*func_error)(ImageLoader *, gpointer); | |
183 void (*func_done)(ImageLoader *, gpointer); | |
184 void (*func_percent)(ImageLoader *, gdouble, gpointer); | |
185 | |
186 gpointer data_area_ready; | |
187 gpointer data_error; | |
188 gpointer data_done; | |
189 gpointer data_percent; | |
190 | |
191 gint idle_done_id; | |
413
9e521adbf312
Add two new options to control image read buffer at runtime.
zas_
parents:
407
diff
changeset
|
192 |
9e521adbf312
Add two new options to control image read buffer at runtime.
zas_
parents:
407
diff
changeset
|
193 guchar *read_buffer; |
9e521adbf312
Add two new options to control image read buffer at runtime.
zas_
parents:
407
diff
changeset
|
194 gint read_buffer_size; |
9e521adbf312
Add two new options to control image read buffer at runtime.
zas_
parents:
407
diff
changeset
|
195 gint idle_read_loop_count; |
9 | 196 }; |
197 | |
198 typedef void (* ThumbLoaderFunc)(ThumbLoader *tl, gpointer data); | |
199 | |
200 struct _ThumbLoader | |
201 { | |
202 gint standard_loader; | |
203 | |
204 GdkPixbuf *pixbuf; /* contains final (scaled) image when done */ | |
205 ImageLoader *il; | |
206 gchar *path; | |
207 | |
208 gint cache_enable; | |
209 gint cache_hit; | |
210 gdouble percent_done; | |
211 | |
212 gint max_w; | |
213 gint max_h; | |
214 | |
215 ThumbLoaderFunc func_done; | |
216 ThumbLoaderFunc func_error; | |
217 ThumbLoaderFunc func_progress; | |
218 | |
219 gpointer data; | |
220 | |
221 gint idle_done_id; | |
222 }; | |
223 | |
224 struct _CollectInfo | |
225 { | |
138 | 226 FileData *fd; |
9 | 227 GdkPixbuf *pixbuf; |
228 gint flag_mask; | |
229 }; | |
230 | |
231 struct _CollectionData | |
232 { | |
233 gchar *path; | |
234 gchar *name; | |
235 GList *list; | |
236 SortType sort_method; | |
237 | |
238 ThumbLoader *thumb_loader; | |
239 CollectInfo *thumb_info; | |
240 | |
241 void (*info_updated_func)(CollectionData *, CollectInfo *, gpointer); | |
242 gpointer info_updated_data; | |
243 | |
244 gint ref; | |
245 | |
246 /* geometry */ | |
247 gint window_read; | |
248 gint window_x; | |
249 gint window_y; | |
250 gint window_w; | |
251 gint window_h; | |
252 | |
253 /* contents changed since save flag */ | |
254 gint changed; | |
303
6ff0bc50ac46
Prevent multiple insertion of the same file in a collection.
zas_
parents:
290
diff
changeset
|
255 |
6ff0bc50ac46
Prevent multiple insertion of the same file in a collection.
zas_
parents:
290
diff
changeset
|
256 GHashTable *existence; |
9 | 257 }; |
258 | |
259 struct _CollectTable | |
260 { | |
261 GtkWidget *scrolled; | |
262 GtkWidget *listview; | |
263 gint columns; | |
264 gint rows; | |
265 | |
266 CollectionData *cd; | |
267 | |
268 GList *selection; | |
269 CollectInfo *prev_selection; | |
270 | |
271 CollectInfo *click_info; | |
272 | |
273 GtkWidget *tip_window; | |
274 gint tip_delay_id; | |
275 CollectInfo *tip_info; | |
276 | |
277 GdkWindow *marker_window; | |
278 CollectInfo *marker_info; | |
279 | |
280 GtkWidget *status_label; | |
281 GtkWidget *extra_label; | |
282 | |
283 gint focus_row; | |
284 gint focus_column; | |
285 CollectInfo *focus_info; | |
286 | |
287 GtkWidget *popup; | |
288 CollectInfo *drop_info; | |
289 GList *drop_list; | |
290 | |
291 gint sync_idle_id; | |
292 gint drop_idle_id; | |
293 | |
294 gint show_text; | |
295 }; | |
296 | |
297 struct _CollectWindow | |
298 { | |
299 GtkWidget *window; | |
300 CollectTable *table; | |
301 GtkWidget *status_box; | |
302 GList *list; | |
303 | |
304 GtkWidget *close_dialog; | |
305 | |
306 CollectionData *cd; | |
307 }; | |
308 | |
12
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
309 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
|
310 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
|
311 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
|
312 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
|
313 |
9 | 314 struct _ImageWindow |
315 { | |
316 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
|
317 GtkWidget *pr; |
17acca639a86
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
14
diff
changeset
|
318 GtkWidget *frame; |
9 | 319 |
138 | 320 FileData *image_fd; |
9 | 321 |
322 gint64 size; /* file size (bytes) */ | |
323 time_t mtime; /* file modified time stamp */ | |
324 gint unknown; /* failed to load image */ | |
325 | |
326 ImageLoader *il; | |
327 | |
328 gint has_frame; | |
329 | |
330 /* 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
|
331 gint top_window_sync; /* resize top_window when image dimensions change */ |
9 | 332 GtkWidget *top_window; /* window that gets title, and window to resize when 'fitting' */ |
333 gchar *title; /* window title to display left of file name */ | |
334 gchar *title_right; /* window title to display right of file name */ | |
335 gint title_show_zoom; /* option to include zoom in window title */ | |
336 | |
337 gint completed; | |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
338 ImageState state; /* mask of IMAGE_STATE_* flags about current image */ |
9 | 339 |
117
0c2e1f0a001b
Wed Nov 29 14:28:30 2006 John Ellis <johne@verizon.net>
gqview
parents:
115
diff
changeset
|
340 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
|
341 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
|
342 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
|
343 ImageTileRequestFunc func_tile_request; |
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
344 ImageTileDisposeFunc func_tile_dispose; |
9 | 345 |
346 gpointer data_update; | |
347 gpointer data_complete; | |
117
0c2e1f0a001b
Wed Nov 29 14:28:30 2006 John Ellis <johne@verizon.net>
gqview
parents:
115
diff
changeset
|
348 gpointer data_state; |
12
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
349 gpointer data_tile; |
9 | 350 |
351 /* button, scroll functions */ | |
352 void (*func_button)(ImageWindow *, gint button, | |
353 guint32 time, gdouble x, gdouble y, guint state, gpointer); | |
128
98e2632b5d3d
improved connected scroll and active image switching
nadvornik
parents:
127
diff
changeset
|
354 void (*func_drag)(ImageWindow *, gint button, |
98e2632b5d3d
improved connected scroll and active image switching
nadvornik
parents:
127
diff
changeset
|
355 guint32 time, gdouble x, gdouble y, guint state, gdouble dx, gdouble dy,gpointer); |
9 | 356 void (*func_scroll)(ImageWindow *, GdkScrollDirection direction, |
357 guint32 time, gdouble x, gdouble y, guint state, gpointer); | |
358 | |
359 gpointer data_button; | |
128
98e2632b5d3d
improved connected scroll and active image switching
nadvornik
parents:
127
diff
changeset
|
360 gpointer data_drag; |
9 | 361 gpointer data_scroll; |
362 | |
12
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
363 /* 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
|
364 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
|
365 |
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
366 gpointer data_scroll_notify; |
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
367 |
9 | 368 /* collection info */ |
369 CollectionData *collection; | |
370 CollectInfo *collection_info; | |
371 | |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
372 /* color profiles */ |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
373 gint color_profile_enable; |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
374 gint color_profile_input; |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
375 gint color_profile_screen; |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
376 gint color_profile_use_image; |
426
9fe0ca1b5263
show the AdobeRGB profile in the menu, indicate input profile from image
nadvornik
parents:
415
diff
changeset
|
377 gint color_profile_from_image; |
115
53b2bfdcff69
Tue Nov 28 11:54:30 2006 John Ellis <johne@verizon.net>
gqview
parents:
113
diff
changeset
|
378 gpointer cm; |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
379 |
480
805c3258d228
Make histogram depends on image window not layout window.
zas_
parents:
475
diff
changeset
|
380 /* histogram */ |
805c3258d228
Make histogram depends on image window not layout window.
zas_
parents:
475
diff
changeset
|
381 gint histogram_enabled; |
805c3258d228
Make histogram depends on image window not layout window.
zas_
parents:
475
diff
changeset
|
382 Histogram *histogram; |
805c3258d228
Make histogram depends on image window not layout window.
zas_
parents:
475
diff
changeset
|
383 |
9 | 384 AlterType delay_alter_type; |
385 | |
386 ImageLoader *read_ahead_il; | |
387 GdkPixbuf *read_ahead_pixbuf; | |
138 | 388 FileData *read_ahead_fd; |
9 | 389 |
390 GdkPixbuf *prev_pixbuf; | |
138 | 391 FileData *prev_fd; |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
392 gint prev_color_row; |
9 | 393 |
394 gint auto_refresh_id; | |
395 gint auto_refresh_interval; | |
396 | |
397 gint delay_flip; | |
398
c4080362d619
image post-processing (rotation and color management) moved to
nadvornik
parents:
384
diff
changeset
|
398 gint orientation; |
c4080362d619
image post-processing (rotation and color management) moved to
nadvornik
parents:
384
diff
changeset
|
399 gint desaturate; |
415 | 400 |
401 gint overlay_show_zoom; /* set to true if overlay is showing zoom ratio */ | |
9 | 402 }; |
403 | |
149 | 404 #define FILEDATA_MARKS_SIZE 6 |
132 | 405 |
138 | 406 struct _FileDataChangeInfo { |
143
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
407 FileDataChangeType type; |
138 | 408 gchar *source; |
409 gchar *dest; | |
410 }; | |
137
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
411 |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
412 struct _FileData { |
138 | 413 gint magick; |
137
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
414 gint type; |
138 | 415 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
|
416 gchar *path; |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
417 const gchar *name; |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
418 const gchar *extension; |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
419 gint64 size; |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
420 time_t date; |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
421 gboolean marks[FILEDATA_MARKS_SIZE]; |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
422 GList *sidecar_files; |
141 | 423 FileData *parent; /* parent file if this is a sidecar file, NULL otherwise */ |
138 | 424 FileDataChangeInfo *change; /* for rename, move ... */ |
9 | 425 GdkPixbuf *pixbuf; |
138 | 426 gint ref; |
434
1b0aee2b162e
Keep image orientation set by the user during the session.
zas_
parents:
433
diff
changeset
|
427 gint user_orientation; |
439 | 428 gint exif_orientation; |
9 | 429 }; |
430 | |
431 struct _LayoutWindow | |
432 { | |
433 gchar *path; | |
434 | |
435 /* base */ | |
436 | |
437 GtkWidget *window; | |
438 | |
439 GtkWidget *main_box; | |
440 | |
441 GtkWidget *group_box; | |
442 GtkWidget *h_pane; | |
443 GtkWidget *v_pane; | |
444 | |
445 /* menus, path selector */ | |
446 | |
447 GtkActionGroup *action_group; | |
448 GtkUIManager *ui_manager; | |
449 | |
450 GtkWidget *path_entry; | |
451 | |
452 /* image */ | |
453 | |
454 LayoutLocation image_location; | |
455 | |
456 ImageWindow *image; | |
457 | |
127 | 458 ImageWindow *split_images[MAX_SPLIT_IMAGES]; |
442 | 459 ImageSplitMode split_mode; |
127 | 460 gint active_split_image; |
461 | |
442 | 462 GtkWidget *split_image_widget; |
463 | |
127 | 464 gint connect_zoom, connect_scroll; |
442 | 465 |
9 | 466 /* tools window (float) */ |
467 | |
468 GtkWidget *tools; | |
469 GtkWidget *tools_pane; | |
470 | |
471 gint tools_float; | |
472 gint tools_hidden; | |
473 | |
474 /* toolbar */ | |
475 | |
476 GtkWidget *toolbar; | |
477 gint toolbar_hidden; | |
478 | |
479 GtkWidget *thumb_button; | |
480 gint thumbs_enabled; | |
137
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
481 gint marks_enabled; |
442 | 482 |
9 | 483 /* dir view */ |
484 | |
485 LayoutLocation dir_location; | |
486 | |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
487 ViewDir *vd; |
9 | 488 GtkWidget *dir_view; |
489 | |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
490 DirViewType dir_view_type; |
9 | 491 |
492 /* file view */ | |
493 | |
494 LayoutLocation file_location; | |
495 | |
496 ViewFileList *vfl; | |
497 ViewFileIcon *vfi; | |
498 GtkWidget *file_view; | |
499 | |
500 gint icon_view; | |
501 SortType sort_method; | |
502 gint sort_ascend; | |
503 | |
504 /* status bar */ | |
505 | |
506 GtkWidget *info_box; | |
507 GtkWidget *info_progress_bar; | |
508 GtkWidget *info_sort; | |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
509 GtkWidget *info_color; |
9 | 510 GtkWidget *info_status; |
511 GtkWidget *info_details; | |
512 GtkWidget *info_zoom; | |
513 | |
514 /* slide show */ | |
515 | |
516 SlideShowData *slideshow; | |
517 | |
518 /* full screen */ | |
519 | |
520 FullScreenData *full_screen; | |
521 | |
522 /* dividers */ | |
523 | |
524 gint div_h; | |
525 gint div_v; | |
526 gint div_float; | |
527 | |
528 /* directory update check */ | |
529 | |
530 gint last_time_id; | |
531 time_t last_time; | |
532 | |
533 /* misc */ | |
534 | |
535 GtkWidget *utility_box; | |
536 GtkWidget *bar_sort; | |
537 GtkWidget *bar_exif; | |
538 GtkWidget *bar_info; | |
539 | |
540 gint bar_sort_enabled; | |
541 gint bar_exif_enabled; | |
542 gint bar_info_enabled; | |
543 | |
544 gint bar_exif_size; | |
545 gint bar_exif_advanced; | |
546 }; | |
547 | |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
548 struct _ViewDir |
9 | 549 { |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
550 DirViewType type; |
384
392dd6541d51
Merge parts of view_dir_list/tree constructors/destructors to
zas_
parents:
380
diff
changeset
|
551 gpointer info; |
392dd6541d51
Merge parts of view_dir_list/tree constructors/destructors to
zas_
parents:
380
diff
changeset
|
552 |
9 | 553 GtkWidget *widget; |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
554 GtkWidget *view; |
9 | 555 |
556 gchar *path; | |
557 | |
558 FileData *click_fd; | |
559 | |
560 FileData *drop_fd; | |
561 GList *drop_list; | |
562 gint drop_scroll_id; | |
563 | |
564 /* func list */ | |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
565 void (*select_func)(ViewDir *vd, const gchar *path, gpointer data); |
9 | 566 gpointer select_data; |
567 | |
407 | 568 void (*dnd_drop_update_func)(ViewDir *vd); |
569 void (*dnd_drop_leave_func)(ViewDir *vd); | |
442 | 570 |
9 | 571 LayoutWindow *layout; |
572 | |
573 GtkWidget *popup; | |
574 | |
575 PixmapFolders *pf; | |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
576 }; |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
577 |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
578 struct _ViewDirInfoList |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
579 { |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
580 GList *list; |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
581 }; |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
582 |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
583 struct _ViewDirInfoTree |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
584 { |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
585 gint drop_expand_id; |
9 | 586 gint busy_ref; |
587 }; | |
588 | |
589 struct _ViewFileList | |
590 { | |
591 GtkWidget *widget; | |
592 GtkWidget *listview; | |
593 | |
594 gchar *path; | |
595 GList *list; | |
596 | |
597 SortType sort_method; | |
598 gint sort_ascend; | |
599 | |
600 FileData *click_fd; | |
601 FileData *select_fd; | |
602 | |
603 gint thumbs_enabled; | |
138 | 604 gint marks_enabled; |
150 | 605 gint active_mark; |
442 | 606 |
9 | 607 /* thumb updates */ |
608 gint thumbs_running; | |
609 gint thumbs_count; | |
610 ThumbLoader *thumbs_loader; | |
611 FileData *thumbs_filedata; | |
612 | |
613 /* func list */ | |
614 void (*func_thumb_status)(ViewFileList *vfl, gdouble val, const gchar *text, gpointer data); | |
615 gpointer data_thumb_status; | |
616 | |
617 void (*func_status)(ViewFileList *vfl, gpointer data); | |
618 gpointer data_status; | |
619 | |
620 gint select_idle_id; | |
621 LayoutWindow *layout; | |
622 | |
623 GtkWidget *popup; | |
624 }; | |
625 | |
138 | 626 struct _IconData; |
627 | |
9 | 628 struct _ViewFileIcon |
629 { | |
630 GtkWidget *widget; | |
631 GtkWidget *listview; | |
632 | |
633 gchar *path; | |
634 GList *list; | |
635 | |
636 /* table stuff */ | |
637 | |
638 gint columns; | |
639 gint rows; | |
640 | |
641 GList *selection; | |
138 | 642 struct _IconData *prev_selection; |
9 | 643 |
644 GtkWidget *tip_window; | |
645 gint tip_delay_id; | |
138 | 646 struct _IconData *tip_id; |
9 | 647 |
138 | 648 struct _IconData *click_id; |
9 | 649 |
138 | 650 struct _IconData *focus_id; |
9 | 651 gint focus_row; |
652 gint focus_column; | |
653 | |
654 SortType sort_method; | |
655 gint sort_ascend; | |
656 | |
657 gint show_text; | |
658 | |
659 gint sync_idle_id; | |
660 | |
661 /* thumbs */ | |
442 | 662 |
9 | 663 gint thumbs_running; |
664 GList *thumbs_list; | |
665 gint thumbs_count; | |
666 ThumbLoader *thumbs_loader; | |
667 FileData *thumbs_fd; | |
668 | |
669 /* func list */ | |
670 void (*func_thumb_status)(ViewFileIcon *vfi, gdouble val, const gchar *text, gpointer data); | |
671 gpointer data_thumb_status; | |
672 | |
673 void (*func_status)(ViewFileIcon *vfi, gpointer data); | |
674 gpointer data_status; | |
675 | |
676 LayoutWindow *layout; | |
677 | |
678 GtkWidget *popup; | |
679 }; | |
680 | |
681 struct _SlideShowData | |
682 { | |
683 ImageWindow *imd; | |
684 | |
138 | 685 GList *filelist; |
9 | 686 CollectionData *cd; |
687 gchar *layout_path; | |
688 LayoutWindow *layout; | |
689 | |
690 GList *list; | |
691 GList *list_done; | |
692 | |
138 | 693 FileData *slide_fd; |
9 | 694 |
695 gint slide_count; | |
696 gint timeout_id; | |
697 | |
698 gint from_selection; | |
699 | |
700 void (*stop_func)(SlideShowData *, gpointer); | |
701 gpointer stop_data; | |
702 | |
703 gint paused; | |
704 }; | |
705 | |
706 struct _FullScreenData | |
707 { | |
708 GtkWidget *window; | |
709 ImageWindow *imd; | |
710 | |
711 GtkWidget *normal_window; | |
712 ImageWindow *normal_imd; | |
713 | |
714 gint hide_mouse_id; | |
715 gint busy_mouse_id; | |
716 gint cursor_state; | |
717 | |
718 gint saver_block_id; | |
719 | |
720 void (*stop_func)(FullScreenData *, gpointer); | |
721 gpointer stop_data; | |
722 }; | |
723 | |
724 struct _PixmapFolders | |
725 { | |
726 GdkPixbuf *close; | |
727 GdkPixbuf *open; | |
728 GdkPixbuf *deny; | |
729 GdkPixbuf *parent; | |
730 }; | |
731 | |
276 | 732 struct _SecureSaveInfo { |
733 FILE *fp; /**< file stream pointer */ | |
734 gchar *file_name; /**< final file name */ | |
735 gchar *tmp_file_name; /**< temporary file name */ | |
736 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
|
737 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
|
738 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
|
739 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
|
740 gint unlink_on_error; /**< whether to remove temporary file on save failure, TRUE by default */ |
276 | 741 }; |
742 | |
318 | 743 struct _ConfOptions |
744 { | |
328 | 745 |
746 /* ui */ | |
318 | 747 gint progressive_key_scrolling; |
328 | 748 gint place_dialogs_under_mouse; |
749 gint mousewheel_scrolls; | |
750 gint show_icon_names; | |
318 | 751 |
328 | 752 /* various */ |
318 | 753 gint startup_path_enable; |
754 gchar *startup_path; | |
328 | 755 gint enable_metadata_dirs; |
756 | |
757 gint tree_descend_subdirs; | |
758 | |
759 gint lazy_image_sync; | |
760 gint update_on_time_change; | |
761 | |
342
07490120df2d
Rename dupe_custom_threshold option to duplicates_similarity_threshold.
zas_
parents:
341
diff
changeset
|
762 gint duplicates_similarity_threshold; |
328 | 763 |
343
63380ea3e65d
Rename recent_list_max/open_recent_max to open_recent_list_maxsize.
zas_
parents:
342
diff
changeset
|
764 gint open_recent_list_maxsize; |
458
7a69309b91c8
Allow the user to set the drag'n drop icon size through
zas_
parents:
448
diff
changeset
|
765 gint dnd_icon_size; |
328 | 766 |
341
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
340
diff
changeset
|
767 /* file ops */ |
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
340
diff
changeset
|
768 struct { |
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
340
diff
changeset
|
769 gint enable_in_place_rename; |
442 | 770 |
341
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
340
diff
changeset
|
771 gint confirm_delete; |
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
340
diff
changeset
|
772 gint enable_delete_key; |
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
340
diff
changeset
|
773 gint safe_delete_enable; |
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
340
diff
changeset
|
774 gchar *safe_delete_path; |
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
340
diff
changeset
|
775 gint safe_delete_folder_maxsize; |
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
340
diff
changeset
|
776 } file_ops; |
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
340
diff
changeset
|
777 |
328 | 778 /* image */ |
334 | 779 struct { |
780 gint exif_rotate_enable; | |
781 gint scroll_reset_method; | |
782 gint fit_window_to_image; | |
783 gint limit_window_size; | |
784 gint max_window_size; | |
785 gint limit_autofit_size; | |
786 gint max_autofit_size; | |
787 | |
788 gint tile_cache_max; /* in megabytes */ | |
789 gint dither_quality; | |
790 gint enable_read_ahead; | |
791 | |
792 gint zoom_mode; | |
793 gint zoom_2pass; | |
794 gint zoom_to_fit_allow_expand; | |
795 gint zoom_quality; | |
796 gint zoom_increment; /* 10 is 1.0, 5 is 0.05, 20 is 2.0, etc. */ | |
339
de1c2cd06fce
Rename user_specified_window_background and window_background_color
zas_
parents:
338
diff
changeset
|
797 |
de1c2cd06fce
Rename user_specified_window_background and window_background_color
zas_
parents:
338
diff
changeset
|
798 gint use_custom_border_color; |
de1c2cd06fce
Rename user_specified_window_background and window_background_color
zas_
parents:
338
diff
changeset
|
799 GdkColor border_color; |
413
9e521adbf312
Add two new options to control image read buffer at runtime.
zas_
parents:
407
diff
changeset
|
800 |
9e521adbf312
Add two new options to control image read buffer at runtime.
zas_
parents:
407
diff
changeset
|
801 gint read_buffer_size; /* bytes to read from file per read() */ |
9e521adbf312
Add two new options to control image read buffer at runtime.
zas_
parents:
407
diff
changeset
|
802 gint idle_read_loop_count; /* the number of bytes to read per idle call (define x image.read_buffer_size) */ |
334 | 803 } image; |
804 | |
328 | 805 /* thumbnails */ |
333 | 806 struct { |
807 gint max_width; | |
808 gint max_height; | |
809 gint enable_caching; | |
810 gint cache_into_dirs; | |
811 gint fast; | |
812 gint use_xvpics; | |
813 gint spec_standard; | |
814 gint quality; | |
815 } thumbnails; | |
328 | 816 |
817 /* file filtering */ | |
332 | 818 struct { |
356 | 819 gint show_hidden_files; |
373
61a3c8b05b24
Add a new option in Preferences > Filtering to allow the
zas_
parents:
356
diff
changeset
|
820 gint show_dot_directory; |
332 | 821 gint disable; |
822 } file_filter; | |
328 | 823 |
824 /* collections */ | |
330 | 825 struct { |
826 gint rectangular_selection; | |
827 } collections; | |
328 | 828 |
829 /* editors */ | |
318 | 830 gchar *editor_name[GQ_EDITOR_SLOTS]; |
831 gchar *editor_command[GQ_EDITOR_SLOTS]; | |
832 | |
328 | 833 /* file sorting */ |
329 | 834 struct { |
835 SortType method; | |
836 gint ascending; | |
837 gint case_sensitive; /* file sorting method (case) */ | |
838 } file_sort; | |
318 | 839 |
328 | 840 /* slideshow */ |
326 | 841 struct { |
842 gint delay; /* in tenths of a second */ | |
843 gint random; | |
844 gint repeat; | |
845 } slideshow; | |
318 | 846 |
328 | 847 /* fullscreen */ |
468
2df505c60459
Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents:
458
diff
changeset
|
848 struct { |
322 | 849 gint screen; |
850 gint clean_flip; | |
851 gint disable_saver; | |
852 gint above; | |
853 } fullscreen; | |
318 | 854 |
468
2df505c60459
Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents:
458
diff
changeset
|
855 /* image overlay */ |
2df505c60459
Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents:
458
diff
changeset
|
856 struct { |
2df505c60459
Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents:
458
diff
changeset
|
857 struct { |
2df505c60459
Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents:
458
diff
changeset
|
858 gint enabled; |
2df505c60459
Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents:
458
diff
changeset
|
859 gint show_at_startup; |
2df505c60459
Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents:
458
diff
changeset
|
860 gchar *template_string; |
2df505c60459
Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents:
458
diff
changeset
|
861 } common; |
2df505c60459
Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents:
458
diff
changeset
|
862 } image_overlay; |
2df505c60459
Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents:
458
diff
changeset
|
863 |
320 | 864 /* layout */ |
327 | 865 struct { |
866 gchar *order; | |
867 gint style; | |
320 | 868 |
327 | 869 gint view_as_icons; |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
870 DirViewType dir_view_type; |
442 | 871 |
340
77103f3f2cb1
Rename option thumbnails.enabled to layout.show_thumbnails as it makes
zas_
parents:
339
diff
changeset
|
872 gint show_thumbnails; |
433
5ddcf93278c7
Save Show Marks state to rc file and display current state in menu.
zas_
parents:
426
diff
changeset
|
873 gint show_marks; |
338
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
874 |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
875 struct { |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
876 gint w; |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
877 gint h; |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
878 gint x; |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
879 gint y; |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
880 gint maximized; |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
881 gint hdivider_pos; |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
882 gint vdivider_pos; |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
883 } main_window; |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
884 |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
885 struct { |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
886 gint w; |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
887 gint h; |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
888 gint x; |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
889 gint y; |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
890 gint vdivider_pos; |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
891 } float_window; |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
892 |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
893 gint save_window_positions; |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
894 |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
895 gint tools_float; |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
896 gint tools_hidden; |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
897 gint tools_restore_state; |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
898 |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
899 gint toolbar_hidden; |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
900 |
327 | 901 } layout; |
320 | 902 |
328 | 903 /* color profiles */ |
327 | 904 struct { |
905 gint enabled; | |
906 gint input_type; | |
907 gchar *input_file[COLOR_PROFILE_INPUTS]; | |
908 gchar *input_name[COLOR_PROFILE_INPUTS]; | |
909 gint screen_type; | |
910 gchar *screen_file; | |
911 gint use_image; | |
912 | |
913 } color_profile; | |
320 | 914 |
318 | 915 }; |
9 | 916 |
917 #endif |