2 * $Id: rb_gradient.c 49 2004-08-01 10:17:39Z tilman $
4 * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de)
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.
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.
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
25 #include "rb_evas_main.h"
27 #include "rb_evas_object.h"
29 static void c_free (RbEvasObject *e)
31 c_evas_object_free (e, true);
34 static VALUE c_new (VALUE klass, VALUE evas)
39 CHECK_CLASS (evas, cEvas);
40 GET_OBJ (evas, RbEvas, e);
42 self = Data_Make_Struct (klass, RbEvasObject, c_evas_object_mark,
44 rect->real = evas_object_gradient_add (e->real);
47 rb_obj_call_init (self, 1, argv);
52 static VALUE c_color_add (VALUE self, VALUE r, VALUE g, VALUE b,
53 VALUE a, VALUE distance)
55 GET_OBJ (self, RbEvasObject, e);
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);
63 evas_object_gradient_color_add (e->real, FIX2INT (r), FIX2INT (g),
64 FIX2INT (b), FIX2INT (a),
70 static VALUE c_colors_clear (VALUE self)
72 GET_OBJ (self, RbEvasObject, e);
74 evas_object_gradient_colors_clear (e->real);
79 static VALUE c_angle_get (VALUE self)
81 GET_OBJ (self, RbEvasObject, e);
83 return INT2FIX (evas_object_gradient_angle_get (e->real));
86 static VALUE c_angle_set (VALUE self, VALUE val)
88 GET_OBJ (self, RbEvasObject, e);
90 Check_Type (val, T_FIXNUM);
92 evas_object_gradient_angle_set (e->real, FIX2INT (val));
97 void Init_Gradient (void)
99 VALUE c = rb_define_class_under (mEvas, "Gradient", cEvasObject);
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);