Don't depend on header files for class information.
[ruby-esmart.git] / src / esmart_trans_x11 / rb_esmart_trans_x11.c
1 /*
2  * $Id: rb_esmart_trans_x11.c 41 2004-07-25 13:15:54Z 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 <rb_evas.h>
25 #include <rb_evas_object.h>
26
27 #include "../rb_esmart.h"
28
29 static VALUE c_new (VALUE klass, VALUE evas)
30 {
31         VALUE self, argv[1];
32         Evas_Object **trans;
33
34         CHECK_CLASS (evas, cEvas);
35         GET_OBJ (evas, Evas *, e);
36
37         self = Data_Make_Struct (klass, Evas_Object *, c_evas_object_mark,
38                                  c_evas_object_free, trans);
39         *trans = esmart_trans_x11_new (*e);
40
41         argv[0] = evas;
42         rb_obj_call_init (self, 1, argv);
43
44         return self;
45 }
46
47 static VALUE c_type_get (VALUE self)
48 {
49         GET_OBJ (self, Evas_Object *, e);
50
51         return INT2FIX (esmart_trans_x11_type_get (*e));
52 }
53
54 static VALUE c_type_set (VALUE self, VALUE val)
55 {
56         GET_OBJ (self, Evas_Object *, e);
57
58         Check_Type (val, T_FIXNUM);
59
60         esmart_trans_x11_type_set (*e, FIX2INT (val));
61
62         return Qnil;
63 }
64
65 static VALUE c_window_set (VALUE self, VALUE window)
66 {
67         static VALUE c;
68
69         GET_OBJ (self, Evas_Object *, e);
70
71         if (!c)
72                 c = rb_eval_string ("Ecore::X::Window");
73
74         CHECK_CLASS (window, c);
75         GET_OBJ (window, Ecore_X_Window, w);
76
77         esmart_trans_x11_window_set (*e, *w);
78
79         return Qnil;
80 }
81
82 static VALUE c_freshen (VALUE self, VALUE x, VALUE y, VALUE w, VALUE h)
83 {
84         GET_OBJ (self, Evas_Object *, e);
85
86         Check_Type (x, T_FIXNUM);
87         Check_Type (y, T_FIXNUM);
88         Check_Type (w, T_FIXNUM);
89         Check_Type (h, T_FIXNUM);
90
91         esmart_trans_x11_freshen (*e, FIX2INT (x), FIX2INT (y),
92                                   FIX2INT (w), FIX2INT (h));
93
94         return Qnil;
95 }
96
97 void Init_esmart_trans_x11 (void)
98 {
99         VALUE c;
100
101         rb_require ("esmart");
102         rb_require ("ecore_x");
103
104         c = rb_define_class_under (mEsmart, "TransX11", cEvasObject);
105
106         rb_define_singleton_method (c, "new", c_new, 1);
107         rb_define_method (c, "type", c_type_get, 0);
108         rb_define_method (c, "type=", c_type_set, 1);
109         rb_define_method (c, "window=", c_window_set, 1);
110         rb_define_method (c, "freshen", c_freshen, 4);
111
112         rb_define_const (c, "BACKGROUND",
113                          INT2FIX (Esmart_Trans_X11_Type_Background));
114         rb_define_const (c, "SCREENGRAB",
115                          INT2FIX (Esmart_Trans_X11_Type_Screengrab));
116 }