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