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, see <http://www.gnu.org/licenses/>.
16 */
17
18#ifndef __GDK_CAIRO_H__
19#define __GDK_CAIRO_H__
20
21#if !defined (__GDK_H_INSIDE__) && !defined (GTK_COMPILATION)
22#error "Only <gdk/gdk.h> can be included directly."
23#endif
24
25#include <gdk/gdkversionmacros.h>
26#include <gdk/gdkrgba.h>
27#include <gdk/gdkpixbuf.h>
28#include <pango/pangocairo.h>
29
30G_BEGIN_DECLS
31
32GDK_AVAILABLE_IN_ALL
33void gdk_cairo_set_source_rgba (cairo_t *cr,
34 const GdkRGBA *rgba);
35GDK_AVAILABLE_IN_ALL
36void gdk_cairo_set_source_pixbuf (cairo_t *cr,
37 const GdkPixbuf *pixbuf,
38 double pixbuf_x,
39 double pixbuf_y);
40
41GDK_AVAILABLE_IN_ALL
42void gdk_cairo_rectangle (cairo_t *cr,
43 const GdkRectangle *rectangle);
44GDK_AVAILABLE_IN_ALL
45void gdk_cairo_region (cairo_t *cr,
46 const cairo_region_t *region);
47
48GDK_AVAILABLE_IN_ALL
49cairo_region_t *
50 gdk_cairo_region_create_from_surface
51 (cairo_surface_t *surface);
52
53GDK_DEPRECATED_IN_4_6_FOR(gdk_gl_texture_new)
54void gdk_cairo_draw_from_gl (cairo_t *cr,
55 GdkSurface *surface,
56 int source,
57 int source_type,
58 int buffer_scale,
59 int x,
60 int y,
61 int width,
62 int height);
63
64G_END_DECLS
65
66#endif /* __GDK_CAIRO_H__ */
67

source code of gtk/gdk/gdkcairo.h