]> Pileus Git - ~andy/gtk/blob - gtk/gtkborderimageprivate.h
a9d19d0e27fe06ff580e05f44d35df4efbfa7f95
[~andy/gtk] / gtk / gtkborderimageprivate.h
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 2010 Carlos Garnacho <carlosg@gnome.org>
3  * Copyright (C) 2011 Red Hat, Inc.
4  *
5  * Authors: Carlos Garnacho <carlosg@gnome.org>
6  *          Cosimo Cecchi <cosimoc@gnome.org>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the
20  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21  * Boston, MA 02111-1307, USA.
22  */
23
24 #ifndef __GTK_BORDER_IMAGE_H__
25 #define __GTK_BORDER_IMAGE_H__
26
27 #include "gtkborder.h"
28 #include "gtkcssimageprivate.h"
29 #include "gtkthemingengine.h"
30 #include "gtkcsstypesprivate.h"
31
32 G_BEGIN_DECLS
33
34 typedef struct _GtkBorderImage GtkBorderImage;
35
36 GtkBorderImage *  _gtk_border_image_new              (GtkCssImage          *source,
37                                                       GtkBorder            *slice,
38                                                       GtkBorder            *width,
39                                                       GtkCssBorderImageRepeat *repeat);
40 GtkBorderImage *  _gtk_border_image_new_for_engine   (GtkThemingEngine     *engine);
41
42 GtkBorderImage *  _gtk_border_image_ref              (GtkBorderImage       *image);
43 void              _gtk_border_image_unref            (GtkBorderImage       *image);
44
45 void              _gtk_border_image_render           (GtkBorderImage       *image,
46                                                       GtkBorder            *border_width,
47                                                       cairo_t              *cr,
48                                                       gdouble               x,
49                                                       gdouble               y,
50                                                       gdouble               width,
51                                                       gdouble               height);
52
53 G_END_DECLS
54
55 #endif /* __GTK_BORDER_IMAGE_H__ */