X-Git-Url: http://git.code-monkey.de/?p=ruby-edje.git;a=blobdiff_plain;f=src%2Frb_edje_main.c;h=d11d4565121cf206f3f1a460d18782173f0cd372;hp=f9c37bc6c54930ebaec15bceb6a6925428c84eef;hb=9df644ecd3547f65ac0685ce46c6f2f6bb50d089;hpb=e677d2b2bc8c9bbe883278a0f5b63e16a14820cf diff --git a/src/rb_edje_main.c b/src/rb_edje_main.c index f9c37bc..d11d456 100644 --- a/src/rb_edje_main.c +++ b/src/rb_edje_main.c @@ -1,5 +1,5 @@ /* - * $Id: rb_edje_main.c 17 2004-06-22 19:37:54Z tilman $ + * $Id: rb_edje_main.c 330 2005-04-28 15:38:47Z tilman $ * * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de) * @@ -24,19 +24,14 @@ #include "rb_edje_main.h" #include "rb_edje.h" +#include "rb_part.h" -static VALUE m_init (VALUE self) -{ - return INT2FIX (edje_init ()); -} - -static VALUE m_shutdown (VALUE self) -{ - rb_gc_start (); - - return INT2FIX (edje_shutdown ()); -} - +/* + * call-seq: + * Edje.freeze => nil + * + * Freezes all Edje::Edje objects. + */ static VALUE m_freeze (VALUE self) { edje_freeze (); @@ -44,6 +39,12 @@ static VALUE m_freeze (VALUE self) return Qnil; } +/* + * call-seq: + * Edje.thaw => nil + * + * Thaws all Edje::Edje objects. + */ static VALUE m_thaw (VALUE self) { edje_thaw (); @@ -51,11 +52,23 @@ static VALUE m_thaw (VALUE self) return Qnil; } +/* + * call-seq: + * Edje.frametime => float + * + * Returns the frametime (1 / fps) for the Edje library. + */ static VALUE m_frametime_get (VALUE self) { return rb_float_new (edje_frametime_get ()); } +/* + * call-seq: + * Edje.frametime(float) + * + * Sets the frametime (1 / fps) for the Edje library. + */ static VALUE m_frametime_set (VALUE self, VALUE val) { Check_Type (val, T_FLOAT); @@ -65,19 +78,40 @@ static VALUE m_frametime_set (VALUE self, VALUE 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 ary; +} + void Init_edje (void) { rb_require ("evas"); 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 (); }