From: Tilman Sauerbeck Date: Tue, 15 Mar 2005 18:08:01 +0000 (+0000) Subject: Implemented Edje.collections. X-Git-Url: http://git.code-monkey.de/?p=ruby-edje.git;a=commitdiff_plain;h=54d77edaa3b998b749948b7a49ada5c209fbef57 Implemented Edje.collections. --- diff --git a/src/rb_edje_main.c b/src/rb_edje_main.c index 9c075de..e00a249 100644 --- a/src/rb_edje_main.c +++ b/src/rb_edje_main.c @@ -1,5 +1,5 @@ /* - * $Id: rb_edje_main.c 139 2004-10-30 09:41:17Z tilman $ + * $Id: rb_edje_main.c 287 2005-03-15 18:08:01Z tilman $ * * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de) * @@ -79,6 +79,27 @@ 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"); @@ -89,6 +110,7 @@ void Init_edje (void) 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 ();