Resolve cWindow reference on init.
[ruby-esmart.git] / src / esmart_trans_x11 / rb_esmart_trans_x11.c
1 /*
2  * $Id: rb_esmart_trans_x11.c 390 2006-11-11 12:10:09Z 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 <Esmart/Esmart_Trans_X11.h>
24 #include <evas/rb_evas.h>
25 #include <evas/rb_evas_object.h>
26 #include <ecore/rb_window.h>
27
28 #include "../rb_esmart.h"
29
30 static VALUE cWindow;
31
32 static VALUE c_init (VALUE self, VALUE evas)
33 {
34         CHECK_CLASS (evas, cEvas);
35         GET_OBJ (evas, RbEvas, e);
36         GET_OBJ (self, RbEvasObject, trans);
37
38         trans->real = esmart_trans_x11_new (e->real);
39
40         rb_call_super (1, &evas);
41
42         return self;
43 }
44
45 static VALUE c_type_get (VALUE self)
46 {
47         GET_OBJ (self, RbEvasObject, e);
48
49         return INT2FIX (esmart_trans_x11_type_get (e->real));
50 }
51
52 static VALUE c_type_set (VALUE self, VALUE val)
53 {
54         GET_OBJ (self, RbEvasObject, e);
55
56         Check_Type (val, T_FIXNUM);
57
58         esmart_trans_x11_type_set (e->real, FIX2INT (val));
59
60         return Qnil;
61 }
62
63 static VALUE c_window_set (VALUE self, VALUE window)
64 {
65         GET_OBJ (self, RbEvasObject, e);
66
67         CHECK_CLASS (window, cWindow);
68         GET_OBJ (window, RbWindow, w);
69
70         esmart_trans_x11_window_set (e->real, w->real);
71
72         return Qnil;
73 }
74
75 static VALUE c_freshen (VALUE self, VALUE x, VALUE y, VALUE w, VALUE h)
76 {
77         GET_OBJ (self, RbEvasObject, e);
78
79         Check_Type (x, T_FIXNUM);
80         Check_Type (y, T_FIXNUM);
81         Check_Type (w, T_FIXNUM);
82         Check_Type (h, T_FIXNUM);
83
84         esmart_trans_x11_freshen (e->real, FIX2INT (x), FIX2INT (y),
85                                   FIX2INT (w), FIX2INT (h));
86
87         return Qnil;
88 }
89
90 void Init_esmart_trans_x11 (void)
91 {
92         VALUE m, c;
93
94         rb_require ("esmart");
95         rb_require ("ecore_x");
96
97         m = rb_const_get (rb_cModule, rb_intern ("Ecore"));
98         m = rb_const_get (m, rb_intern ("X"));
99         cWindow = rb_const_get (m, rb_intern ("Window"));
100
101         c = rb_define_class_under (mEsmart, "TransX11", cEvasObject);
102
103         rb_define_method (c, "initialize", c_init, 1);
104         rb_define_method (c, "type", c_type_get, 0);
105         rb_define_method (c, "type=", c_type_set, 1);
106         rb_define_method (c, "window=", c_window_set, 1);
107         rb_define_method (c, "freshen", c_freshen, 4);
108
109         rb_define_const (c, "BACKGROUND",
110                          INT2FIX (Esmart_Trans_X11_Type_Background));
111         rb_define_const (c, "SCREENGRAB",
112                          INT2FIX (Esmart_Trans_X11_Type_Screengrab));
113 }