Updated copyright notice. Added event handler code.
[ruby-ecore.git] / src / ecore_evas / rb_software_x11.c
1 /*
2  * $Id: rb_software_x11.c 77 2004-08-19 17:39:29Z tilman $
3  *
4  * Copyright (C) 2004 ruby-ecore team (see AUTHORS)
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 #include <stdbool.h>
23
24 #include <Ecore.h>
25 #include <Ecore_Evas.h>
26
27 #include "../ecore/rb_ecore.h"
28 #include "../ecore_x/rb_window.h"
29 #include "rb_ecore_evas_main.h"
30 #include "rb_ecore_evas.h"
31
32 typedef struct {
33         RbEcoreEvas ee;
34         VALUE window;
35 } RbEcoreEvasSoftwareX11;
36
37 static void c_mark (RbEcoreEvasSoftwareX11 *ee)
38 {
39         c_ecore_evas_mark (&ee->ee);
40
41         if (!NIL_P (ee->window))
42                 rb_gc_mark (ee->window);
43 }
44
45 static void c_free (RbEcoreEvasSoftwareX11 *ee)
46 {
47         c_ecore_evas_free (&ee->ee, false);
48
49         free (ee);
50 }
51
52 /*
53  * call-seq:
54  *  Ecore::Evas::SoftwareX11.new([display, parent, x, y, w, h]) => swx11
55  *
56  * Creates an Ecore::Evas::SoftwareX11 object.
57  */
58 static VALUE c_new (int argc, VALUE *argv, VALUE klass)
59 {
60         VALUE self, disp, parent, geom[4];
61         RbEcoreEvasSoftwareX11 *ee = NULL;
62         char *cdisp = NULL;
63         int i, igeom[4] = {0, 0, 0, 0};
64
65         self = Data_Make_Struct (klass, RbEcoreEvasSoftwareX11,
66                                  c_mark, c_free, ee);
67
68         rb_scan_args (argc, argv, "06", &disp, &parent,
69                       &geom[0], &geom[1], &geom[2], &geom[3]);
70
71         if (!NIL_P (disp)) {
72                 Check_Type (disp, T_STRING);
73                 cdisp = StringValuePtr (disp);
74         }
75
76         for (i = 0; i < 4; i++)
77                 if (!NIL_P (geom[i])) {
78                         Check_Type (geom[i], T_FIXNUM);
79                         igeom[i] = FIX2INT (geom[i]);
80                 }
81
82         ecore_init ();
83         ecore_evas_init ();
84
85         ee->ee.real = ecore_evas_software_x11_new (cdisp, 0,
86                                                    igeom[0], igeom[1],
87                                                    igeom[2], igeom[3]);
88         ee->window = Qnil;
89
90         rb_obj_call_init (self, 0, NULL);
91
92         return self;
93 }
94
95 /*
96  * call-seq:
97  *  swx11.window => window
98  *
99  * Returns the <code>Ecore::X::Window</code> object for <i>swx11</i>.
100  */
101 static VALUE c_window_get (VALUE self)
102 {
103         Ecore_X_Window w;
104
105         GET_OBJ (self, RbEcoreEvasSoftwareX11, ee);
106
107         if (NIL_P (ee->window)) {
108                 w = ecore_evas_software_x11_window_get (ee->ee.real);
109                 ee->window = TO_ECORE_X_WINDOW (self, w);
110         }
111
112         return ee->window;
113 }
114
115 void Init_SoftwareX11 (void)
116 {
117         VALUE c;
118
119         rb_require ("ecore_x");
120
121         c = rb_define_class_under (mEvas, "SoftwareX11", cEcoreEvas);
122
123         rb_define_singleton_method (c, "new", c_new, -1);
124         rb_define_method (c, "window", c_window_get, 0);
125 }