X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=src%2Fecore_evas%2Frb_fb.c;h=236713ff155fd2df2b2948a3bfb601dfb29a314e;hb=HEAD;hp=2f49e5d4788320cd41f9a6175d9e11ef5eb0f8ad;hpb=041804188a058aa7bbc76c81e4a816255a635f00;p=ruby-ecore.git diff --git a/src/ecore_evas/rb_fb.c b/src/ecore_evas/rb_fb.c index 2f49e5d..236713f 100644 --- a/src/ecore_evas/rb_fb.c +++ b/src/ecore_evas/rb_fb.c @@ -1,7 +1,5 @@ /* - * $Id: rb_fb.c 60 2004-08-10 14:12:36Z tilman $ - * - * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de) + * Copyright (C) 2004 ruby-ecore team (see AUTHORS) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -23,6 +21,7 @@ #include #include +#include "../ecore/rb_ecore.h" #include "rb_ecore_evas_main.h" #include "rb_ecore_evas.h" @@ -31,21 +30,30 @@ static void c_free (RbEcoreEvas *ee) c_ecore_evas_free (ee, true); } +static VALUE c_alloc (VALUE klass) +{ + RbEcoreEvas *ee = NULL; + + ecore_init (); + ecore_evas_init (); + + return Data_Make_Struct (klass, RbEcoreEvas, + c_ecore_evas_mark, c_free, ee); +} + /* * call-seq: * Ecore::Evas::Fb.new([display, rotation, w, h]) => fb * * Creates an Ecore::Evas::Fb object. */ -static VALUE c_new (int argc, VALUE *argv, VALUE klass) +static VALUE c_init (int argc, VALUE *argv, VALUE self) { - VALUE self, disp, rot, w, h; - RbEcoreEvas *ee = NULL; + VALUE disp, rot, w, h; char *cdisp = NULL; int irot = 0, iw = 0, ih = 0; - self = Data_Make_Struct (klass, RbEcoreEvas, - c_ecore_evas_mark, c_free, ee); + GET_OBJ (self, RbEcoreEvas, ee); rb_scan_args (argc, argv, "04", &disp, &rot, &w, &h); @@ -69,12 +77,9 @@ static VALUE c_new (int argc, VALUE *argv, VALUE klass) ih = FIX2INT (h); } - ecore_init (); - ecore_evas_init (); - ee->real = ecore_evas_fb_new (cdisp, irot, iw, ih); - rb_obj_call_init (self, 0, NULL); + rb_call_super (argc, argv); return self; } @@ -83,5 +88,6 @@ void Init_Fb (void) { VALUE c = rb_define_class_under (mEvas, "Fb", cEcoreEvas); - rb_define_singleton_method (c, "new", c_new, -1); + rb_define_alloc_func (c, c_alloc); + rb_define_method (c, "initialize", c_init, -1); }