X-Git-Url: http://git.code-monkey.de/?p=ruby-evas.git;a=blobdiff_plain;f=src%2Frb_evas.c;h=3da4ccf678ac4224a79cd0db2b06d3db700f5e66;hp=dfb949aec2c2e0ec12417fd7c02a93daa3abac50;hb=ba05ccf5a7b503e2d9a58c1de4072312b5abfab7;hpb=2118372cfbb06b10e6254539b30887e0342650fd diff --git a/src/rb_evas.c b/src/rb_evas.c index dfb949a..3da4ccf 100644 --- a/src/rb_evas.c +++ b/src/rb_evas.c @@ -1,5 +1,5 @@ /* - * $Id: rb_evas.c 20 2004-06-22 20:46:56Z tilman $ + * $Id: rb_evas.c 23 2004-06-26 22:55:31Z tilman $ * * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de) * @@ -26,16 +26,6 @@ #include "rb_evas.h" #include "rb_evas_object.h" -#define GET_OBJ(obj, type, o, desc) \ - type **(o) = NULL; \ -\ - Data_Get_Struct ((obj), type *, (o)); \ -\ - if (!*(o)) { \ - rb_raise (rb_eException, desc " destroyed already"); \ - return Qnil; \ - } - static VALUE parents; static void c_mark (Evas **e) @@ -52,7 +42,7 @@ VALUE TO_EVAS (VALUE parent, Evas *e) VALUE self; Evas **my_e = NULL; - if (parent == Qnil || !e) + if (NIL_P (parent) || !e) return Qnil; self = Data_Make_Struct (cEvas, Evas *, @@ -66,6 +56,15 @@ VALUE TO_EVAS (VALUE parent, Evas *e) return self; } +static VALUE c_render (VALUE self) +{ + GET_OBJ (self, Evas, e, "Evas"); + + evas_render (*e); + + return Qnil; +} + static VALUE c_font_path_clear (VALUE self) { GET_OBJ (self, Evas, e, "Evas"); @@ -241,6 +240,7 @@ void Init_Evas (void) /* not publically instantiable yet */ rb_define_private_method (rb_singleton_class (cEvas), "new", NULL, 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); rb_define_method (cEvas, "font_path_prepend", c_font_path_prepend, 1);