X-Git-Url: http://git.code-monkey.de/?p=ruby-ecore.git;a=blobdiff_plain;f=src%2Fecore_evas%2Frb_fb.c;h=8192169278ec4ff6e4f409276e7cb3a27b113828;hp=00635defd22d1f6071db46ddd317e814db4a0884;hb=675f0103d4db84bcae4d83911afceb76c44d50f0;hpb=f3e4005cf0cfdefa25cfd5187a67a4f456fe697f diff --git a/src/ecore_evas/rb_fb.c b/src/ecore_evas/rb_fb.c index 00635de..8192169 100644 --- a/src/ecore_evas/rb_fb.c +++ b/src/ecore_evas/rb_fb.c @@ -1,7 +1,7 @@ /* - * $Id: rb_fb.c 25 2004-06-26 23:07:01Z tilman $ + * $Id: rb_fb.c 77 2004-08-19 17:39:29Z 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 @@ -20,19 +20,32 @@ #include +#include #include #include "rb_ecore_evas_main.h" #include "rb_ecore_evas.h" -static VALUE c_init (int argc, VALUE *argv, VALUE self) +static void c_free (RbEcoreEvas *ee) { - VALUE disp, rot, w, h; - Ecore_Evas **ee = NULL; + c_ecore_evas_free (ee, true); +} + +/* + * 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) +{ + VALUE self, disp, rot, w, h; + RbEcoreEvas *ee = NULL; char *cdisp = NULL; int irot = 0, iw = 0, ih = 0; - Data_Get_Struct (self, Ecore_Evas *, ee); + self = Data_Make_Struct (klass, RbEcoreEvas, + c_ecore_evas_mark, c_free, ee); rb_scan_args (argc, argv, "04", &disp, &rot, &w, &h); @@ -43,42 +56,32 @@ static VALUE c_init (int argc, VALUE *argv, VALUE self) if (!NIL_P (rot)) { Check_Type (rot, T_FIXNUM); - irot = NUM2INT (rot); + irot = FIX2INT (rot); } if (!NIL_P (w)) { Check_Type (w, T_FIXNUM); - iw = NUM2INT (w); + iw = FIX2INT (w); } if (!NIL_P (h)) { Check_Type (h, T_FIXNUM); - ih = NUM2INT (h); + ih = FIX2INT (h); } - *ee = ecore_evas_fb_new (cdisp, irot, iw, ih); + ecore_init (); + ecore_evas_init (); - return self; -} + ee->real = ecore_evas_fb_new (cdisp, irot, iw, ih); -static VALUE c_new (int argc, VALUE *argv, VALUE klass) -{ - VALUE self; - Ecore_Evas **ee; - - self = Data_Make_Struct (klass, Ecore_Evas *, - NULL, c_ecore_evas_free, ee); - - rb_obj_call_init (self, argc, argv); + rb_obj_call_init (self, 0, NULL); return self; } void Init_Fb (void) { - VALUE cFb = rb_define_class_under (mEvas, "Fb", cEcoreEvas); + VALUE c = rb_define_class_under (mEvas, "Fb", cEcoreEvas); - rb_define_singleton_method (cFb, "new", c_new, -1); - rb_define_method (cFb, "initialize", c_init, -1); + rb_define_singleton_method (c, "new", c_new, -1); } -