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