Wed Apr 27 15:17:57 2005 John Ellis <johne@verizon.net>
[geeqie.git] / src / pixbuf_util.h
1 /*
2  * GQview
3  * (C) 2004 John Ellis
4  *
5  * Author: John Ellis
6  *
7  * This software is released under the GNU General Public License (GNU GPL).
8  * Please read the included file COPYING for more information.
9  * This software comes with no warranty of any kind, use at your own risk!
10  */
11
12
13 #ifndef PIXBUF_UTIL_H
14 #define PIXBUF_UTIL_H
15
16
17 gboolean pixbuf_to_file_as_png (GdkPixbuf *pixbuf, const char *filename);
18 gboolean pixbuf_to_file_as_jpg(GdkPixbuf *pixbuf, const gchar *filename, gint quality);
19
20
21 GdkPixbuf *pixbuf_inline(const gchar *key);
22
23 #define PIXBUF_INLINE_FOLDER_CLOSED     "folder_closed"
24 #define PIXBUF_INLINE_FOLDER_LOCKED     "folder_locked"
25 #define PIXBUF_INLINE_FOLDER_OPEN       "folder_open"
26 #define PIXBUF_INLINE_FOLDER_UP         "folder_up"
27 #define PIXBUF_INLINE_SCROLLER          "scroller"
28 #define PIXBUF_INLINE_BROKEN            "broken"
29 #define PIXBUF_INLINE_LOGO              "logo"
30
31 #define PIXBUF_INLINE_ICON_FLOAT        "icon_float"
32 #define PIXBUF_INLINE_ICON_THUMB        "icon_thumb"
33
34
35 GdkPixbuf *pixbuf_copy_rotate_90(GdkPixbuf *src, gint counter_clockwise);
36 GdkPixbuf *pixbuf_copy_mirror(GdkPixbuf *src, gint mirror, gint flip);
37
38
39 void pixbuf_draw_rect_fill(GdkPixbuf *pb,
40                            gint x, gint y, gint w, gint h,
41                            gint r, gint g, gint b, gint a);
42
43 void pixbuf_draw_rect(GdkPixbuf *pb,
44                       gint x, gint y, gint w, gint h,
45                       gint r, gint g, gint b, gint a,
46                       gint left, gint right, gint top, gint bottom);
47
48 void pixbuf_set_rect_fill(GdkPixbuf *pb,
49                           gint x, gint y, gint w, gint h,
50                           gint r, gint g, gint b, gint a);
51
52 void pixbuf_set_rect(GdkPixbuf *pb,
53                      gint x, gint y, gint w, gint h,
54                      gint r, gint g, gint b, gint a,
55                      gint left, gint right, gint top, gint bottom);
56
57 void pixbuf_pixel_set(GdkPixbuf *pb, gint x, gint y, gint r, gint g, gint b, gint a);
58
59
60 void pixbuf_draw_layout(GdkPixbuf *pixbuf, PangoLayout *layout, GtkWidget *widget,
61                         gint x, gint y,
62                         guint8 r, guint8 g, guint8 b, guint8 a);
63
64
65 void pixbuf_draw_triangle(GdkPixbuf *pb,
66                           gint clip_x, gint clip_y, gint clip_w, gint clip_h,
67                           gint x1, gint y1, gint x2, gint y2, gint x3, gint y3,
68                           guint8 r, guint8 g, guint8 b, guint8 a);
69
70 void pixbuf_draw_line(GdkPixbuf *pb,
71                       gint clip_x, gint clip_y, gint clip_w, gint clip_h,
72                       gint x1, gint y1, gint x2, gint y2,
73                       guint8 r, guint8 g, guint8 b, guint8 a);
74
75 void pixbuf_draw_shadow(GdkPixbuf *pb,
76                         gint clip_x, gint clip_y, gint clip_w, gint clip_h,
77                         gint x, gint y, gint w, gint h, gint border,
78                         guint8 r, guint8 g, guint8 b, guint8 a);
79
80 /* clipping utils */
81
82 gint util_clip_region(gint x, gint y, gint w, gint h,
83                       gint clip_x, gint clip_y, gint clip_w, gint clip_h,
84                       gint *rx, gint *ry, gint *rw, gint *rh);
85 void util_clip_triangle(gint x1, gint y1, gint x2, gint y2, gint x3, gint y3,
86                         gint *rx, gint *ry, gint *rw, gint *rh);
87
88
89 #endif
90
91