Added keywords.
[ruby-edje.git] / src / rb_edje.c
1 /*
2  * $Id: rb_edje.c 7 2004-06-19 19:32:33Z 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 <Edje.h>
24 #include <rb_evas.h>
25 #include <rb_evas_object.h>
26
27 #include "rb_edje_main.h"
28
29 #define GET_OBJ(obj, type, o, desc) \
30         type **(o) = NULL; \
31 \
32         Data_Get_Struct ((obj), type *, (o)); \
33 \
34         if (!*(o)) { \
35                 rb_raise (rb_eException, desc " destroyed already"); \
36                 return Qnil; \
37         }
38
39 VALUE cEdje;
40
41 static VALUE c_new (VALUE klass, VALUE evas)
42 {
43         VALUE self, argv[1];
44         Evas_Object **edje;
45
46         GET_OBJ (evas, Evas, e, "Evas");
47
48         self = Data_Make_Struct (klass, Evas_Object *, c_evas_object_mark,
49                                  c_evas_object_free, edje);
50         *edje = edje_object_add (*e);
51
52         argv[0] = evas;
53         rb_obj_call_init (self, 1, argv);
54
55         return self;
56 }
57
58 static VALUE c_load (VALUE self, VALUE eet, VALUE group)
59 {
60         GET_OBJ (self, Evas_Object, e, "EvasObject");
61
62         Check_Type (eet, T_STRING);
63         Check_Type (group, T_STRING);
64
65         if (!edje_object_file_set (*e, STR2CSTR (eet), STR2CSTR (group)))
66                 rb_raise (rb_eException, "Cannot load eet");
67
68         return Qnil;
69 }
70
71 void Init_Edje (void)
72 {
73         cEdje = rb_define_class_under (mEdje, "Edje", cEvasObject);
74
75         rb_define_singleton_method (cEdje, "new", c_new, 1);
76         rb_define_method (cEdje, "load", c_load, 2);
77 }
78