X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=src%2Frb_evas.c;h=029504a3bbe943281a6ab4e1537fc420fe7a5c26;hb=08a63f63dbe7a5ffa9f04526c68b5d298c2e5f41;hp=3da4ccf678ac4224a79cd0db2b06d3db700f5e66;hpb=ba05ccf5a7b503e2d9a58c1de4072312b5abfab7;p=ruby-evas.git diff --git a/src/rb_evas.c b/src/rb_evas.c index 3da4ccf..029504a 100644 --- a/src/rb_evas.c +++ b/src/rb_evas.c @@ -1,5 +1,5 @@ /* - * $Id: rb_evas.c 23 2004-06-26 22:55:31Z tilman $ + * $Id: rb_evas.c 38 2004-07-25 11:27:25Z tilman $ * * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de) * @@ -37,6 +37,16 @@ static void c_mark (Evas **e) rb_gc_mark (parent); } +static void c_free (Evas **e) +{ + /* do NOT call evas_free() here, since the Evas is freed + * by ecore_evas_free() eventually + */ + rb_hash_aset (parents, INT2NUM ((long) e), Qnil); + + free (e); +} + VALUE TO_EVAS (VALUE parent, Evas *e) { VALUE self; @@ -46,7 +56,7 @@ VALUE TO_EVAS (VALUE parent, Evas *e) return Qnil; self = Data_Make_Struct (cEvas, Evas *, - c_mark, free, my_e); + c_mark, c_free, my_e); *my_e = e; rb_hash_aset (parents, INT2NUM ((long) my_e), parent); @@ -56,9 +66,14 @@ VALUE TO_EVAS (VALUE parent, Evas *e) return self; } +static VALUE c_inspect (VALUE self) +{ + INSPECT (self, Evas *); +} + static VALUE c_render (VALUE self) { - GET_OBJ (self, Evas, e, "Evas"); + GET_OBJ (self, Evas *, e); evas_render (*e); @@ -67,7 +82,7 @@ static VALUE c_render (VALUE self) static VALUE c_font_path_clear (VALUE self) { - GET_OBJ (self, Evas, e, "Evas"); + GET_OBJ (self, Evas *, e); evas_font_path_clear (*e); @@ -76,7 +91,7 @@ static VALUE c_font_path_clear (VALUE self) static VALUE c_font_path_append (VALUE self, VALUE path) { - GET_OBJ (self, Evas, e, "Evas"); + GET_OBJ (self, Evas *, e); Check_Type (path, T_STRING); @@ -87,7 +102,7 @@ static VALUE c_font_path_append (VALUE self, VALUE path) static VALUE c_font_path_prepend (VALUE self, VALUE path) { - GET_OBJ (self, Evas, e, "Evas"); + GET_OBJ (self, Evas *, e); Check_Type (path, T_STRING); @@ -101,7 +116,7 @@ static VALUE c_font_path_get (VALUE self) VALUE ary; const Evas_List *list, *l; - GET_OBJ (self, Evas, e, "Evas"); + GET_OBJ (self, Evas *, e); if (!(list = evas_font_path_list (*e))) return rb_ary_new (); @@ -116,14 +131,14 @@ static VALUE c_font_path_get (VALUE self) static VALUE c_font_cache_get (VALUE self) { - GET_OBJ (self, Evas, e, "Evas"); + GET_OBJ (self, Evas *, e); return INT2FIX (evas_font_cache_get (*e)); } static VALUE c_font_cache_set (VALUE self, VALUE val) { - GET_OBJ (self, Evas, e, "Evas"); + GET_OBJ (self, Evas *, e); Check_Type (val, T_FIXNUM); @@ -134,7 +149,7 @@ static VALUE c_font_cache_set (VALUE self, VALUE val) static VALUE c_font_cache_flush (VALUE self) { - GET_OBJ (self, Evas, e, "Evas"); + GET_OBJ (self, Evas *, e); evas_font_cache_flush (*e); @@ -143,14 +158,14 @@ static VALUE c_font_cache_flush (VALUE self) static VALUE c_image_cache_get (VALUE self) { - GET_OBJ (self, Evas, e, "Evas"); + GET_OBJ (self, Evas *, e); return INT2FIX (evas_image_cache_get (*e)); } static VALUE c_image_cache_set (VALUE self, VALUE val) { - GET_OBJ (self, Evas, e, "Evas"); + GET_OBJ (self, Evas *, e); Check_Type (val, T_FIXNUM); @@ -161,7 +176,7 @@ static VALUE c_image_cache_set (VALUE self, VALUE val) static VALUE c_image_cache_reload (VALUE self) { - GET_OBJ (self, Evas, e, "Evas"); + GET_OBJ (self, Evas *, e); evas_image_cache_reload (*e); @@ -170,7 +185,7 @@ static VALUE c_image_cache_reload (VALUE self) static VALUE c_image_cache_flush (VALUE self) { - GET_OBJ (self, Evas, e, "Evas"); + GET_OBJ (self, Evas *, e); evas_image_cache_flush (*e); @@ -182,7 +197,7 @@ static VALUE c_top_get (VALUE self) Evas_Object *o; void *obj; - GET_OBJ (self, Evas, e, "Evas"); + GET_OBJ (self, Evas *, e); if (!(o = evas_object_top_get (*e))) return Qnil; @@ -200,7 +215,7 @@ static VALUE c_bottom_get (VALUE self) Evas_Object *o; void *obj; - GET_OBJ (self, Evas, e, "Evas"); + GET_OBJ (self, Evas *, e); if (!(o = evas_object_bottom_get (*e))) return Qnil; @@ -218,7 +233,7 @@ static VALUE c_find_object (VALUE self, VALUE name) Evas_Object *o; void *obj; - GET_OBJ (self, Evas, e, "Evas"); + GET_OBJ (self, Evas *, e); Check_Type (name, T_STRING); @@ -240,6 +255,7 @@ void Init_Evas (void) /* not publically instantiable yet */ rb_define_private_method (rb_singleton_class (cEvas), "new", NULL, 0); + rb_define_method (cEvas, "inspect", c_inspect, 0); rb_define_method (cEvas, "render", c_render, 0); rb_define_method (cEvas, "font_path_clear", c_font_path_clear, 0); rb_define_method (cEvas, "font_path_append", c_font_path_append, 1);