/*
- * $Id: rb_ecore.c 349 2006-01-29 09:17:44Z tilman $
+ * $Id: rb_ecore.c 360 2006-02-12 15:53:44Z tilman $
*
* Copyright (C) 2004 ruby-ecore team (see AUTHORS)
*
return rb_float_new (ecore_time_get ());
}
+static VALUE m_new_event_type (VALUE self, VALUE klass)
+{
+ VALUE num;
+
+ num = INT2FIX (ecore_event_type_new());
+ rb_hash_aset (event_classes, num, klass);
+
+ return num;
+}
+
+static void free_ruby_event (void *data, void *event)
+{
+ /* do nothing */
+}
+
+static VALUE m_add_event (VALUE self, VALUE type, VALUE event)
+{
+ Check_Type (type, T_FIXNUM);
+
+ ecore_event_add (FIX2INT (type), (void *) event, free_ruby_event, NULL);
+
+ return Qnil;
+}
+
#if 0
static VALUE c_ev_exe_exit_init (VALUE self, VALUE event)
{
rb_define_module_function (mEcore, "main_loop_quit",
m_main_loop_quit, 0);
rb_define_module_function (mEcore, "time", m_time_get, 0);
+ rb_define_module_function (mEcore, "new_event_type",
+ m_new_event_type, 1);
+ rb_define_module_function (mEcore, "add_event", m_add_event, 2);
Init_Timer ();
Init_Animator ();