X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=src%2Fecore_evas%2Frb_xrender_x11.c;h=166babd73df6e18a3f8683bb05ad4dedd43c2060;hb=0f8d24c745efc1057f8d25ada1375c88a1ab2ed7;hp=a403bfa3669d83ac235da474f0dea5c919ee2d77;hpb=b766027333443e5483024afbbfe40f78ad4168ba;p=ruby-ecore.git diff --git a/src/ecore_evas/rb_xrender_x11.c b/src/ecore_evas/rb_xrender_x11.c index a403bfa..166babd 100644 --- a/src/ecore_evas/rb_xrender_x11.c +++ b/src/ecore_evas/rb_xrender_x11.c @@ -1,6 +1,4 @@ /* - * $Id: rb_xrender_x11.c 348 2005-12-24 17:11:24Z tilman $ - * * Copyright (C) 2005 ruby-ecore team (see AUTHORS) * * This library is free software; you can redistribute it and/or @@ -52,22 +50,31 @@ static void c_free (RbEcoreEvasXRenderX11 *ee) free (ee); } +static VALUE c_alloc (VALUE klass) +{ + RbEcoreEvasXRenderX11 *ee = NULL; + + ecore_init (); + ecore_evas_init (); + + return Data_Make_Struct (klass, RbEcoreEvasXRenderX11, + c_mark, c_free, ee); +} + /* * call-seq: * Ecore::Evas::XRenderX11.new([display, parent, x, y, w, h]) => xrx11 * * Creates an Ecore::Evas::XRenderX11 object. */ -static VALUE c_new (int argc, VALUE *argv, VALUE klass) +static VALUE c_init (int argc, VALUE *argv, VALUE self) { - VALUE self, disp, parent, geom[4]; - RbEcoreEvasXRenderX11 *ee = NULL; + VALUE disp, parent, geom[4]; RbWindow *win = NULL; char *cdisp = NULL; int i, igeom[4] = {0, 0, 0, 0}; - self = Data_Make_Struct (klass, RbEcoreEvasXRenderX11, - c_mark, c_free, ee); + GET_OBJ (self, RbEcoreEvasXRenderX11, ee); rb_scan_args (argc, argv, "06", &disp, &parent, &geom[0], &geom[1], &geom[2], &geom[3]); @@ -88,9 +95,6 @@ static VALUE c_new (int argc, VALUE *argv, VALUE klass) igeom[i] = FIX2INT (geom[i]); } - ecore_init (); - ecore_evas_init (); - ee->ee.real = ecore_evas_xrender_x11_new (cdisp, win ? win->real : 0, igeom[0], igeom[1], @@ -98,7 +102,7 @@ static VALUE c_new (int argc, VALUE *argv, VALUE klass) ee->parent_window = parent; ee->window = Qnil; - rb_obj_call_init (self, 0, NULL); + rb_call_super (argc, argv); return self; } @@ -127,10 +131,9 @@ void Init_XRenderX11 (void) { VALUE c; - rb_require ("ecore_x"); - c = rb_define_class_under (mEvas, "XRenderX11", 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); rb_define_method (c, "window", c_window_get, 0); }