]> Pileus Git - ~andy/gtk/blob - gtk/gtkgradient.h
API: Add gtk_gradient_to_string()
[~andy/gtk] / gtk / gtkgradient.h
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 2010 Carlos Garnacho <carlosg@gnome.org>
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 (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
21 #error "Only <gtk/gtk.h> can be included directly."
22 #endif
23
24 #ifndef __GTK_GRADIENT_H__
25 #define __GTK_GRADIENT_H__
26
27 #include <gdk/gdk.h>
28 #include <gtk/gtkstyleproperties.h>
29 #include <gtk/gtksymboliccolor.h>
30
31 G_BEGIN_DECLS
32
33 #define GTK_TYPE_GRADIENT (gtk_gradient_get_type ())
34
35 GType         gtk_gradient_get_type       (void) G_GNUC_CONST;
36
37 GtkGradient * gtk_gradient_new_linear     (gdouble              x0,
38                                            gdouble              y0,
39                                            gdouble              x1,
40                                            gdouble              y1);
41 GtkGradient * gtk_gradient_new_radial     (gdouble              x0,
42                                            gdouble              y0,
43                                            gdouble              radius0,
44                                            gdouble              x1,
45                                            gdouble              y1,
46                                            gdouble              radius1);
47
48 void          gtk_gradient_add_color_stop (GtkGradient         *gradient,
49                                            gdouble              offset,
50                                            GtkSymbolicColor    *color);
51
52 GtkGradient * gtk_gradient_ref            (GtkGradient         *gradient);
53 void          gtk_gradient_unref          (GtkGradient         *gradient);
54
55 gboolean      gtk_gradient_resolve        (GtkGradient         *gradient,
56                                            GtkStyleProperties  *props,
57                                            cairo_pattern_t    **resolved_gradient);
58
59 char *        gtk_gradient_to_string      (GtkGradient         *gradient);
60
61 G_END_DECLS
62
63 #endif /* __GTK_GRADIENT_H__ */