]> Pileus Git - ~andy/gtk/blob - gdk/gdkcairo.h
65fd59d654866c5ae1d259d6ade2f2f4a9a13039
[~andy/gtk] / gdk / gdkcairo.h
1 /* GDK - The GIMP Drawing Kit
2  * Copyright (C) 2005 Red Hat, Inc. 
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #if !defined (__GDK_H_INSIDE__) && !defined (GDK_COMPILATION)
21 #error "Only <gdk/gdk.h> can be included directly."
22 #endif
23
24 #ifndef __GDK_CAIRO_H__
25 #define __GDK_CAIRO_H__
26
27 #include <gdk/gdkversionmacros.h>
28 #include <gdk/gdkcolor.h>
29 #include <gdk/gdkrgba.h>
30 #include <gdk/gdkpixbuf.h>
31 #include <pango/pangocairo.h>
32
33 G_BEGIN_DECLS
34
35 cairo_t  * gdk_cairo_create             (GdkWindow          *window);
36 gboolean   gdk_cairo_get_clip_rectangle (cairo_t            *cr,
37                                          GdkRectangle       *rect);
38
39 void       gdk_cairo_set_source_rgba    (cairo_t              *cr,
40                                          const GdkRGBA        *rgba);
41 void       gdk_cairo_set_source_pixbuf  (cairo_t              *cr,
42                                          const GdkPixbuf      *pixbuf,
43                                          gdouble               pixbuf_x,
44                                          gdouble               pixbuf_y);
45 void       gdk_cairo_set_source_window  (cairo_t              *cr,
46                                          GdkWindow            *window,
47                                          gdouble               x,
48                                          gdouble               y);
49
50 void       gdk_cairo_rectangle          (cairo_t              *cr,
51                                          const GdkRectangle   *rectangle);
52 void       gdk_cairo_region             (cairo_t              *cr,
53                                          const cairo_region_t *region);
54
55 cairo_region_t *
56            gdk_cairo_region_create_from_surface
57                                         (cairo_surface_t      *surface);
58
59 GDK_DEPRECATED_IN_3_4_FOR(gdk_cairo_set_source_rgba)
60 void       gdk_cairo_set_source_color   (cairo_t              *cr,
61                                          const GdkColor       *color);
62
63 G_END_DECLS
64
65 #endif /* __GDK_CAIRO_H__ */