We now use real structs to wrap objects.
[ruby-ecore.git] / src / ecore_evas / rb_fb.c
1 /*
2  * $Id: rb_fb.c 50 2004-08-01 10:18: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 <Ecore.h>
24 #include <Ecore_Evas.h>
25
26 #include "rb_ecore_evas_main.h"
27 #include "rb_ecore_evas.h"
28
29 static void c_free (RbEcoreEvas *ee)
30 {
31         c_ecore_evas_free (ee, true);
32 }
33
34 static VALUE c_new (int argc, VALUE *argv, VALUE klass)
35 {
36         VALUE self, disp, rot, w, h;
37         RbEcoreEvas *ee = NULL;
38         char *cdisp = NULL;
39         int irot = 0, iw = 0, ih = 0;
40
41         self = Data_Make_Struct (klass, RbEcoreEvas,
42                                  c_ecore_evas_mark, c_free, ee);
43
44         rb_scan_args (argc, argv, "04", &disp, &rot, &w, &h);
45
46         if (!NIL_P (disp)) {
47                 Check_Type (disp, T_STRING);
48                 cdisp = StringValuePtr (disp);
49         }
50
51         if (!NIL_P (rot)) {
52                 Check_Type (rot, T_FIXNUM);
53                 irot = FIX2INT (rot);
54         }
55
56         if (!NIL_P (w)) {
57                 Check_Type (w, T_FIXNUM);
58                 iw = FIX2INT (w);
59         }
60
61         if (!NIL_P (h)) {
62                 Check_Type (h, T_FIXNUM);
63                 ih = FIX2INT (h);
64         }
65
66         ecore_init ();
67         ecore_evas_init ();
68
69         ee->real = ecore_evas_fb_new (cdisp, irot, iw, ih);
70
71         rb_obj_call_init (self, 0, NULL);
72
73         return self;
74 }
75
76 void Init_Fb (void)
77 {
78         VALUE c = rb_define_class_under (mEvas, "Fb", cEcoreEvas);
79
80         rb_define_singleton_method (c, "new", c_new, -1);
81 }