bd3fd6c9b076b7ef25f9c52aae5bb45c1cc5d3d6
[ruby-evas.git] / src / rb_gradient.c
1 /*
2  * $Id: rb_gradient.c 32 2004-07-10 14:07:49Z 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 VALUE c_new (VALUE klass, VALUE evas)
30 {
31         VALUE self, argv[1];
32         Evas_Object **rect;
33
34         CHECK_CLASS (evas, cEvas);
35         GET_OBJ (evas, Evas, e);
36
37         self = Data_Make_Struct (klass, Evas_Object *, c_evas_object_mark,
38                                  c_evas_object_free, rect);
39         *rect = evas_object_gradient_add (*e);
40
41         argv[0] = evas;
42         rb_obj_call_init (self, 1, argv);
43
44         return self;
45 }
46
47 static VALUE c_color_add (VALUE self, VALUE r, VALUE g, VALUE b,
48                           VALUE a, VALUE distance)
49 {
50         GET_OBJ (self, Evas_Object, e);
51
52         Check_Type (r, T_FIXNUM);
53         Check_Type (g, T_FIXNUM);
54         Check_Type (b, T_FIXNUM);
55         Check_Type (a, T_FIXNUM);
56         Check_Type (distance, T_FIXNUM);
57
58         evas_object_gradient_color_add (*e, FIX2INT (r), FIX2INT (g),
59                                         FIX2INT (b), FIX2INT (a),
60                                         FIX2INT (distance));
61
62         return Qnil;
63 }
64
65 static VALUE c_colors_clear (VALUE self)
66 {
67         GET_OBJ (self, Evas_Object, e);
68
69         evas_object_gradient_colors_clear (*e);
70
71         return Qnil;
72 }
73
74 static VALUE c_angle_get (VALUE self)
75 {
76         GET_OBJ (self, Evas_Object, e);
77
78         return INT2FIX (evas_object_gradient_angle_get (*e));
79 }
80
81 static VALUE c_angle_set (VALUE self, VALUE val)
82 {
83         GET_OBJ (self, Evas_Object, e);
84
85         Check_Type (val, T_FIXNUM);
86
87         evas_object_gradient_angle_set (*e, FIX2INT (val));
88
89         return Qnil;
90 }
91
92 void Init_Gradient (void)
93 {
94         VALUE cGradient = rb_define_class_under (mEvas, "Gradient",
95                                                  cEvasObject);
96
97         rb_define_singleton_method (cGradient, "new", c_new, 1);
98         rb_define_method (cGradient, "color_add", c_color_add, 5);
99         rb_define_method (cGradient, "colors_clear", c_colors_clear, 0);
100         rb_define_method (cGradient, "angle", c_angle_get, 0);
101         rb_define_method (cGradient, "angle=", c_angle_set, 1);
102 }