Macro updates.
[ruby-ecore.git] / src / ecore_evas / rb_fb.c
1 /*
2  * $Id: rb_fb.c 27 2004-07-08 18:25:05Z 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 VALUE c_new (int argc, VALUE *argv, VALUE klass)
30 {
31         VALUE self, disp, rot, w, h;
32         Ecore_Evas **ee = NULL;
33         char *cdisp = NULL;
34         int irot = 0, iw = 0, ih = 0;
35
36         self = Data_Make_Struct (klass, Ecore_Evas *,
37                                  NULL, c_ecore_evas_free, ee);
38
39         rb_scan_args (argc, argv, "04", &disp, &rot, &w, &h);
40
41         if (!NIL_P (disp)) {
42                 Check_Type (disp, T_STRING);
43                 cdisp = StringValuePtr (disp);
44         }
45
46         if (!NIL_P (rot)) {
47                 Check_Type (rot, T_FIXNUM);
48                 irot = NUM2INT (rot);
49         }
50
51         if (!NIL_P (w)) {
52                 Check_Type (w, T_FIXNUM);
53                 iw = NUM2INT (w);
54         }
55
56         if (!NIL_P (h)) {
57                 Check_Type (h, T_FIXNUM);
58                 ih = NUM2INT (h);
59         }
60
61         ecore_init ();
62         ecore_evas_init ();
63
64         *ee = ecore_evas_fb_new (cdisp, irot, iw, ih);
65
66         rb_obj_call_init (self, 0, NULL);
67
68         return self;
69 }
70
71 void Init_Fb (void)
72 {
73         VALUE cFb = rb_define_class_under (mEvas, "Fb", cEcoreEvas);
74
75         rb_define_singleton_method (cFb, "new", c_new, -1);
76 }