X-Git-Url: http://git.code-monkey.de/?p=ruby-edje.git;a=blobdiff_plain;f=src%2Frb_edje_main.c;h=e00a2491e5ab9330dc9b7f66e4fc7500a3f033d3;hp=7444762d1499f2638368f6529e1f23990aacf3da;hb=54d77edaa3b998b749948b7a49ada5c209fbef57;hpb=0dffe66a476ec9d32291a3f37b7dc196860f22b5 diff --git a/src/rb_edje_main.c b/src/rb_edje_main.c index 7444762..e00a249 100644 --- a/src/rb_edje_main.c +++ b/src/rb_edje_main.c @@ -1,5 +1,5 @@ /* - * $Id: rb_edje_main.c 7 2004-06-19 19:32:33Z tilman $ + * $Id: rb_edje_main.c 287 2005-03-15 18:08:01Z tilman $ * * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de) * @@ -24,17 +24,80 @@ #include "rb_edje_main.h" #include "rb_edje.h" +#include "rb_part.h" +#include "rb_messages.h" -static VALUE m_init (VALUE self) +/* + * call-seq: + * Edje.freeze => nil + * + * Freezes all Edje::Edje objects. + */ +static VALUE m_freeze (VALUE self) +{ + edje_freeze (); + + return Qnil; +} + +/* + * call-seq: + * Edje.thaw => nil + * + * Thaws all Edje::Edje objects. + */ +static VALUE m_thaw (VALUE self) +{ + edje_thaw (); + + return Qnil; +} + +/* + * call-seq: + * Edje.frametime => float + * + * Returns the frametime (1 / fps) for the Edje library. + */ +static VALUE m_frametime_get (VALUE self) { - return INT2FIX (edje_init ()); + return rb_float_new (edje_frametime_get ()); } -static VALUE m_shutdown (VALUE self) +/* + * call-seq: + * Edje.frametime(float) + * + * Sets the frametime (1 / fps) for the Edje library. + */ +static VALUE m_frametime_set (VALUE self, VALUE val) { - rb_gc_start (); + Check_Type (val, T_FLOAT); + + edje_frametime_set (NUM2DBL (val)); + + return Qnil; +} + +static VALUE m_collections_get (VALUE self, VALUE file) +{ + VALUE ary; + Evas_List *list, *l; + + Check_Type (file, T_STRING); + + ary = rb_ary_new (); + + list = edje_file_collection_list (StringValuePtr (file)); + if (!list) + return ary; + + for (l = list; l; l = l->next) + rb_ary_push (ary, rb_str_new2 (l->data)); + + edje_file_collection_list_free (list); - return INT2FIX (edje_shutdown ()); + return ary; } void Init_edje (void) @@ -43,9 +106,14 @@ void Init_edje (void) mEdje = rb_define_module ("Edje"); - rb_define_module_function (mEdje, "init", m_init, 0); - rb_define_module_function (mEdje, "shutdown", m_shutdown, 0); + rb_define_module_function (mEdje, "freeze", m_freeze, 0); + rb_define_module_function (mEdje, "thaw", m_thaw, 0); + rb_define_module_function (mEdje, "frametime", m_frametime_get, 0); + rb_define_module_function (mEdje, "frametime=", m_frametime_set, 1); + rb_define_module_function (mEdje, "collections", m_collections_get, 1); Init_Edje (); + Init_Part (); + Init_Messages (); }