e3d8ca10574ec9e68dc40d40ea98fabb7a363dd3
[ruby-evas.git] / src / rb_rectangle.c
1 /*
2  * $Id: rb_rectangle.c 354 2006-02-10 18:14:08Z 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 /*
30  * call-seq:
31  *  Evas::Rectangle.new(evas) => rect
32  *
33  * Creates an Evas::Rectangle object.
34  */
35 static VALUE c_init (VALUE self, VALUE evas)
36 {
37         CHECK_CLASS (evas, cEvas);
38         GET_OBJ (evas, RbEvas, e);
39         GET_OBJ (self, RbEvasObject, rect);
40
41         rect->real = evas_object_rectangle_add (e->real);
42
43         rb_call_super (1, &evas);
44
45         return self;
46 }
47
48 void Init_Rectangle (void)
49 {
50         VALUE c = rb_define_class_under (mEvas, "Rectangle", cEvasObject);
51
52         rb_define_method (c, "initialize", c_init, 1);
53 }