Adding a vim modeline to all files - patch by Klaus Ethgen
[geeqie.git] / src / pan-types.h
1 /*
2  * Geeqie
3  * (C) 2006 John Ellis
4  * Copyright (C) 2008 The Geeqie Team
5  *
6  * Author: John Ellis
7  *
8  * This software is released under the GNU General Public License (GNU GPL).
9  * Please read the included file COPYING for more information.
10  * This software comes with no warranty of any kind, use at your own risk!
11  */
12
13
14 #ifndef PAN_TYPES_H
15 #define PAN_TYPES_H
16
17 #include "cache.h"
18 #include "cache-loader.h"
19 #include "filedata.h"
20 #include "image.h"
21 #include "image-load.h"
22 #include "pixbuf_util.h"
23 #include "pixbuf-renderer.h"
24 #include "ui_misc.h"
25
26
27 /* thumbnail sizes and spacing */
28
29 #define PAN_THUMB_SIZE_DOTS 4
30 #define PAN_THUMB_SIZE_NONE 24
31 #define PAN_THUMB_SIZE_SMALL 64
32 #define PAN_THUMB_SIZE_NORMAL 128
33 #define PAN_THUMB_SIZE_LARGE 256
34 #define PAN_THUMB_SIZE pw->thumb_size
35
36 #define PAN_THUMB_GAP_DOTS 2
37 #define PAN_THUMB_GAP_SMALL 14
38 #define PAN_THUMB_GAP_NORMAL 30
39 #define PAN_THUMB_GAP_LARGE 40
40 #define PAN_THUMB_GAP_HUGE 50
41 #define PAN_THUMB_GAP pw->thumb_gap
42
43 /* basic sizes, colors, spacings */
44
45 #define PAN_SHADOW_OFFSET 6
46 #define PAN_SHADOW_FADE 5
47 #define PAN_SHADOW_COLOR 0, 0, 0
48 #define PAN_SHADOW_ALPHA 64
49
50 #define PAN_OUTLINE_THICKNESS 1
51 #define PAN_OUTLINE_COLOR_1 255, 255, 255
52 #define PAN_OUTLINE_COLOR_2 64, 64, 64
53 #define PAN_OUTLINE_ALPHA 180
54
55 #define PAN_BACKGROUND_COLOR 150, 150, 150
56
57 #define PAN_GRID_SIZE 60
58 #define PAN_GRID_COLOR 0, 0, 0
59 #define PAN_GRID_ALPHA 20
60
61 #define PAN_BOX_COLOR 255, 255, 255
62 #define PAN_BOX_ALPHA 100
63 #define PAN_BOX_BORDER 20
64
65 #define PAN_BOX_OUTLINE_THICKNESS 4
66 #define PAN_BOX_OUTLINE_COLOR 0, 0, 0
67 #define PAN_BOX_OUTLINE_ALPHA 128
68
69 #define PAN_TEXT_BORDER_SIZE 4
70 #define PAN_TEXT_COLOR 0, 0, 0
71
72 /* popup info box */
73
74 #define PAN_POPUP_COLOR 255, 255, 225
75 #define PAN_POPUP_ALPHA 255
76 #define PAN_POPUP_BORDER 1
77 #define PAN_POPUP_BORDER_COLOR 0, 0, 0
78 #define PAN_POPUP_TEXT_COLOR 0, 0, 0
79
80
81 #define PAN_GROUP_MAX 16
82
83
84
85 typedef enum {
86         PAN_LAYOUT_TIMELINE = 0,
87         PAN_LAYOUT_CALENDAR,
88         PAN_LAYOUT_FOLDERS_LINEAR,
89         PAN_LAYOUT_FOLDERS_FLOWER,
90         PAN_LAYOUT_GRID,
91         PAN_LAYOUT_COUNT
92 } PanLayoutType;
93
94 typedef enum {
95         PAN_IMAGE_SIZE_THUMB_DOTS = 0,
96         PAN_IMAGE_SIZE_THUMB_NONE,
97         PAN_IMAGE_SIZE_THUMB_SMALL,
98         PAN_IMAGE_SIZE_THUMB_NORMAL,
99         PAN_IMAGE_SIZE_THUMB_LARGE,
100         PAN_IMAGE_SIZE_10,
101         PAN_IMAGE_SIZE_25,
102         PAN_IMAGE_SIZE_33,
103         PAN_IMAGE_SIZE_50,
104         PAN_IMAGE_SIZE_100,
105         PAN_IMAGE_SIZE_COUNT
106 } PanImageSize;
107
108 typedef enum {
109         PAN_ITEM_NONE,
110         PAN_ITEM_THUMB,
111         PAN_ITEM_BOX,
112         PAN_ITEM_TRIANGLE,
113         PAN_ITEM_TEXT,
114         PAN_ITEM_IMAGE
115 } PanItemType;
116
117 typedef enum {
118         PAN_TEXT_ATTR_NONE = 0,
119         PAN_TEXT_ATTR_BOLD = 1 << 0,
120         PAN_TEXT_ATTR_HEADING = 1 << 1,
121         PAN_TEXT_ATTR_MARKUP = 1 << 2
122 } PanTextAttrType;
123
124 typedef enum {
125         PAN_BORDER_NONE = 0,
126         PAN_BORDER_1 = 1 << 0,
127         PAN_BORDER_2 = 1 << 1,
128         PAN_BORDER_3 = 1 << 2,
129         PAN_BORDER_4 = 1 << 3
130 } PanBorderType;
131
132 #define PAN_BORDER_TOP          PAN_BORDER_1
133 #define PAN_BORDER_RIGHT                PAN_BORDER_2
134 #define PAN_BORDER_BOTTOM       PAN_BORDER_3
135 #define PAN_BORDER_LEFT         PAN_BORDER_4
136
137
138 typedef struct _PanItem PanItem;
139 struct _PanItem {
140         PanItemType type;
141         gint x;
142         gint y;
143         gint width;
144         gint height;
145         gchar *key;
146
147         FileData *fd;
148
149         GdkPixbuf *pixbuf;
150         gint refcount;
151
152         gchar *text;
153         PanTextAttrType text_attr;
154
155         guint8 color_r;
156         guint8 color_g;
157         guint8 color_b;
158         guint8 color_a;
159
160         guint8 color2_r;
161         guint8 color2_g;
162         guint8 color2_b;
163         guint8 color2_a;
164         gint border;
165
166         gpointer data;
167
168         gint queued;
169 };
170
171 typedef struct _PanWindow PanWindow;
172 struct _PanWindow
173 {
174         GtkWidget *window;
175         ImageWindow *imd;
176         ImageWindow *imd_normal;
177         FullScreenData *fs;
178
179         GtkWidget *path_entry;
180
181         GtkWidget *label_message;
182         GtkWidget *label_zoom;
183
184         GtkWidget *search_box;
185         GtkWidget *search_entry;
186         GtkWidget *search_label;
187         GtkWidget *search_button;
188         GtkWidget *search_button_arrow;
189
190         GtkWidget *date_button;
191
192         GtkWidget *scrollbar_h;
193         GtkWidget *scrollbar_v;
194
195         gint overlay_id;
196
197         FileData *dir_fd;
198         PanLayoutType layout;
199         PanImageSize size;
200         gint thumb_size;
201         gint thumb_gap;
202         gint image_size;
203         gint exif_date_enable;
204
205         gint info_image_size;
206         gint info_includes_exif;
207
208         gint ignore_symlinks;
209
210         GList *list;
211         GList *list_static;
212         GList *list_grid;
213
214         GList *cache_list;
215         GList *cache_todo;
216         gint cache_count;
217         gint cache_total;
218         gint cache_tick;
219         CacheLoader *cache_cl;
220
221         ImageLoader *il;
222         ThumbLoader *tl;
223         PanItem *queue_pi;
224         GList *queue;
225
226         PanItem *click_pi;
227         PanItem *search_pi;
228
229         gint idle_id;
230 };
231
232 typedef struct _PanGrid PanGrid;
233 struct _PanGrid {
234         gint x;
235         gint y;
236         gint w;
237         gint h;
238         GList *list;
239 };
240
241 typedef struct _PanCacheData PanCacheData;
242 struct _PanCacheData {
243         FileData *fd;
244         CacheData *cd;
245 };
246
247
248 /* pan-view.c */
249
250 GList *pan_layout_intersect(PanWindow *pw, gint x, gint y, gint width, gint height);
251 void pan_layout_resize(PanWindow *pw);
252
253 void pan_cache_sync_date(PanWindow *pw, GList *list);
254
255 GList *pan_cache_sort(GList *list, SortType method, gint ascend);
256 /* pan-item.c */
257
258 void pan_item_free(PanItem *pi);
259
260 void pan_item_set_key(PanItem *pi, const gchar *key);
261 void pan_item_added(PanWindow *pw, PanItem *pi);
262 void pan_item_remove(PanWindow *pw, PanItem *pi);
263
264 void pan_item_size_by_item(PanItem *pi, PanItem *child, gint border);
265 void pan_item_size_coordinates(PanItem *pi, gint border, gint *w, gint *h);
266
267
268 PanItem *pan_item_find_by_key(PanWindow *pw, PanItemType type, const gchar *key);
269 GList *pan_item_find_by_path(PanWindow *pw, PanItemType type, const gchar *path,
270                              gint ignore_case, gint partial);
271 GList *pan_item_find_by_fd(PanWindow *pw, PanItemType type, FileData *fd,
272                              gint ignore_case, gint partial);
273 PanItem *pan_item_find_by_coord(PanWindow *pw, PanItemType type,
274                                 gint x, gint y, const gchar *key);
275
276
277 PanItem *pan_item_box_new(PanWindow *pw, FileData *fd, gint x, gint y, gint width, gint height,
278                           gint border_size,
279                           guint8 base_r, guint8 base_g, guint8 base_b, guint8 base_a,
280                           guint8 bord_r, guint8 bord_g, guint8 bord_b, guint8 bord_a);
281 void pan_item_box_shadow(PanItem *pi, gint offset, gint fade);
282 gint pan_item_box_draw(PanWindow *pw, PanItem *pi, GdkPixbuf *pixbuf, PixbufRenderer *pr,
283                        gint x, gint y, gint width, gint height);
284
285 PanItem *pan_item_tri_new(PanWindow *pw, FileData *fd, gint x, gint y, gint width, gint height,
286                           gint x1, gint y1, gint x2, gint y2, gint x3, gint y3,
287                           guint8 r, guint8 g, guint8 b, guint8 a);
288 void pan_item_tri_border(PanItem *pi, gint borders,
289                          guint8 r, guint8 g, guint8 b, guint8 a);
290 gint pan_item_tri_draw(PanWindow *pw, PanItem *pi, GdkPixbuf *pixbuf, PixbufRenderer *pr,
291                        gint x, gint y, gint width, gint height);
292
293 PanItem *pan_item_text_new(PanWindow *pw, gint x, gint y, const gchar *text,
294                            PanTextAttrType attr, PanBorderType border,
295                            guint8 r, guint8 g, guint8 b, guint8 a);
296 gint pan_item_text_draw(PanWindow *pw, PanItem *pi, GdkPixbuf *pixbuf, PixbufRenderer *pr,
297                         gint x, gint y, gint width, gint height);
298
299 PanItem *pan_item_thumb_new(PanWindow *pw, FileData *fd, gint x, gint y);
300 gint pan_item_thumb_draw(PanWindow *pw, PanItem *pi, GdkPixbuf *pixbuf, PixbufRenderer *pr,
301                          gint x, gint y, gint width, gint height);
302
303 PanItem *pan_item_image_new(PanWindow *pw, FileData *fd, gint x, gint y, gint w, gint h);
304 gint pan_item_image_draw(PanWindow *pw, PanItem *pi, GdkPixbuf *pixbuf, PixbufRenderer *pr,
305                          gint x, gint y, gint width, gint height);
306
307
308 typedef struct _PanTextAlignment PanTextAlignment;
309 struct _PanTextAlignment {
310         PanWindow *pw;
311
312         GList *column1;
313         GList *column2;
314
315         gint x;
316         gint y;
317         gchar *key;
318 };
319
320 PanTextAlignment *pan_text_alignment_new(PanWindow *pw, gint x, gint y, const gchar *key);
321 void pan_text_alignment_free(PanTextAlignment *ta);
322
323 PanItem *pan_text_alignment_add(PanTextAlignment *ta, const gchar *label, const gchar *text);
324 void pan_text_alignment_calc(PanTextAlignment *ta, PanItem *box);
325
326
327 /* utils in pan-util.c */
328
329 typedef enum {
330         PAN_DATE_LENGTH_EXACT,
331         PAN_DATE_LENGTH_HOUR,
332         PAN_DATE_LENGTH_DAY,
333         PAN_DATE_LENGTH_WEEK,
334         PAN_DATE_LENGTH_MONTH,
335         PAN_DATE_LENGTH_YEAR
336 } PanDateLengthType;
337
338 gint pan_date_compare(time_t a, time_t b, PanDateLengthType length);
339 gint pan_date_value(time_t d, PanDateLengthType length);
340 gchar *pan_date_value_string(time_t d,  PanDateLengthType length);
341 time_t pan_date_to_time(gint year, gint month, gint day);
342
343 gint pan_is_link_loop(const gchar *s);
344 gint pan_is_ignored(const gchar *s, gint ignore_symlinks);
345 GList *pan_list_tree(FileData *dir_fd, SortType sort, gint ascend,
346                      gint ignore_symlinks);
347
348
349 /* the different view types */
350
351 void pan_calendar_update(PanWindow *pw, PanItem *pi_day);
352 void pan_calendar_compute(PanWindow *pw, FileData *dir_fd, gint *width, gint *height);
353 void pan_flower_compute(PanWindow *pw, FileData *dir_fd,
354                         gint *width, gint *height,
355                         gint *scroll_x, gint *scroll_y);
356 void pan_folder_tree_compute(PanWindow *pw, FileData *dir_fd, gint *width, gint *height);
357 void pan_grid_compute(PanWindow *pw, FileData *dir_fd, gint *width, gint *height);
358 void pan_timeline_compute(PanWindow *pw, FileData *dir_fd, gint *width, gint *height);
359
360
361 #endif
362 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */