Initial commit.
[ruby-ecore.git] / src / ecore_evas / rb_software_x11.c
1 /*
2  * $Id$
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_Evas.h>
24
25 #include "rb_ecore_evas_main.h"
26 #include "rb_ecore_evas.h"
27
28 VALUE cGlX11;
29
30 static VALUE c_init (int argc, VALUE *argv, VALUE self)
31 {
32         VALUE disp, parent, geom[4];
33         Ecore_Evas **ee = NULL;
34         char *cdisp = NULL;
35         int i, igeom[4] = {0};
36
37         Data_Get_Struct (self, Ecore_Evas *, 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 = STR2CSTR (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         *ee = ecore_evas_gl_x11_new (cdisp, 0,
54                                      igeom[0], igeom[1],
55                                      igeom[2], igeom[3]);
56
57         return self;
58 }
59
60 static VALUE c_new (int argc, VALUE *argv, VALUE klass)
61 {
62         VALUE self;
63         Ecore_Evas **ee;
64
65         self = Data_Make_Struct (klass, Ecore_Evas *,
66                                  NULL, c_ecore_evas_free, ee);
67
68         rb_obj_call_init (self, argc, argv);
69
70         return self;
71 }
72
73 void Init_GlX11 (void)
74 {
75         cGlX11 = rb_define_class_under (mEvas, "GlX11", cEcoreEvas);
76
77         rb_define_singleton_method (cGlX11, "new", c_new, -1);
78         rb_define_method (cGlX11, "initialize", c_init, -1);
79 }
80