Macro updates.
[ruby-ecore.git] / src / ecore_evas / rb_gl_x11.c
1 /*
2  * $Id: rb_gl_x11.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, parent, geom[4];
32         Ecore_Evas **ee = NULL;
33         char *cdisp = NULL;
34         int i, igeom[4] = {0, 0, 0, 0};
35
36         self = Data_Make_Struct (klass, Ecore_Evas *,
37                                  NULL, c_ecore_evas_free, ee);
38
39         rb_scan_args (argc, argv, "06", &disp, &parent,
40                       &geom[0], &geom[1], &geom[2], &geom[3]);
41
42         if (!NIL_P (disp)) {
43                 Check_Type (disp, T_STRING);
44                 cdisp = StringValuePtr (disp);
45         }
46
47         for (i = 0; i < 4; i++)
48                 if (!NIL_P (geom[i])) {
49                         Check_Type (geom[i], T_FIXNUM);
50                         igeom[i] = NUM2INT (geom[i]);
51                 }
52
53         ecore_init ();
54         ecore_evas_init ();
55
56         *ee = ecore_evas_gl_x11_new (cdisp, 0,
57                                      igeom[0], igeom[1],
58                                      igeom[2], igeom[3]);
59
60         rb_obj_call_init (self, 0, NULL);
61
62         return self;
63 }
64
65 void Init_GlX11 (void)
66 {
67         VALUE cGlX11 = rb_define_class_under (mEvas, "GlX11", cEcoreEvas);
68
69         rb_define_singleton_method (cGlX11, "new", c_new, -1);
70 }