annotate src/typedefs.h @ 1698:bfe04f01de5e

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