9c075de74727125961e28f6945efe61e8d342454
[ruby-edje.git] / src / rb_edje_main.c
1 /*
2  * $Id: rb_edje_main.c 139 2004-10-30 09:41:17Z 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 #include "rb_part.h"
28 #include "rb_messages.h"
29
30 /*
31  * call-seq:
32  *    Edje.freeze => nil
33  *
34  * Freezes all <code>Edje::Edje</code> objects.
35  */
36 static VALUE m_freeze (VALUE self)
37 {
38         edje_freeze ();
39
40         return Qnil;
41 }
42
43 /*
44  * call-seq:
45  *    Edje.thaw => nil
46  *
47  * Thaws all <code>Edje::Edje</code> objects.
48  */
49 static VALUE m_thaw (VALUE self)
50 {
51         edje_thaw ();
52
53         return Qnil;
54 }
55
56 /*
57  * call-seq:
58  *    Edje.frametime => float
59  *
60  * Returns the frametime (1 / fps) for the Edje library.
61  */
62 static VALUE m_frametime_get (VALUE self)
63 {
64         return rb_float_new (edje_frametime_get ());
65 }
66
67 /*
68  * call-seq:
69  *    Edje.frametime(float)
70  *
71  * Sets the frametime (1 / fps) for the Edje library.
72  */
73 static VALUE m_frametime_set (VALUE self, VALUE val)
74 {
75         Check_Type (val, T_FLOAT);
76
77         edje_frametime_set (NUM2DBL (val));
78
79         return Qnil;
80 }
81
82 void Init_edje (void)
83 {
84         rb_require ("evas");
85
86         mEdje = rb_define_module ("Edje");
87
88         rb_define_module_function (mEdje, "freeze", m_freeze, 0);
89         rb_define_module_function (mEdje, "thaw", m_thaw, 0);
90         rb_define_module_function (mEdje, "frametime", m_frametime_get, 0);
91         rb_define_module_function (mEdje, "frametime=", m_frametime_set, 1);
92
93         Init_Edje ();
94         Init_Part ();
95         Init_Messages ();
96 }
97