Documentation arrived.
[ruby-evas.git] / src / rb_polygon.c
1 /*
2  * $Id: rb_polygon.c 58 2004-08-10 14:10:02Z 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 /*
35  * call-seq:
36  *  Evas::Polygon.new(evas) => polygon
37  *
38  * Creates an new Evas::Polygon object.
39  */
40 static VALUE c_new (VALUE klass, VALUE evas)
41 {
42         VALUE self, argv[1];
43         RbEvasObject *poly;
44
45         CHECK_CLASS (evas, cEvas);
46         GET_OBJ (evas, RbEvas, e);
47
48         self = Data_Make_Struct (klass, RbEvasObject, c_evas_object_mark,
49                                  c_free, poly);
50         poly->real = evas_object_polygon_add (e->real);
51
52         argv[0] = evas;
53         rb_obj_call_init (self, 1, argv);
54
55         return self;
56 }
57
58 /*
59  * call-seq:
60  *  polygon.add_point(x, y) => nil
61  *
62  * Adds a point to <i>polygon</i>.
63  */
64 static VALUE c_add_point (VALUE self, VALUE x, VALUE y)
65 {
66         GET_OBJ (self, RbEvasObject, e);
67
68         Check_Type (x, T_FIXNUM);
69         Check_Type (y, T_FIXNUM);
70
71         evas_object_polygon_point_add (e->real, FIX2INT (x), FIX2INT (y));
72
73         return Qnil;
74 }
75
76 /*
77  * call-seq:
78  *  polygon.clear_points => nil
79  *
80  * Clears the points of <i>polygon</i>.
81  */
82 static VALUE c_clear_points (VALUE self)
83 {
84         GET_OBJ (self, RbEvasObject, e);
85
86         evas_object_polygon_points_clear (e->real);
87
88         return Qnil;
89 }
90
91 void Init_Polygon (void)
92 {
93         VALUE c = rb_define_class_under (mEvas, "Polygon", cEvasObject);
94
95         rb_define_singleton_method (c, "new", c_new, 1);
96         rb_define_method (c, "add_point", c_add_point, 2);
97         rb_define_method (c, "clear_points", c_clear_points, 0);
98 }