In various Edit context menus, only display editors that match the file types in...
[geeqie.git] / src / pan-types.h
1 /*
2  * Geeqie
3  * (C) 2006 John Ellis
4  * Copyright (C) 2008 - 2009 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         /* file list for edit menu */
232         GList *editmenu_fd_list;
233 };
234
235 typedef struct _PanGrid PanGrid;
236 struct _PanGrid {
237         gint x;
238         gint y;
239         gint w;
240         gint h;
241         GList *list;
242 };
243
244 typedef struct _PanCacheData PanCacheData;
245 struct _PanCacheData {
246         FileData *fd;
247         CacheData *cd;
248 };
249
250
251 /* pan-view.c */
252
253 GList *pan_layout_intersect(PanWindow *pw, gint x, gint y, gint width, gint height);
254 void pan_layout_resize(PanWindow *pw);
255
256 void pan_cache_sync_date(PanWindow *pw, GList *list);
257
258 GList *pan_cache_sort(GList *list, SortType method, gint ascend);
259 /* pan-item.c */
260
261 void pan_item_free(PanItem *pi);
262
263 void pan_item_set_key(PanItem *pi, const gchar *key);
264 void pan_item_added(PanWindow *pw, PanItem *pi);
265 void pan_item_remove(PanWindow *pw, PanItem *pi);
266
267 void pan_item_size_by_item(PanItem *pi, PanItem *child, gint border);
268 void pan_item_size_coordinates(PanItem *pi, gint border, gint *w, gint *h);
269
270
271 PanItem *pan_item_find_by_key(PanWindow *pw, PanItemType type, const gchar *key);
272 GList *pan_item_find_by_path(PanWindow *pw, PanItemType type, const gchar *path,
273                              gint ignore_case, gint partial);
274 GList *pan_item_find_by_fd(PanWindow *pw, PanItemType type, FileData *fd,
275                              gint ignore_case, gint partial);
276 PanItem *pan_item_find_by_coord(PanWindow *pw, PanItemType type,
277                                 gint x, gint y, const gchar *key);
278
279
280 PanItem *pan_item_box_new(PanWindow *pw, FileData *fd, gint x, gint y, gint width, gint height,
281                           gint border_size,
282                           guint8 base_r, guint8 base_g, guint8 base_b, guint8 base_a,
283                           guint8 bord_r, guint8 bord_g, guint8 bord_b, guint8 bord_a);
284 void pan_item_box_shadow(PanItem *pi, gint offset, gint fade);
285 gint pan_item_box_draw(PanWindow *pw, PanItem *pi, GdkPixbuf *pixbuf, PixbufRenderer *pr,
286                        gint x, gint y, gint width, gint height);
287
288 PanItem *pan_item_tri_new(PanWindow *pw, FileData *fd, gint x, gint y, gint width, gint height,
289                           gint x1, gint y1, gint x2, gint y2, gint x3, gint y3,
290                           guint8 r, guint8 g, guint8 b, guint8 a);
291 void pan_item_tri_border(PanItem *pi, gint borders,
292                          guint8 r, guint8 g, guint8 b, guint8 a);
293 gint pan_item_tri_draw(PanWindow *pw, PanItem *pi, GdkPixbuf *pixbuf, PixbufRenderer *pr,
294                        gint x, gint y, gint width, gint height);
295
296 PanItem *pan_item_text_new(PanWindow *pw, gint x, gint y, const gchar *text,
297                            PanTextAttrType attr, PanBorderType border,
298                            guint8 r, guint8 g, guint8 b, guint8 a);
299 gint pan_item_text_draw(PanWindow *pw, PanItem *pi, GdkPixbuf *pixbuf, PixbufRenderer *pr,
300                         gint x, gint y, gint width, gint height);
301
302 PanItem *pan_item_thumb_new(PanWindow *pw, FileData *fd, gint x, gint y);
303 gint pan_item_thumb_draw(PanWindow *pw, PanItem *pi, GdkPixbuf *pixbuf, PixbufRenderer *pr,
304                          gint x, gint y, gint width, gint height);
305
306 PanItem *pan_item_image_new(PanWindow *pw, FileData *fd, gint x, gint y, gint w, gint h);
307 gint pan_item_image_draw(PanWindow *pw, PanItem *pi, GdkPixbuf *pixbuf, PixbufRenderer *pr,
308                          gint x, gint y, gint width, gint height);
309
310
311 typedef struct _PanTextAlignment PanTextAlignment;
312 struct _PanTextAlignment {
313         PanWindow *pw;
314
315         GList *column1;
316         GList *column2;
317
318         gint x;
319         gint y;
320         gchar *key;
321 };
322
323 PanTextAlignment *pan_text_alignment_new(PanWindow *pw, gint x, gint y, const gchar *key);
324 void pan_text_alignment_free(PanTextAlignment *ta);
325
326 PanItem *pan_text_alignment_add(PanTextAlignment *ta, const gchar *label, const gchar *text);
327 void pan_text_alignment_calc(PanTextAlignment *ta, PanItem *box);
328
329
330 /* utils in pan-util.c */
331
332 typedef enum {
333         PAN_DATE_LENGTH_EXACT,
334         PAN_DATE_LENGTH_HOUR,
335         PAN_DATE_LENGTH_DAY,
336         PAN_DATE_LENGTH_WEEK,
337         PAN_DATE_LENGTH_MONTH,
338         PAN_DATE_LENGTH_YEAR
339 } PanDateLengthType;
340
341 gint pan_date_compare(time_t a, time_t b, PanDateLengthType length);
342 gint pan_date_value(time_t d, PanDateLengthType length);
343 gchar *pan_date_value_string(time_t d,  PanDateLengthType length);
344 time_t pan_date_to_time(gint year, gint month, gint day);
345
346 gint pan_is_link_loop(const gchar *s);
347 gint pan_is_ignored(const gchar *s, gint ignore_symlinks);
348 GList *pan_list_tree(FileData *dir_fd, SortType sort, gint ascend,
349                      gint ignore_symlinks);
350
351
352 /* the different view types */
353
354 void pan_calendar_update(PanWindow *pw, PanItem *pi_day);
355 void pan_calendar_compute(PanWindow *pw, FileData *dir_fd, gint *width, gint *height);
356 void pan_flower_compute(PanWindow *pw, FileData *dir_fd,
357                         gint *width, gint *height,
358                         gint *scroll_x, gint *scroll_y);
359 void pan_folder_tree_compute(PanWindow *pw, FileData *dir_fd, gint *width, gint *height);
360 void pan_grid_compute(PanWindow *pw, FileData *dir_fd, gint *width, gint *height);
361 void pan_timeline_compute(PanWindow *pw, FileData *dir_fd, gint *width, gint *height);
362
363
364 #endif
365 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */