Removed RCS-style IDs.
[ruby-evas.git] / src / rb_line.c
1 /*
2  * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de)
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  */
18
19 #include <ruby.h>
20
21 #include <Evas.h>
22
23 #include "rb_evas_main.h"
24 #include "rb_evas.h"
25 #include "rb_evas_object.h"
26
27 static VALUE c_init (VALUE self, VALUE evas)
28 {
29         CHECK_CLASS (evas, cEvas);
30         GET_OBJ (evas, RbEvas, e);
31         GET_OBJ (self, RbEvasObject, line);
32
33         line->real = evas_object_line_add (e->real);
34
35         rb_call_super (1, &evas);
36
37         return self;
38 }
39
40 static VALUE c_get_xy (VALUE self)
41 {
42         int coord[4] = {0, 0, 0, 0};
43
44         GET_OBJ (self, RbEvasObject, e);
45
46         evas_object_line_xy_get (e->real, &coord[0], &coord[1],
47                                  &coord[2], &coord[3]);
48
49         return rb_ary_new3 (4, INT2FIX (coord[0]), INT2FIX (coord[1]),
50                             INT2FIX (coord[2]), INT2FIX (coord[3]));
51 }
52
53 static VALUE c_set_xy (VALUE self, VALUE x1, VALUE y1,
54                        VALUE x2, VALUE y2)
55 {
56         GET_OBJ (self, RbEvasObject, e);
57
58         Check_Type (x1, T_FIXNUM);
59         Check_Type (y1, T_FIXNUM);
60         Check_Type (x2, T_FIXNUM);
61         Check_Type (y2, T_FIXNUM);
62
63         evas_object_line_xy_set (e->real, FIX2INT (x1), FIX2INT (y1),
64                                  FIX2INT (x2), FIX2INT (y2));
65
66         return Qnil;
67 }
68
69 void Init_Line (void)
70 {
71         VALUE c = rb_define_class_under (mEvas, "Line", cEvasObject);
72
73         rb_define_method (c, "initialize", c_init, 1);
74         rb_define_method (c, "get_xy", c_get_xy, 0);
75         rb_define_method (c, "set_xy", c_set_xy, 4);
76 }