edje_init() and edje_shutdown() aren't exported anymore.
[ruby-edje.git] / src / rb_edje_main.c
1 /*
2  * $Id: rb_edje_main.c 28 2004-07-08 18:35:51Z 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
25 #include "rb_edje_main.h"
26 #include "rb_edje.h"
27
28 #ifdef DEBUG
29 static VALUE m_init (VALUE self)
30 {
31         return INT2FIX (edje_init ());
32 }
33
34 static VALUE m_shutdown (VALUE self)
35 {
36         return INT2FIX (edje_shutdown ());
37 }
38 #endif
39
40 static VALUE m_freeze (VALUE self)
41 {
42         edje_freeze ();
43
44         return Qnil;
45 }
46
47 static VALUE m_thaw (VALUE self)
48 {
49         edje_thaw ();
50
51         return Qnil;
52 }
53
54 static VALUE m_frametime_get (VALUE self)
55 {
56         return rb_float_new (edje_frametime_get ());
57 }
58
59 static VALUE m_frametime_set (VALUE self, VALUE val)
60 {
61         Check_Type (val, T_FLOAT);
62
63         edje_frametime_set (NUM2DBL (val));
64
65         return Qnil;
66 }
67
68 void Init_edje (void)
69 {
70         rb_require ("evas");
71
72         mEdje = rb_define_module ("Edje");
73
74 #ifdef DEBUG
75         rb_define_module_function (mEdje, "init", m_init, 0);
76         rb_define_module_function (mEdje, "shutdown", m_shutdown, 0);
77 #endif
78
79         rb_define_module_function (mEdje, "freeze", m_freeze, 0);
80         rb_define_module_function (mEdje, "thaw", m_thaw, 0);
81         rb_define_module_function (mEdje, "frametime", m_frametime_get, 0);
82         rb_define_module_function (mEdje, "frametime=", m_frametime_set, 1);
83
84         Init_Edje ();
85 }
86