2 * $Id: rb_polygon.c 23 2004-06-26 22:55:31Z 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 VALUE c_new (VALUE klass, VALUE evas)
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));
41 GET_OBJ (evas, Evas, e, "Evas");
43 self = Data_Make_Struct (klass, Evas_Object *, c_evas_object_mark,
44 c_evas_object_free, rect);
45 *rect = evas_object_polygon_add (*e);
48 rb_obj_call_init (self, 1, argv);
53 static VALUE c_point_add (VALUE self, VALUE x, VALUE y)
55 GET_OBJ (self, Evas_Object, e, "Polygon");
57 Check_Type (x, T_FIXNUM);
58 Check_Type (y, T_FIXNUM);
60 evas_object_polygon_point_add (*e, FIX2INT (x), FIX2INT (y));
65 static VALUE c_points_clear (VALUE self)
67 GET_OBJ (self, Evas_Object, e, "Polygon");
69 evas_object_polygon_points_clear (*e);
74 void Init_Polygon (void)
76 VALUE cPolygon = rb_define_class_under (mEvas, "Polygon",
79 rb_define_singleton_method (cPolygon, "new", c_new, 1);
80 rb_define_method (cPolygon, "point_add", c_point_add, 2);
81 rb_define_method (cPolygon, "points_clear", c_points_clear, 0);