Mercurial > geeqie
annotate src/typedefs.h @ 1670:2239dc484435
added command for editing ufraw id file, changed menu location
author | nadvornik |
---|---|
date | Sat, 27 Jun 2009 22:40:25 +0000 |
parents | da8afd03152f |
children | c5c7e19fbb23 |
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, |
9 | 63 } AlterType; |
64 | |
65 typedef enum { | |
66 LAYOUT_HIDE = 0, | |
67 LAYOUT_LEFT = 1 << 0, | |
68 LAYOUT_RIGHT = 1 << 1, | |
69 LAYOUT_TOP = 1 << 2, | |
70 LAYOUT_BOTTOM = 1 << 3 | |
71 } LayoutLocation; | |
72 | |
73 | |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
74 typedef enum { |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
75 IMAGE_STATE_NONE = 0, |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
76 IMAGE_STATE_IMAGE = 1 << 0, |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
77 IMAGE_STATE_LOADING = 1 << 1, |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
78 IMAGE_STATE_ERROR = 1 << 2, |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
79 IMAGE_STATE_COLOR_ADJ = 1 << 3, |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
80 IMAGE_STATE_ROTATE_AUTO = 1 << 4, |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
81 IMAGE_STATE_ROTATE_USER = 1 << 5, |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
82 IMAGE_STATE_DELAY_FLIP = 1 << 6 |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
83 } ImageState; |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
84 |
127 | 85 typedef enum { |
86 SPLIT_NONE = 0, | |
87 SPLIT_VERT, | |
88 SPLIT_HOR, | |
89 SPLIT_QUAD, | |
90 } ImageSplitMode; | |
91 | |
143
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
92 typedef enum { |
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
93 FILEDATA_CHANGE_DELETE, |
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
94 FILEDATA_CHANGE_MOVE, |
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
95 FILEDATA_CHANGE_RENAME, |
590 | 96 FILEDATA_CHANGE_COPY, |
1205
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1203
diff
changeset
|
97 FILEDATA_CHANGE_UNSPECIFIED, |
3ff2aa99108b
use the workflow in utilops.c for metadata approving and writting
nadvornik
parents:
1203
diff
changeset
|
98 FILEDATA_CHANGE_WRITE_METADATA |
143
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
99 } FileDataChangeType; |
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
100 |
161 | 101 typedef enum { |
102 MTS_MODE_MINUS, | |
103 MTS_MODE_SET, | |
104 MTS_MODE_OR, | |
105 MTS_MODE_AND | |
106 } MarkToSelectionMode; | |
107 | |
108 typedef enum { | |
109 STM_MODE_RESET, | |
110 STM_MODE_SET, | |
111 STM_MODE_TOGGLE | |
112 } SelectionToMarkMode; | |
113 | |
212
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
196
diff
changeset
|
114 typedef enum { |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
196
diff
changeset
|
115 FORMAT_CLASS_UNKNOWN, |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
196
diff
changeset
|
116 FORMAT_CLASS_IMAGE, |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
196
diff
changeset
|
117 FORMAT_CLASS_RAWIMAGE, |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
196
diff
changeset
|
118 FORMAT_CLASS_META, |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
196
diff
changeset
|
119 FILE_FORMAT_CLASSES |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
196
diff
changeset
|
120 } FileFormatClass; |
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
196
diff
changeset
|
121 |
276 | 122 typedef enum { |
123 SS_ERR_NONE = 0, | |
124 SS_ERR_DISABLED, /**< secsave is disabled. */ | |
125 SS_ERR_OUT_OF_MEM, /**< memory allocation failure */ | |
126 | |
127 /* see err field in SecureSaveInfo */ | |
128 SS_ERR_OPEN_READ, | |
129 SS_ERR_OPEN_WRITE, | |
130 SS_ERR_STAT, | |
131 SS_ERR_ACCESS, | |
132 SS_ERR_MKSTEMP, | |
133 SS_ERR_RENAME, | |
134 SS_ERR_OTHER, | |
135 } SecureSaveErrno; | |
136 | |
791 | 137 typedef enum { |
138 NOTIFY_PRIORITY_HIGH = 0, | |
139 NOTIFY_PRIORITY_MEDIUM, | |
140 NOTIFY_PRIORITY_LOW | |
141 } NotifyPriority; | |
142 | |
792 | 143 typedef enum { |
1432 | 144 NOTIFY_MARKS = 1 << 1, /* changed marks */ |
145 NOTIFY_PIXBUF = 1 << 2, /* image was read into fd->pixbuf */ | |
146 NOTIFY_HISTMAP = 1 << 3, /* histmap was read into fd->histmap */ | |
147 NOTIFY_ORIENTATION = 1 << 4, /* image was rotated */ | |
148 NOTIFY_METADATA = 1 << 5, /* changed image metadata, not yet written */ | |
149 NOTIFY_GROUPING = 1 << 6, /* change in fd->sidecar_files or fd->parent */ | |
150 NOTIFY_REREAD = 1 << 7, /* changed file size, date, etc., file name remains unchanged */ | |
151 NOTIFY_CHANGE = 1 << 8 /* generic change described by fd->change */ | |
792 | 152 } NotifyType; |
791 | 153 |
914
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
888
diff
changeset
|
154 typedef enum { |
929 | 155 CHANGE_OK = 0, |
156 CHANGE_WARN_DEST_EXISTS = 1 << 0, | |
157 CHANGE_WARN_NO_WRITE_PERM = 1 << 1, | |
158 CHANGE_WARN_SAME = 1 << 2, | |
933 | 159 CHANGE_WARN_CHANGED_EXT = 1 << 3, |
160 CHANGE_ERROR_MASK = (~0) << 4, /* the values below are fatal errors */ | |
161 CHANGE_NO_READ_PERM = 1 << 4, | |
162 CHANGE_NO_WRITE_PERM_DIR = 1 << 5, | |
163 CHANGE_NO_DEST_DIR = 1 << 6, | |
164 CHANGE_NO_WRITE_PERM_DEST_DIR = 1 << 7, | |
165 CHANGE_NO_WRITE_PERM_DEST = 1 << 8, | |
166 CHANGE_DEST_EXISTS = 1 << 9, | |
167 CHANGE_NO_SRC = 1 << 10, | |
931
a53f5141228b
allow only existing folders in destination dialog
nadvornik
parents:
929
diff
changeset
|
168 CHANGE_GENERIC_ERROR = 1 << 16 |
914
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
888
diff
changeset
|
169 } ChangeError; |
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
888
diff
changeset
|
170 |
1288 | 171 typedef enum { |
172 METADATA_PLAIN = 0, /* format that can be edited and written back */ | |
173 METADATA_FORMATTED = 1 /* for display only */ | |
174 } MetadataFormat; | |
175 | |
1511
73cecf473802
startup path options simplified and moved to layout options
nadvornik
parents:
1481
diff
changeset
|
176 typedef enum { |
73cecf473802
startup path options simplified and moved to layout options
nadvornik
parents:
1481
diff
changeset
|
177 STARTUP_PATH_CURRENT = 0, |
73cecf473802
startup path options simplified and moved to layout options
nadvornik
parents:
1481
diff
changeset
|
178 STARTUP_PATH_LAST, |
73cecf473802
startup path options simplified and moved to layout options
nadvornik
parents:
1481
diff
changeset
|
179 STARTUP_PATH_HOME, |
73cecf473802
startup path options simplified and moved to layout options
nadvornik
parents:
1481
diff
changeset
|
180 } StartUpPath; |
1288 | 181 |
1582
2ca277a9845b
- handle color profile and write metadata buttons on statusbar by ui_manager
nadvornik
parents:
1566
diff
changeset
|
182 typedef enum { |
2ca277a9845b
- handle color profile and write metadata buttons on statusbar by ui_manager
nadvornik
parents:
1566
diff
changeset
|
183 TOOLBAR_MAIN, |
2ca277a9845b
- handle color profile and write metadata buttons on statusbar by ui_manager
nadvornik
parents:
1566
diff
changeset
|
184 TOOLBAR_STATUS, |
2ca277a9845b
- handle color profile and write metadata buttons on statusbar by ui_manager
nadvornik
parents:
1566
diff
changeset
|
185 TOOLBAR_COUNT |
2ca277a9845b
- handle color profile and write metadata buttons on statusbar by ui_manager
nadvornik
parents:
1566
diff
changeset
|
186 } ToolbarType; |
2ca277a9845b
- handle color profile and write metadata buttons on statusbar by ui_manager
nadvornik
parents:
1566
diff
changeset
|
187 |
127 | 188 #define MAX_SPLIT_IMAGES 4 |
189 | |
9 | 190 typedef struct _ImageLoader ImageLoader; |
191 typedef struct _ThumbLoader ThumbLoader; | |
192 | |
193 typedef struct _CollectInfo CollectInfo; | |
194 typedef struct _CollectionData CollectionData; | |
195 typedef struct _CollectTable CollectTable; | |
196 typedef struct _CollectWindow CollectWindow; | |
197 | |
198 typedef struct _ImageWindow ImageWindow; | |
199 | |
200 typedef struct _FileData FileData; | |
138 | 201 typedef struct _FileDataChangeInfo FileDataChangeInfo; |
9 | 202 |
203 typedef struct _LayoutWindow LayoutWindow; | |
1309 | 204 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
|
205 |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
206 typedef struct _ViewDir ViewDir; |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
207 typedef struct _ViewDirInfoList ViewDirInfoList; |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
208 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
|
209 |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
210 typedef struct _ViewFile ViewFile; |
557
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
211 typedef struct _ViewFileInfoList ViewFileInfoList; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
212 typedef struct _ViewFileInfoIcon ViewFileInfoIcon; |
9 | 213 |
214 typedef struct _SlideShowData SlideShowData; | |
215 typedef struct _FullScreenData FullScreenData; | |
216 | |
217 typedef struct _PixmapFolders PixmapFolders; | |
273
e0e2c2b72c5a
reworked the histogram patch by Uwe Ohse, most of the code is in
nadvornik
parents:
212
diff
changeset
|
218 typedef struct _Histogram Histogram; |
1294 | 219 typedef struct _HistMap HistMap; |
273
e0e2c2b72c5a
reworked the histogram patch by Uwe Ohse, most of the code is in
nadvornik
parents:
212
diff
changeset
|
220 |
276 | 221 typedef struct _SecureSaveInfo SecureSaveInfo; |
9 | 222 |
844 | 223 typedef struct _ExifData ExifData; |
224 | |
1272 | 225 typedef struct _EditorDescription EditorDescription; |
226 | |
1313 | 227 typedef struct _CommandLine CommandLine; |
228 | |
1329
1fc356f629fe
Clean up histogram stuff: options saving/restoring, osd histogram separation, tidy up.
zas_
parents:
1320
diff
changeset
|
229 struct _Histogram { |
1fc356f629fe
Clean up histogram stuff: options saving/restoring, osd histogram separation, tidy up.
zas_
parents:
1320
diff
changeset
|
230 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
|
231 gint histogram_mode; /* logarithmical or not */ |
1fc356f629fe
Clean up histogram stuff: options saving/restoring, osd histogram separation, tidy up.
zas_
parents:
1320
diff
changeset
|
232 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
|
233 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
|
234 struct { |
1fc356f629fe
Clean up histogram stuff: options saving/restoring, osd histogram separation, tidy up.
zas_
parents:
1320
diff
changeset
|
235 int R; /* red */ |
1fc356f629fe
Clean up histogram stuff: options saving/restoring, osd histogram separation, tidy up.
zas_
parents:
1320
diff
changeset
|
236 int G; /* green */ |
1fc356f629fe
Clean up histogram stuff: options saving/restoring, osd histogram separation, tidy up.
zas_
parents:
1320
diff
changeset
|
237 int B; /* blue */ |
1fc356f629fe
Clean up histogram stuff: options saving/restoring, osd histogram separation, tidy up.
zas_
parents:
1320
diff
changeset
|
238 int A; /* alpha */ |
1fc356f629fe
Clean up histogram stuff: options saving/restoring, osd histogram separation, tidy up.
zas_
parents:
1320
diff
changeset
|
239 } grid_color; /* grid color */ |
1fc356f629fe
Clean up histogram stuff: options saving/restoring, osd histogram separation, tidy up.
zas_
parents:
1320
diff
changeset
|
240 |
1fc356f629fe
Clean up histogram stuff: options saving/restoring, osd histogram separation, tidy up.
zas_
parents:
1320
diff
changeset
|
241 }; |
1fc356f629fe
Clean up histogram stuff: options saving/restoring, osd histogram separation, tidy up.
zas_
parents:
1320
diff
changeset
|
242 |
1fc356f629fe
Clean up histogram stuff: options saving/restoring, osd histogram separation, tidy up.
zas_
parents:
1320
diff
changeset
|
243 |
1272 | 244 |
1012
fe82830ab8fd
converted image loader to a GObject and use signals for notification
nadvornik
parents:
1008
diff
changeset
|
245 struct _ImageLoader; |
9 | 246 |
247 typedef void (* ThumbLoaderFunc)(ThumbLoader *tl, gpointer data); | |
248 | |
1231 | 249 typedef void (* FileUtilDoneFunc)(gboolean success, const gchar *done_path, gpointer data); |
250 | |
9 | 251 struct _ThumbLoader |
252 { | |
1446 | 253 gboolean standard_loader; |
9 | 254 |
255 ImageLoader *il; | |
838 | 256 FileData *fd; /* fd->pixbuf contains final (scaled) image when done */ |
9 | 257 |
1446 | 258 gboolean cache_enable; |
259 gboolean cache_hit; | |
9 | 260 gdouble percent_done; |
261 | |
262 gint max_w; | |
263 gint max_h; | |
264 | |
265 ThumbLoaderFunc func_done; | |
266 ThumbLoaderFunc func_error; | |
267 ThumbLoaderFunc func_progress; | |
268 | |
269 gpointer data; | |
270 | |
1523 | 271 guint idle_done_id; /* event source id */ |
9 | 272 }; |
273 | |
274 struct _CollectInfo | |
275 { | |
138 | 276 FileData *fd; |
9 | 277 GdkPixbuf *pixbuf; |
736 | 278 guint flag_mask; |
9 | 279 }; |
280 | |
281 struct _CollectionData | |
282 { | |
283 gchar *path; | |
284 gchar *name; | |
285 GList *list; | |
286 SortType sort_method; | |
287 | |
288 ThumbLoader *thumb_loader; | |
289 CollectInfo *thumb_info; | |
290 | |
291 void (*info_updated_func)(CollectionData *, CollectInfo *, gpointer); | |
292 gpointer info_updated_data; | |
293 | |
294 gint ref; | |
295 | |
296 /* geometry */ | |
297 gint window_read; | |
298 gint window_x; | |
299 gint window_y; | |
300 gint window_w; | |
301 gint window_h; | |
302 | |
303 /* contents changed since save flag */ | |
1446 | 304 gboolean changed; |
303
6ff0bc50ac46
Prevent multiple insertion of the same file in a collection.
zas_
parents:
290
diff
changeset
|
305 |
6ff0bc50ac46
Prevent multiple insertion of the same file in a collection.
zas_
parents:
290
diff
changeset
|
306 GHashTable *existence; |
9 | 307 }; |
308 | |
309 struct _CollectTable | |
310 { | |
311 GtkWidget *scrolled; | |
312 GtkWidget *listview; | |
313 gint columns; | |
314 gint rows; | |
315 | |
316 CollectionData *cd; | |
317 | |
318 GList *selection; | |
319 CollectInfo *prev_selection; | |
320 | |
321 CollectInfo *click_info; | |
322 | |
323 GtkWidget *tip_window; | |
1523 | 324 guint tip_delay_id; /* event source id */ |
9 | 325 CollectInfo *tip_info; |
326 | |
327 GdkWindow *marker_window; | |
328 CollectInfo *marker_info; | |
329 | |
330 GtkWidget *status_label; | |
331 GtkWidget *extra_label; | |
332 | |
333 gint focus_row; | |
334 gint focus_column; | |
335 CollectInfo *focus_info; | |
336 | |
337 GtkWidget *popup; | |
338 CollectInfo *drop_info; | |
339 GList *drop_list; | |
340 | |
1523 | 341 guint sync_idle_id; /* event source id */ |
342 guint drop_idle_id; /* event source id */ | |
9 | 343 |
1446 | 344 gboolean 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
|
345 |
a0bd58a6535f
In various Edit context menus, only display editors that match the file types in the selection.
zas_
parents:
1383
diff
changeset
|
346 /* 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
|
347 GList *editmenu_fd_list; |
9 | 348 }; |
349 | |
350 struct _CollectWindow | |
351 { | |
352 GtkWidget *window; | |
353 CollectTable *table; | |
354 GtkWidget *status_box; | |
355 GList *list; | |
356 | |
357 GtkWidget *close_dialog; | |
358 | |
359 CollectionData *cd; | |
360 }; | |
361 | |
12
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
362 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
|
363 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
|
364 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
|
365 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
|
366 |
9 | 367 struct _ImageWindow |
368 { | |
369 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
|
370 GtkWidget *pr; |
17acca639a86
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
14
diff
changeset
|
371 GtkWidget *frame; |
9 | 372 |
138 | 373 FileData *image_fd; |
9 | 374 |
1431 | 375 gboolean unknown; /* failed to load image */ |
9 | 376 |
846 | 377 ImageLoader *il; /* FIXME - image loader should probably go to FileData, but it must first support |
995 | 378 sending callbacks to multiple ImageWindows in parallel */ |
9 | 379 |
1431 | 380 gint has_frame; /* not boolean, see image_new() */ |
9 | 381 |
382 /* top level (not necessarily parent) window */ | |
1431 | 383 gboolean top_window_sync; /* resize top_window when image dimensions change */ |
9 | 384 GtkWidget *top_window; /* window that gets title, and window to resize when 'fitting' */ |
385 gchar *title; /* window title to display left of file name */ | |
386 gchar *title_right; /* window title to display right of file name */ | |
1431 | 387 gboolean title_show_zoom; /* option to include zoom in window title */ |
9 | 388 |
1431 | 389 gboolean completed; |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
390 ImageState state; /* mask of IMAGE_STATE_* flags about current image */ |
9 | 391 |
117
0c2e1f0a001b
Wed Nov 29 14:28:30 2006 John Ellis <johne@verizon.net>
gqview
parents:
115
diff
changeset
|
392 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
|
393 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
|
394 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
|
395 ImageTileRequestFunc func_tile_request; |
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
396 ImageTileDisposeFunc func_tile_dispose; |
9 | 397 |
398 gpointer data_update; | |
399 gpointer data_complete; | |
117
0c2e1f0a001b
Wed Nov 29 14:28:30 2006 John Ellis <johne@verizon.net>
gqview
parents:
115
diff
changeset
|
400 gpointer data_state; |
12
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
401 gpointer data_tile; |
9 | 402 |
403 /* button, scroll functions */ | |
868
db6977f8b0f1
Reduce number of parameters (mostly unused), just pass the event pointer.
zas_
parents:
849
diff
changeset
|
404 void (*func_button)(ImageWindow *, GdkEventButton *event, gpointer); |
db6977f8b0f1
Reduce number of parameters (mostly unused), just pass the event pointer.
zas_
parents:
849
diff
changeset
|
405 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
|
406 void (*func_scroll)(ImageWindow *, GdkEventScroll *event, gpointer); |
1481 | 407 void (*func_focus_in)(ImageWindow *, gpointer); |
9 | 408 |
409 gpointer data_button; | |
128
98e2632b5d3d
improved connected scroll and active image switching
nadvornik
parents:
127
diff
changeset
|
410 gpointer data_drag; |
9 | 411 gpointer data_scroll; |
1481 | 412 gpointer data_focus_in; |
9 | 413 |
12
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
414 /* 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
|
415 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
|
416 |
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
417 gpointer data_scroll_notify; |
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
418 |
9 | 419 /* collection info */ |
420 CollectionData *collection; | |
421 CollectInfo *collection_info; | |
422 | |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
423 /* color profiles */ |
1431 | 424 gboolean color_profile_enable; |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
425 gint color_profile_input; |
1431 | 426 gboolean color_profile_use_image; |
426
9fe0ca1b5263
show the AdobeRGB profile in the menu, indicate input profile from image
nadvornik
parents:
415
diff
changeset
|
427 gint color_profile_from_image; |
115
53b2bfdcff69
Tue Nov 28 11:54:30 2006 John Ellis <johne@verizon.net>
gqview
parents:
113
diff
changeset
|
428 gpointer cm; |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
429 |
9 | 430 AlterType delay_alter_type; |
431 | |
846 | 432 FileData *read_ahead_fd; |
9 | 433 ImageLoader *read_ahead_il; |
434 | |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
435 gint prev_color_row; |
9 | 436 |
1431 | 437 gboolean auto_refresh; |
9 | 438 |
1431 | 439 gboolean delay_flip; |
398
c4080362d619
image post-processing (rotation and color management) moved to
nadvornik
parents:
384
diff
changeset
|
440 gint orientation; |
1431 | 441 gboolean desaturate; |
415 | 442 |
1431 | 443 gboolean overlay_show_zoom; /* set to true if overlay is showing zoom ratio */ |
9 | 444 }; |
445 | |
149 | 446 #define FILEDATA_MARKS_SIZE 6 |
132 | 447 |
138 | 448 struct _FileDataChangeInfo { |
143
0d1bf3ac6cd8
improved FileDataChangeInfo structure, check for another file operation in progress
nadvornik
parents:
141
diff
changeset
|
449 FileDataChangeType type; |
138 | 450 gchar *source; |
451 gchar *dest; | |
914
9427c91951e8
basic infrastructure for early error and dangerous operations checking
nadvornik
parents:
888
diff
changeset
|
452 gint error; |
1623
2842a051c870
regroup sidecar files when an operation on partial group is finished
nadvornik
parents:
1584
diff
changeset
|
453 gboolean regroup_when_finished; |
138 | 454 }; |
137
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
455 |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
456 struct _FileData { |
138 | 457 gint magick; |
137
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
458 gint type; |
138 | 459 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
|
460 gchar *path; |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
461 const gchar *name; |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
462 const gchar *extension; |
785 | 463 gchar *collate_key_name; |
464 gchar *collate_key_name_nocase; | |
137
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
465 gint64 size; |
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
466 time_t date; |
945
fd84847c8231
speed-up of directory notification on deleting large number of files
nadvornik
parents:
933
diff
changeset
|
467 mode_t mode; /* this is needed at least for notification in view_dir because it is preserved after the file/directory is deleted */ |
1227 | 468 |
469 guint marks; /* each bit represents one mark */ | |
470 guint valid_marks; /* zero bit means that the corresponding mark needs to be reread */ | |
471 | |
472 | |
137
be3328a58875
started support for sidecar files like xmp, raw+jpeg etc.
nadvornik
parents:
134
diff
changeset
|
473 GList *sidecar_files; |
141 | 474 FileData *parent; /* parent file if this is a sidecar file, NULL otherwise */ |
138 | 475 FileDataChangeInfo *change; /* for rename, move ... */ |
845 | 476 GdkPixbuf *thumb_pixbuf; |
846 | 477 |
849
db68d673448f
added possibility to disable grouping of selected files
nadvornik
parents:
846
diff
changeset
|
478 GdkPixbuf *pixbuf; /* full-size image, only complete images, NULL during loading |
995 | 479 all FileData with non-NULL pixbuf are referenced by image_cache */ |
1294 | 480 |
481 HistMap *histmap; | |
846 | 482 |
138 | 483 gint ref; |
763
81f9e8dbb4bf
improved infrastructure for tracing changes, optimized vflist_populate_view
nadvornik
parents:
753
diff
changeset
|
484 gint version; /* increased when any field in this structure is changed */ |
1453 | 485 gboolean disable_grouping; |
849
db68d673448f
added possibility to disable grouping of selected files
nadvornik
parents:
846
diff
changeset
|
486 |
434
1b0aee2b162e
Keep image orientation set by the user during the session.
zas_
parents:
433
diff
changeset
|
487 gint user_orientation; |
439 | 488 gint exif_orientation; |
844 | 489 |
490 ExifData *exif; | |
1203
43bfcbb62cd6
prepared infrastructure for delayed metadata writting - refreshing
nadvornik
parents:
1167
diff
changeset
|
491 GHashTable *modified_xmp; // hash table which contains unwritten xmp metadata in format: key->list of string values |
9 | 492 }; |
493 | |
1309 | 494 struct _LayoutOptions |
495 { | |
1466
6e020d3ab168
added possibility to update existing layout window from config
nadvornik
parents:
1463
diff
changeset
|
496 gchar *id; |
6e020d3ab168
added possibility to update existing layout window from config
nadvornik
parents:
1463
diff
changeset
|
497 |
1309 | 498 gchar *order; |
499 gint style; | |
500 | |
501 DirViewType dir_view_type; | |
502 FileViewType file_view_type; | |
503 | |
504 gboolean show_thumbnails; | |
505 gboolean show_marks; | |
506 gboolean show_directory_date; | |
1584
0cd2268f500b
improved pixel info, changed the menu entry from "Hide" to "Show",
nadvornik
parents:
1582
diff
changeset
|
507 gboolean show_info_pixel; |
1309 | 508 |
509 struct { | |
510 gint w; | |
511 gint h; | |
512 gint x; | |
513 gint y; | |
514 gboolean maximized; | |
515 gint hdivider_pos; | |
516 gint vdivider_pos; | |
517 } main_window; | |
518 | |
519 struct { | |
520 gint w; | |
521 gint h; | |
522 gint x; | |
523 gint y; | |
524 gint vdivider_pos; | |
525 } float_window; | |
526 | |
527 struct { | |
528 gint w; | |
529 gint h; | |
530 } properties_window; | |
531 | |
1336 | 532 struct { |
533 guint state; | |
534 gint histogram_channel; | |
535 gint histogram_mode; | |
536 } image_overlay; | |
537 | |
1309 | 538 gboolean tools_float; |
539 gboolean tools_hidden; | |
540 gboolean toolbar_hidden; | |
1375
df58e511d90e
Display pixel coordinates and rgb - patch by Ruben Stein
nadvornik
parents:
1336
diff
changeset
|
541 |
1309 | 542 gchar *home_path; |
1511
73cecf473802
startup path options simplified and moved to layout options
nadvornik
parents:
1481
diff
changeset
|
543 gchar *last_path; |
73cecf473802
startup path options simplified and moved to layout options
nadvornik
parents:
1481
diff
changeset
|
544 |
73cecf473802
startup path options simplified and moved to layout options
nadvornik
parents:
1481
diff
changeset
|
545 StartUpPath startup_path; |
1514
22174e704d0b
added option that simplifies saving of multi-window configurations
nadvornik
parents:
1511
diff
changeset
|
546 |
22174e704d0b
added option that simplifies saving of multi-window configurations
nadvornik
parents:
1511
diff
changeset
|
547 gboolean exit_on_close; |
1309 | 548 }; |
549 | |
9 | 550 struct _LayoutWindow |
551 { | |
1309 | 552 LayoutOptions options; |
553 | |
783 | 554 FileData *dir_fd; |
9 | 555 |
556 /* base */ | |
557 | |
558 GtkWidget *window; | |
559 | |
560 GtkWidget *main_box; | |
561 | |
562 GtkWidget *group_box; | |
563 GtkWidget *h_pane; | |
564 GtkWidget *v_pane; | |
565 | |
566 /* menus, path selector */ | |
567 | |
568 GtkActionGroup *action_group; | |
1463
25168240a247
added function to reload external editors at any time
nadvornik
parents:
1453
diff
changeset
|
569 GtkActionGroup *action_group_editors; |
25168240a247
added function to reload external editors at any time
nadvornik
parents:
1453
diff
changeset
|
570 guint ui_editors_id; |
9 | 571 GtkUIManager *ui_manager; |
1582
2ca277a9845b
- handle color profile and write metadata buttons on statusbar by ui_manager
nadvornik
parents:
1566
diff
changeset
|
572 guint toolbar_merge_id[TOOLBAR_COUNT]; |
2ca277a9845b
- handle color profile and write metadata buttons on statusbar by ui_manager
nadvornik
parents:
1566
diff
changeset
|
573 GList *toolbar_actions[TOOLBAR_COUNT]; |
9 | 574 |
575 GtkWidget *path_entry; | |
576 | |
577 /* image */ | |
578 | |
579 LayoutLocation image_location; | |
580 | |
581 ImageWindow *image; | |
582 | |
127 | 583 ImageWindow *split_images[MAX_SPLIT_IMAGES]; |
442 | 584 ImageSplitMode split_mode; |
127 | 585 gint active_split_image; |
586 | |
442 | 587 GtkWidget *split_image_widget; |
837
f8c22438376c
use GtkSizeGroup to control initial size of split images
nadvornik
parents:
812
diff
changeset
|
588 GtkSizeGroup *split_image_sizegroup; |
442 | 589 |
9 | 590 /* tools window (float) */ |
591 | |
592 GtkWidget *tools; | |
593 GtkWidget *tools_pane; | |
594 | |
1309 | 595 // gint tools_float; |
596 // gint tools_hidden; | |
9 | 597 |
1470 | 598 GtkWidget *menu_bar; /* referenced by lw, exist during whole lw lifetime */ |
9 | 599 /* toolbar */ |
600 | |
1582
2ca277a9845b
- handle color profile and write metadata buttons on statusbar by ui_manager
nadvornik
parents:
1566
diff
changeset
|
601 GtkWidget *toolbar[TOOLBAR_COUNT]; /* referenced by lw, exist during whole lw lifetime */ |
1309 | 602 // gint toolbar_hidden; |
9 | 603 |
1334 | 604 // GtkWidget *thumb_button; |
1309 | 605 // gint thumbs_enabled; |
606 // gint marks_enabled; | |
442 | 607 |
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
|
608 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
|
609 |
9 | 610 /* dir view */ |
611 | |
612 LayoutLocation dir_location; | |
613 | |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
614 ViewDir *vd; |
9 | 615 GtkWidget *dir_view; |
616 | |
1309 | 617 // DirViewType dir_view_type; |
9 | 618 |
619 /* file view */ | |
620 | |
621 LayoutLocation file_location; | |
622 | |
554
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
623 ViewFile *vf; |
1412 | 624 // 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
|
625 |
9 | 626 GtkWidget *file_view; |
627 | |
628 SortType sort_method; | |
1453 | 629 gboolean sort_ascend; |
9 | 630 |
631 /* status bar */ | |
632 | |
633 GtkWidget *info_box; | |
634 GtkWidget *info_progress_bar; | |
635 GtkWidget *info_sort; | |
636 GtkWidget *info_status; | |
637 GtkWidget *info_details; | |
638 GtkWidget *info_zoom; | |
1375
df58e511d90e
Display pixel coordinates and rgb - patch by Ruben Stein
nadvornik
parents:
1336
diff
changeset
|
639 GtkWidget *info_pixel; |
df58e511d90e
Display pixel coordinates and rgb - patch by Ruben Stein
nadvornik
parents:
1336
diff
changeset
|
640 |
9 | 641 /* slide show */ |
642 | |
643 SlideShowData *slideshow; | |
644 | |
645 /* full screen */ | |
646 | |
647 FullScreenData *full_screen; | |
648 | |
649 /* dividers */ | |
650 | |
1309 | 651 // gint div_h; |
652 // gint div_v; | |
653 // gint div_float; | |
9 | 654 |
655 /* misc */ | |
656 | |
1470 | 657 GtkWidget *utility_box; /* referenced by lw, exist during whole lw lifetime */ |
1383 | 658 GtkWidget *utility_paned; /* between image and bar */ |
9 | 659 GtkWidget *bar_sort; |
1291
50ae02a4a675
replaced bar_info with an universal bar, restored the original
nadvornik
parents:
1288
diff
changeset
|
660 GtkWidget *bar; |
9 | 661 |
1309 | 662 // gint bar_sort_enabled; |
663 // gint bar_enabled; | |
9 | 664 |
1309 | 665 // gint bar_width; |
1293
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
1291
diff
changeset
|
666 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
1291
diff
changeset
|
667 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
|
668 |
a0bd58a6535f
In various Edit context menus, only display editors that match the file types in the selection.
zas_
parents:
1383
diff
changeset
|
669 /* 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
|
670 GList *editmenu_fd_list; |
9 | 671 }; |
672 | |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
673 struct _ViewDir |
9 | 674 { |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
675 DirViewType type; |
384
392dd6541d51
Merge parts of view_dir_list/tree constructors/destructors to
zas_
parents:
380
diff
changeset
|
676 gpointer info; |
392dd6541d51
Merge parts of view_dir_list/tree constructors/destructors to
zas_
parents:
380
diff
changeset
|
677 |
9 | 678 GtkWidget *widget; |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
679 GtkWidget *view; |
9 | 680 |
783 | 681 FileData *dir_fd; |
9 | 682 |
683 FileData *click_fd; | |
684 | |
685 FileData *drop_fd; | |
686 GList *drop_list; | |
1523 | 687 guint drop_scroll_id; /* event source id */ |
9 | 688 |
689 /* func list */ | |
1628 | 690 void (*select_func)(ViewDir *vd, FileData *fd, gpointer data); |
9 | 691 gpointer select_data; |
692 | |
407 | 693 void (*dnd_drop_update_func)(ViewDir *vd); |
694 void (*dnd_drop_leave_func)(ViewDir *vd); | |
442 | 695 |
9 | 696 LayoutWindow *layout; |
697 | |
698 GtkWidget *popup; | |
699 | |
700 PixmapFolders *pf; | |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
701 }; |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
702 |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
703 struct _ViewDirInfoList |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
704 { |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
705 GList *list; |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
706 }; |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
707 |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
708 struct _ViewDirInfoTree |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
709 { |
1523 | 710 guint drop_expand_id; /* event source id */ |
9 | 711 gint busy_ref; |
712 }; | |
713 | |
554
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
714 |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
715 struct _ViewFile |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
716 { |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
717 FileViewType type; |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
718 gpointer info; |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
719 |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
720 GtkWidget *widget; |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
721 GtkWidget *listview; |
964 | 722 GtkWidget *scrolled; |
723 GtkWidget *filter; | |
724 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
|
725 |
783 | 726 FileData *dir_fd; |
554
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
727 GList *list; |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
728 |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
729 SortType sort_method; |
1453 | 730 gboolean sort_ascend; |
554
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
731 |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
732 /* func list */ |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
733 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
|
734 gpointer data_thumb_status; |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
735 |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
736 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
|
737 gpointer data_status; |
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 LayoutWindow *layout; |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
740 |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
741 GtkWidget *popup; |
563
1ad894219964
Move common thumbs_* fields from _ViewFileInfoIcon and _ViewFileInfoList
zas_
parents:
562
diff
changeset
|
742 |
1ad894219964
Move common thumbs_* fields from _ViewFileInfoIcon and _ViewFileInfoList
zas_
parents:
562
diff
changeset
|
743 /* thumbs updates*/ |
1453 | 744 gboolean thumbs_running; |
563
1ad894219964
Move common thumbs_* fields from _ViewFileInfoIcon and _ViewFileInfoList
zas_
parents:
562
diff
changeset
|
745 ThumbLoader *thumbs_loader; |
1ad894219964
Move common thumbs_* fields from _ViewFileInfoIcon and _ViewFileInfoList
zas_
parents:
562
diff
changeset
|
746 FileData *thumbs_filedata; |
564
514a4525d651
Move marks-related fields from _ViewFileInfoList to _ViewFile, since
zas_
parents:
563
diff
changeset
|
747 |
514a4525d651
Move marks-related fields from _ViewFileInfoList to _ViewFile, since
zas_
parents:
563
diff
changeset
|
748 /* marks */ |
1453 | 749 gboolean marks_enabled; |
564
514a4525d651
Move marks-related fields from _ViewFileInfoList to _ViewFile, since
zas_
parents:
563
diff
changeset
|
750 gint active_mark; |
654
6dcfac4b356f
Get rid of vflist_pop_menu() col_idx parameter, use new Viewfile field
zas_
parents:
616
diff
changeset
|
751 gint clicked_mark; |
772
f53c2bb5b1b1
replaced vflist_maint functions by vflist_refresh - it allows to follow
nadvornik
parents:
763
diff
changeset
|
752 |
f53c2bb5b1b1
replaced vflist_maint functions by vflist_refresh - it allows to follow
nadvornik
parents:
763
diff
changeset
|
753 /* refresh */ |
1523 | 754 guint refresh_idle_id; /* event source id */ |
1660 | 755 time_t time_refresh_set; /* time when refresh_idle_id was set */ |
1397
a0bd58a6535f
In various Edit context menus, only display editors that match the file types in the selection.
zas_
parents:
1383
diff
changeset
|
756 |
a0bd58a6535f
In various Edit context menus, only display editors that match the file types in the selection.
zas_
parents:
1383
diff
changeset
|
757 /* 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
|
758 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
|
759 }; |
2da72a136070
Prepare merging of some parts of view_file_list and view_file_icon and
zas_
parents:
508
diff
changeset
|
760 |
557
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
761 struct _ViewFileInfoList |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
762 { |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
763 FileData *click_fd; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
764 FileData *select_fd; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
765 |
1453 | 766 gboolean thumbs_enabled; |
557
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
767 |
1523 | 768 guint select_idle_id; /* event source id */ |
557
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
769 }; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
770 |
138 | 771 struct _IconData; |
772 | |
557
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
773 struct _ViewFileInfoIcon |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
774 { |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
775 /* table stuff */ |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
776 gint columns; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
777 gint rows; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
778 |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
779 GList *selection; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
780 struct _IconData *prev_selection; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
781 |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
782 GtkWidget *tip_window; |
1523 | 783 guint tip_delay_id; /* event source id */ |
557
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
784 struct _IconData *tip_id; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
785 |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
786 struct _IconData *click_id; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
787 |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
788 struct _IconData *focus_id; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
789 gint focus_row; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
790 gint focus_column; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
791 |
1453 | 792 gboolean show_text; |
557
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
793 }; |
d8d61dc4ff52
Introduce ViewFileInfoList and ViewFileInfoIcon (not used yet).
zas_
parents:
556
diff
changeset
|
794 |
9 | 795 struct _SlideShowData |
796 { | |
1627
1a134b4dc88c
use layout_set_fd() for changing images from a slideshow
nadvornik
parents:
1623
diff
changeset
|
797 LayoutWindow *lw; /* use this window to display the slideshow */ |
1a134b4dc88c
use layout_set_fd() for changing images from a slideshow
nadvornik
parents:
1623
diff
changeset
|
798 ImageWindow *imd; /* use this window only if lw is not available, |
1a134b4dc88c
use layout_set_fd() for changing images from a slideshow
nadvornik
parents:
1623
diff
changeset
|
799 FIXME: it is probably required only by img-view.c and should be dropped with it */ |
9 | 800 |
138 | 801 GList *filelist; |
9 | 802 CollectionData *cd; |
783 | 803 FileData *dir_fd; |
9 | 804 |
805 GList *list; | |
806 GList *list_done; | |
807 | |
138 | 808 FileData *slide_fd; |
9 | 809 |
736 | 810 guint slide_count; |
1523 | 811 guint timeout_id; /* event source id */ |
9 | 812 |
1453 | 813 gboolean from_selection; |
9 | 814 |
815 void (*stop_func)(SlideShowData *, gpointer); | |
816 gpointer stop_data; | |
817 | |
1433
b4ad1d201279
Use gboolean where applicable, minor cleanup and indentations fixes.
zas_
parents:
1432
diff
changeset
|
818 gboolean paused; |
9 | 819 }; |
820 | |
821 struct _FullScreenData | |
822 { | |
823 GtkWidget *window; | |
824 ImageWindow *imd; | |
825 | |
826 GtkWidget *normal_window; | |
827 ImageWindow *normal_imd; | |
828 | |
1523 | 829 guint hide_mouse_id; /* event source id */ |
830 guint busy_mouse_id; /* event source id */ | |
831 | |
9 | 832 gint cursor_state; |
833 | |
1523 | 834 guint saver_block_id; /* event source id */ |
9 | 835 |
836 void (*stop_func)(FullScreenData *, gpointer); | |
837 gpointer stop_data; | |
838 }; | |
839 | |
840 struct _PixmapFolders | |
841 { | |
842 GdkPixbuf *close; | |
843 GdkPixbuf *open; | |
844 GdkPixbuf *deny; | |
845 GdkPixbuf *parent; | |
846 }; | |
847 | |
276 | 848 struct _SecureSaveInfo { |
849 FILE *fp; /**< file stream pointer */ | |
850 gchar *file_name; /**< final file name */ | |
851 gchar *tmp_file_name; /**< temporary file name */ | |
852 gint err; /**< set to non-zero value in case of error */ | |
1446 | 853 gboolean secure_save; /**< use secure save for this file, internal use only */ |
854 gboolean preserve_perms; /**< whether to preserve perms, TRUE by default */ | |
855 gboolean preserve_mtime; /**< whether to preserve mtime, FALSE by default */ | |
856 gboolean unlink_on_error; /**< whether to remove temporary file on save failure, TRUE by default */ | |
276 | 857 }; |
858 | |
1313 | 859 struct _CommandLine |
860 { | |
861 int argc; | |
862 gchar **argv; | |
863 gboolean startup_blank; | |
864 gboolean startup_full_screen; | |
865 gboolean startup_in_slideshow; | |
866 gboolean startup_command_line_collection; | |
867 gboolean tools_hide; | |
868 gboolean tools_show; | |
869 gchar *path; | |
870 gchar *file; | |
871 GList *cmd_list; | |
872 GList *collection_list; | |
873 gchar *geometry; | |
874 }; | |
875 | |
9 | 876 #endif |
1055
1646720364cf
Adding a vim modeline to all files - patch by Klaus Ethgen
nadvornik
parents:
1047
diff
changeset
|
877 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */ |