]> Pileus Git - ~andy/gtk/blob - gtk/gtkborderimageprivate.h
Strip "Custom." prefix when getting default options from cups.
[~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 struct _GtkBorderImage {
37   GtkCssImage *source;
38
39   GtkBorder slice;
40   gboolean has_width;
41   GtkBorder width;
42   GtkCssBorderImageRepeat repeat;
43 };
44
45 gboolean          _gtk_border_image_init             (GtkBorderImage       *image,
46                                                       GtkThemingEngine     *engine);
47
48 void              _gtk_border_image_render           (GtkBorderImage       *image,
49                                                       GtkBorder            *border_width,
50                                                       cairo_t              *cr,
51                                                       gdouble               x,
52                                                       gdouble               y,
53                                                       gdouble               width,
54                                                       gdouble               height);
55
56 G_END_DECLS
57
58 #endif /* __GTK_BORDER_IMAGE_H__ */