Fix include-what-you-use warnings
[geeqie.git] / src / pan-view / pan-item.h
1 /*
2  * Copyright (C) 2006 John Ellis
3  * Copyright (C) 2008 - 2016 The Geeqie Team
4  *
5  * Author: John Ellis
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21
22 #ifndef PAN_VIEW_PAN_ITEM_H
23 #define PAN_VIEW_PAN_ITEM_H
24
25 #include <gdk-pixbuf/gdk-pixbuf.h>
26 #include <glib.h>
27
28 #include "pan-types.h"
29
30 struct FileData;
31 struct PixbufRenderer;
32
33 void pan_item_free(PanItem *pi);
34
35 void pan_item_set_key(PanItem *pi, const gchar *key);
36 void pan_item_added(PanWindow *pw, PanItem *pi);
37 void pan_item_remove(PanWindow *pw, PanItem *pi);
38
39 // Determine sizes
40 void pan_item_size_by_item(PanItem *pi, PanItem *child, gint border);
41 void pan_item_size_coordinates(PanItem *pi, gint border, gint *w, gint *h);
42
43 // Find items
44 PanItem *pan_item_find_by_key(PanWindow *pw, PanItemType type, const gchar *key);
45 GList *pan_item_find_by_path(PanWindow *pw, PanItemType type, const gchar *path,
46                              gboolean ignore_case, gboolean partial);
47 GList *pan_item_find_by_fd(PanWindow *pw, PanItemType type, FileData *fd,
48                            gboolean ignore_case, gboolean partial);
49 PanItem *pan_item_find_by_coord(PanWindow *pw, PanItemType type,
50                                 gint x, gint y, const gchar *key);
51
52 // Item box type
53 PanItem *pan_item_box_new(PanWindow *pw, FileData *fd, gint x, gint y, gint width, gint height,
54                           gint border_size,
55                           guint8 base_r, guint8 base_g, guint8 base_b, guint8 base_a,
56                           guint8 bord_r, guint8 bord_g, guint8 bord_b, guint8 bord_a);
57 void pan_item_box_shadow(PanItem *pi, gint offset, gint fade);
58 gint pan_item_box_draw(PanWindow *pw, PanItem *pi, GdkPixbuf *pixbuf, PixbufRenderer *pr,
59                        gint x, gint y, gint width, gint height);
60
61 // Item triangle type
62 PanItem *pan_item_tri_new(PanWindow *pw, FileData *fd, gint x, gint y, gint width, gint height,
63                           gint x1, gint y1, gint x2, gint y2, gint x3, gint y3,
64                           guint8 r, guint8 g, guint8 b, guint8 a);
65 void pan_item_tri_border(PanItem *pi, gint borders,
66                          guint8 r, guint8 g, guint8 b, guint8 a);
67 gint pan_item_tri_draw(PanWindow *pw, PanItem *pi, GdkPixbuf *pixbuf, PixbufRenderer *pr,
68                        gint x, gint y, gint width, gint height);
69
70 // Item text type
71 PanItem *pan_item_text_new(PanWindow *pw, gint x, gint y, const gchar *text,
72                            PanTextAttrType attr, PanBorderType border,
73                            guint8 r, guint8 g, guint8 b, guint8 a);
74 gint pan_item_text_draw(PanWindow *pw, PanItem *pi, GdkPixbuf *pixbuf, PixbufRenderer *pr,
75                         gint x, gint y, gint width, gint height);
76
77 // Item thumbnail type
78 PanItem *pan_item_thumb_new(PanWindow *pw, FileData *fd, gint x, gint y);
79 gint pan_item_thumb_draw(PanWindow *pw, PanItem *pi, GdkPixbuf *pixbuf, PixbufRenderer *pr,
80                          gint x, gint y, gint width, gint height);
81
82 // Item image type
83 PanItem *pan_item_image_new(PanWindow *pw, FileData *fd, gint x, gint y, gint w, gint h);
84 gint pan_item_image_draw(PanWindow *pw, PanItem *pi, GdkPixbuf *pixbuf, PixbufRenderer *pr,
85                          gint x, gint y, gint width, gint height);
86
87 // Alignment
88 struct PanTextAlignment {
89         PanWindow *pw;
90
91         GList *column1;
92         GList *column2;
93
94         gint x;
95         gint y;
96         gchar *key;
97 };
98
99 PanTextAlignment *pan_text_alignment_new(PanWindow *pw, gint x, gint y, const gchar *key);
100 void pan_text_alignment_free(PanTextAlignment *ta);
101
102 PanItem *pan_text_alignment_add(PanTextAlignment *ta, const gchar *label, const gchar *text);
103 void pan_text_alignment_calc(PanTextAlignment *ta, PanItem *box);
104
105 #endif