e597685475aaee79671bbac0fdcd5a362acdc156
[ruby-evas.git] / src / rb_gradient.c
1 /*
2  * $Id: rb_gradient.c 49 2004-08-01 10:17:39Z tilman $
3  *
4  * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de)
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #include <ruby.h>
22
23 #include <Evas.h>
24
25 #include "rb_evas_main.h"
26 #include "rb_evas.h"
27 #include "rb_evas_object.h"
28
29 static void c_free (RbEvasObject *e)
30 {
31         c_evas_object_free (e, true);
32 }
33
34 static VALUE c_new (VALUE klass, VALUE evas)
35 {
36         VALUE self, argv[1];
37         RbEvasObject *rect;
38
39         CHECK_CLASS (evas, cEvas);
40         GET_OBJ (evas, RbEvas, e);
41
42         self = Data_Make_Struct (klass, RbEvasObject, c_evas_object_mark,
43                                  c_free, rect);
44         rect->real = evas_object_gradient_add (e->real);
45
46         argv[0] = evas;
47         rb_obj_call_init (self, 1, argv);
48
49         return self;
50 }
51
52 static VALUE c_color_add (VALUE self, VALUE r, VALUE g, VALUE b,
53                           VALUE a, VALUE distance)
54 {
55         GET_OBJ (self, RbEvasObject, e);
56
57         Check_Type (r, T_FIXNUM);
58         Check_Type (g, T_FIXNUM);
59         Check_Type (b, T_FIXNUM);
60         Check_Type (a, T_FIXNUM);
61         Check_Type (distance, T_FIXNUM);
62
63         evas_object_gradient_color_add (e->real, FIX2INT (r), FIX2INT (g),
64                                         FIX2INT (b), FIX2INT (a),
65                                         FIX2INT (distance));
66
67         return Qnil;
68 }
69
70 static VALUE c_colors_clear (VALUE self)
71 {
72         GET_OBJ (self, RbEvasObject, e);
73
74         evas_object_gradient_colors_clear (e->real);
75
76         return Qnil;
77 }
78
79 static VALUE c_angle_get (VALUE self)
80 {
81         GET_OBJ (self, RbEvasObject, e);
82
83         return INT2FIX (evas_object_gradient_angle_get (e->real));
84 }
85
86 static VALUE c_angle_set (VALUE self, VALUE val)
87 {
88         GET_OBJ (self, RbEvasObject, e);
89
90         Check_Type (val, T_FIXNUM);
91
92         evas_object_gradient_angle_set (e->real, FIX2INT (val));
93
94         return Qnil;
95 }
96
97 void Init_Gradient (void)
98 {
99         VALUE c = rb_define_class_under (mEvas, "Gradient", cEvasObject);
100
101         rb_define_singleton_method (c, "new", c_new, 1);
102         rb_define_method (c, "color_add", c_color_add, 5);
103         rb_define_method (c, "colors_clear", c_colors_clear, 0);
104         rb_define_method (c, "angle", c_angle_get, 0);
105         rb_define_method (c, "angle=", c_angle_set, 1);
106 }