summaryrefslogtreecommitdiff
path: root/libmetacity/meta-gradient-spec-private.h
blob: e9e0a01a796658db781b3fba1d2b439503f7d1ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/*
 * Copyright (C) 2001 Havoc Pennington
 * Copyright (C) 2016 Alberts Muktupāvels
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef META_GRADIENT_SPEC_PRIVATE_H
#define META_GRADIENT_SPEC_PRIVATE_H

#include <gtk/gtk.h>

G_BEGIN_DECLS

typedef struct _MetaAlphaGradientSpec MetaAlphaGradientSpec;
typedef struct _MetaGradientSpec MetaGradientSpec;

/**
 * MetaGradientType:
 * @META_GRADIENT_VERTICAL: Vertical gradient
 * @META_GRADIENT_HORIZONTAL: Horizontal gradient
 * @META_GRADIENT_DIAGONAL: Diagonal gradient
 * @META_GRADIENT_LAST: Marks the end of the #MetaGradientType enumeration
 *
 */
typedef enum
{
  META_GRADIENT_VERTICAL,
  META_GRADIENT_HORIZONTAL,
  META_GRADIENT_DIAGONAL,
  META_GRADIENT_LAST
} MetaGradientType;

G_GNUC_INTERNAL
MetaGradientSpec      *meta_gradient_spec_new               (MetaGradientType         type);

G_GNUC_INTERNAL
void                   meta_gradient_spec_free              (MetaGradientSpec        *spec);

G_GNUC_INTERNAL
void                   meta_gradient_spec_add_color_spec    (MetaGradientSpec        *spec,
                                                             MetaColorSpec           *color_spec);

G_GNUC_INTERNAL
void                   meta_gradient_spec_render            (const MetaGradientSpec       *spec,
                                                             const MetaAlphaGradientSpec  *alpha_spec,
                                                             cairo_t                      *cr,
                                                             GtkStyleContext              *context,
                                                             gdouble                       x,
                                                             gdouble                       y,
                                                             gdouble                       width,
                                                             gdouble                       height);

G_GNUC_INTERNAL
gboolean               meta_gradient_spec_validate          (MetaGradientSpec        *spec,
                                                             GError                 **error);

G_GNUC_INTERNAL
MetaAlphaGradientSpec *meta_alpha_gradient_spec_new         (MetaGradientType         type,
                                                             gint                     n_alphas);

G_GNUC_INTERNAL
void                   meta_alpha_gradient_spec_free        (MetaAlphaGradientSpec   *spec);

G_GNUC_INTERNAL
void                   meta_alpha_gradient_spec_add_alpha   (MetaAlphaGradientSpec   *spec,
                                                             gint                     n_alpha,
                                                             gdouble                  alpha);

G_GNUC_INTERNAL
guchar                 meta_alpha_gradient_spec_get_alpha   (MetaAlphaGradientSpec   *spec,
                                                             gint                     n_alpha);

G_GNUC_INTERNAL
void                   meta_alpha_gradient_spec_render      (MetaAlphaGradientSpec   *spec,
                                                             GdkRGBA                  color,
                                                             cairo_t                 *cr,
                                                             gdouble                  x,
                                                             gdouble                  y,
                                                             gdouble                  width,
                                                             gdouble                  height);

G_GNUC_INTERNAL
cairo_pattern_t       *meta_alpha_gradient_spec_get_mask    (const MetaAlphaGradientSpec  *spec);

G_END_DECLS

#endif