X-Git-Url: http://git.code-monkey.de/?p=ruby-ecore.git;a=blobdiff_plain;f=src%2Fecore_evas%2Frb_gl_x11.c;h=c0e5136f4e3e2f66627ef5e98c605a05ae8d90f5;hp=c5375888259f0b4d56e4be6151ec132c2a20a65d;hb=d907bd016f15dc5be72d12ee1742047eafc2abae;hpb=041804188a058aa7bbc76c81e4a816255a635f00 diff --git a/src/ecore_evas/rb_gl_x11.c b/src/ecore_evas/rb_gl_x11.c index c537588..c0e5136 100644 --- a/src/ecore_evas/rb_gl_x11.c +++ b/src/ecore_evas/rb_gl_x11.c @@ -1,7 +1,7 @@ /* - * $Id: rb_gl_x11.c 60 2004-08-10 14:12:36Z tilman $ + * $Id: rb_gl_x11.c 351 2006-02-10 15:25:40Z 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,12 +23,44 @@ #include #include +#include "../ecore/rb_ecore.h" +#include "../ecore_x/rb_window.h" #include "rb_ecore_evas_main.h" #include "rb_ecore_evas.h" -static void c_free (RbEcoreEvas *ee) +typedef struct { + RbEcoreEvas ee; + VALUE parent_window; + VALUE window; +} RbEcoreEvasGlX11; + +static void c_mark (RbEcoreEvasGlX11 *ee) +{ + c_ecore_evas_mark (&ee->ee); + + if (!NIL_P (ee->parent_window)) + rb_gc_mark (ee->parent_window); + + if (!NIL_P (ee->window)) + rb_gc_mark (ee->window); +} + +static void c_free (RbEcoreEvasGlX11 *ee) +{ + c_ecore_evas_free (&ee->ee, false); + + free (ee); +} + +static VALUE c_alloc (VALUE klass) { - c_ecore_evas_free (ee, true); + RbEcoreEvasGlX11 *ee = NULL; + + ecore_init (); + ecore_evas_init (); + + return Data_Make_Struct (klass, RbEcoreEvasGlX11, + c_mark, c_free, ee); } /* @@ -37,15 +69,14 @@ static void c_free (RbEcoreEvas *ee) * * Creates an Ecore::Evas::GlX11 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]; - RbEcoreEvas *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, RbEcoreEvas, - c_ecore_evas_mark, c_free, ee); + GET_OBJ (self, RbEcoreEvasGlX11, ee); rb_scan_args (argc, argv, "06", &disp, &parent, &geom[0], &geom[1], &geom[2], &geom[3]); @@ -55,27 +86,58 @@ static VALUE c_new (int argc, VALUE *argv, VALUE klass) cdisp = StringValuePtr (disp); } + if (!NIL_P (parent)) { + CHECK_CLASS (parent, cWindow); + Data_Get_Struct (parent, RbWindow, win); + } + for (i = 0; i < 4; i++) if (!NIL_P (geom[i])) { Check_Type (geom[i], T_FIXNUM); igeom[i] = FIX2INT (geom[i]); } - ecore_init (); - ecore_evas_init (); + ee->ee.real = ecore_evas_gl_x11_new (cdisp, + win ? win->real : 0, + igeom[0], igeom[1], + igeom[2], igeom[3]); + ee->parent_window = parent; + ee->window = Qnil; - ee->real = ecore_evas_gl_x11_new (cdisp, 0, - igeom[0], igeom[1], - igeom[2], igeom[3]); - - rb_obj_call_init (self, 0, NULL); + rb_call_super (argc, argv); return self; } +/* + * call-seq: + * glx11.window => window + * + * Returns the Ecore::X::Window object for glx11. + */ +static VALUE c_window_get (VALUE self) +{ + Ecore_X_Window w; + + GET_OBJ (self, RbEcoreEvasGlX11, ee); + + if (NIL_P (ee->window)) { + w = ecore_evas_gl_x11_window_get (ee->ee.real); + ee->window = TO_ECORE_X_WINDOW (self, w); + } + + return ee->window; +} + void Init_GlX11 (void) { - VALUE c = rb_define_class_under (mEvas, "GlX11", cEcoreEvas); + VALUE c; + + rb_require ("ecore_x"); + + c = rb_define_class_under (mEvas, "GlX11", 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); }