We now use real structs to wrap objects.
[ruby-evas.git] / src / rb_line.c
1 /*
2  * $Id: rb_line.c 49 2004-08-01 10:17:39Z 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 static VALUE c_new (VALUE klass, VALUE evas)
35 {
36         VALUE self, argv[1];
37         RbEvasObject *line;
38
39         CHECK_CLASS (evas, cEvas);
40         GET_OBJ (evas, RbEvas, e);
41
42         self = Data_Make_Struct (klass, RbEvasObject, c_evas_object_mark,
43                                  c_free, line);
44         line->real = evas_object_line_add (e->real);
45
46         argv[0] = evas;
47         rb_obj_call_init (self, 1, argv);
48
49         return self;
50 }
51
52 static VALUE c_get_xy (VALUE self)
53 {
54         int coord[4] = {0, 0, 0, 0};
55
56         GET_OBJ (self, RbEvasObject, e);
57
58         evas_object_line_xy_get (e->real, &coord[0], &coord[1],
59                                  &coord[2], &coord[3]);
60
61         return rb_ary_new3 (4, INT2FIX (coord[0]), INT2FIX (coord[1]),
62                             INT2FIX (coord[2]), INT2FIX (coord[3]));
63 }
64
65 static VALUE c_set_xy (VALUE self, VALUE x1, VALUE y1,
66                        VALUE x2, VALUE y2)
67 {
68         GET_OBJ (self, RbEvasObject, e);
69
70         Check_Type (x1, T_FIXNUM);
71         Check_Type (y1, T_FIXNUM);
72         Check_Type (x2, T_FIXNUM);
73         Check_Type (y2, T_FIXNUM);
74
75         evas_object_line_xy_set (e->real, FIX2INT (x1), FIX2INT (y1),
76                                  FIX2INT (x2), FIX2INT (y2));
77
78         return Qnil;
79 }
80
81 void Init_Line (void)
82 {
83         VALUE c = rb_define_class_under (mEvas, "Line", cEvasObject);
84
85         rb_define_singleton_method (c, "new", c_new, 1);
86         rb_define_method (c, "get_xy", c_get_xy, 0);
87         rb_define_method (c, "set_xy", c_set_xy, 4);
88 }