Include rb_idle_enterer.h, too.
[ruby-ecore.git] / src / ecore / rb_ecore.c
1 /*
2  * $Id: rb_ecore.c 155 2004-12-09 18:50:20Z tilman $
3  *
4  * Copyright (C) 2004 ruby-ecore team (see AUTHORS)
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 <Ecore.h>
24
25 #define __RB_ECORE_C
26 #include "rb_ecore.h"
27 #include "rb_timer.h"
28 #include "rb_animator.h"
29 #include "rb_idler.h"
30 #include "rb_idle_enterer.h"
31 #include "rb_event_handler.h"
32 #include "rb_fd_handler.h"
33
34 VALUE mEcore;
35
36 /*
37  * call-seq:
38  *  Ecore.main_loop_begin
39  *
40  * Starts the Ecore main loop.
41  */
42 static VALUE m_main_loop_begin (VALUE self)
43 {
44         ecore_main_loop_begin ();
45
46         return Qnil;
47 }
48
49 /*
50  * call-seq:
51  *  Ecore.main_loop_iterate
52  *
53  * Run one iteration of the Ecore main loop.
54  */
55 static VALUE m_main_loop_iterate (VALUE self)
56 {
57         ecore_main_loop_iterate ();
58
59         return Qnil;
60 }
61
62 /*
63  * call-seq:
64  *  Ecore.main_loop_quit
65  *
66  * Stops the Ecore main loop.
67  */
68 static VALUE m_main_loop_quit (VALUE self)
69 {
70         ecore_main_loop_quit ();
71
72         return Qnil;
73 }
74
75 static VALUE m_time_get (VALUE self)
76 {
77         return rb_float_new (ecore_time_get ());
78 }
79
80 static VALUE c_ev_exe_exit_init (VALUE self, VALUE event)
81 {
82         VALUE c = CLASS_OF (self);
83         Ecore_Event_Exe_Exit *e = (void *) event;
84
85         rb_define_attr (c, "pid", 1, 0);
86         rb_define_attr (c, "exit_code", 1, 0);
87         rb_define_attr (c, "exit_signal", 1, 0);
88         rb_define_attr (c, "exited", 1, 0);
89         rb_define_attr (c, "signalled", 1, 0);
90
91         rb_iv_set (self, "@pid", INT2FIX (e->pid));
92         rb_iv_set (self, "@exit_code", INT2FIX (e->exit_code));
93         rb_iv_set (self, "@exit_signal", INT2FIX (e->exit_signal));
94         rb_iv_set (self, "@exited", e->exited ? Qtrue : Qfalse);
95         rb_iv_set (self, "@signalled", e->signalled ? Qtrue : Qfalse);
96
97         return self;
98 }
99
100 static VALUE c_ev_sig_user_init (VALUE self, VALUE event)
101 {
102         Ecore_Event_Signal_User *e = (void *) event;
103
104         rb_define_attr (CLASS_OF (self), "number", 1, 0);
105
106         rb_iv_set (self, "@number", INT2FIX (e->number));
107
108         return self;
109 }
110
111 static VALUE c_ev_sig_exit_init (VALUE self, VALUE event)
112 {
113         VALUE c = CLASS_OF (self);
114         Ecore_Event_Signal_Exit *e = (void *) event;
115
116         rb_define_attr (c, "interrupt", 1, 0);
117         rb_define_attr (c, "quit", 1, 0);
118         rb_define_attr (c, "terminate", 1, 0);
119
120         rb_iv_set (self, "@interrupt", e->interrupt ? Qtrue : Qfalse);
121         rb_iv_set (self, "@quit", e->quit ? Qtrue : Qfalse);
122         rb_iv_set (self, "@terminate", e->terminate ? Qtrue : Qfalse);
123
124         return self;
125 }
126
127 static VALUE c_ev_sig_rt_init (VALUE self, VALUE event)
128 {
129         Ecore_Event_Signal_Realtime *e = (void *) event;
130
131         rb_define_attr (CLASS_OF (self), "number", 1, 0);
132
133         rb_iv_set (self, "@number", INT2FIX (e->num));
134
135         return self;
136 }
137
138 void Init_ecore (void)
139 {
140         VALUE c;
141
142         mEcore = rb_define_module ("Ecore");
143
144         rb_define_module_function (mEcore, "main_loop_begin",
145                                    m_main_loop_begin, 0);
146         rb_define_module_function (mEcore, "main_loop_iterate",
147                                    m_main_loop_iterate, 0);
148         rb_define_module_function (mEcore, "main_loop_quit",
149                                    m_main_loop_quit, 0);
150         rb_define_module_function (mEcore, "time", m_time_get, 0);
151
152         Init_Timer ();
153         Init_Animator ();
154         Init_Idler ();
155         Init_IdleEnterer ();
156         Init_EventHandler ();
157         Init_FdHandler ();
158
159         /* SIGNAL_HUP */
160         ADD_EVENT (mEcore, ECORE_EVENT_, SIGNAL_HUP,
161                    "SignalHup", c);
162         rb_define_private_method (c, "initialize", c_ev_generic_init, 1);
163
164         /* SIGNAL_POWER */
165         ADD_EVENT (mEcore, ECORE_EVENT_, SIGNAL_POWER,
166                    "SignalPower", c);
167         rb_define_private_method (c, "initialize", c_ev_generic_init, 1);
168
169         /* EXE_EXIT */
170         ADD_EVENT (mEcore, ECORE_EVENT_, EXE_EXIT, "ExeExit", c);
171         rb_define_private_method (c, "initialize", c_ev_exe_exit_init, 1);
172
173         /* SIGNAL_USER */
174         ADD_EVENT (mEcore, ECORE_EVENT_, SIGNAL_USER,
175                    "SignalUser", c);
176         rb_define_private_method (c, "initialize", c_ev_sig_user_init, 1);
177
178         /* SIGNAL_EXIT */
179         ADD_EVENT (mEcore, ECORE_EVENT_, SIGNAL_EXIT,
180                    "SignalExit", c);
181         rb_define_private_method (c, "initialize", c_ev_sig_exit_init, 1);
182
183         /* SIGNAL_REALTIME */
184         ADD_EVENT (mEcore, ECORE_EVENT_, SIGNAL_REALTIME,
185                    "SignalRealtime", c);
186         rb_define_private_method (c, "initialize", c_ev_sig_rt_init, 1);
187 }
188