X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=src%2Fecore_evas%2Frb_software_x11.c;h=0b480196acd4c2be46fadbb5f75b868fe0f83e75;hb=d6477a98dd3bdd7eff030aaf64b68fa3bc08690a;hp=d61c66fd95f5b916d160cc48e592a7a30f3745ce;hpb=98ce45a70b8b219b738bb804297417aae0ae9baa;p=ruby-ecore.git diff --git a/src/ecore_evas/rb_software_x11.c b/src/ecore_evas/rb_software_x11.c index d61c66f..0b48019 100644 --- a/src/ecore_evas/rb_software_x11.c +++ b/src/ecore_evas/rb_software_x11.c @@ -1,5 +1,5 @@ /* - * $Id: rb_software_x11.c 27 2004-07-08 18:25:05Z tilman $ + * $Id: rb_software_x11.c 60 2004-08-10 14:12:36Z tilman $ * * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de) * @@ -19,22 +19,51 @@ */ #include +#include #include #include +#include "../ecore/rb_ecore.h" +#include "../ecore_x/rb_window.h" #include "rb_ecore_evas_main.h" #include "rb_ecore_evas.h" +typedef struct { + RbEcoreEvas ee; + VALUE window; +} RbEcoreEvasSoftwareX11; + +static void c_mark (RbEcoreEvasSoftwareX11 *ee) +{ + c_ecore_evas_mark (&ee->ee); + + if (!NIL_P (ee->window)) + rb_gc_mark (ee->window); +} + +static void c_free (RbEcoreEvasSoftwareX11 *ee) +{ + c_ecore_evas_free (&ee->ee, false); + + free (ee); +} + +/* + * call-seq: + * Ecore::Evas::SoftwareX11.new([display, parent, x, y, w, h]) => swx11 + * + * Creates an Ecore::Evas::SoftwareX11 object. + */ static VALUE c_new (int argc, VALUE *argv, VALUE klass) { VALUE self, disp, parent, geom[4]; - Ecore_Evas **ee = NULL; + RbEcoreEvasSoftwareX11 *ee = NULL; char *cdisp = NULL; int i, igeom[4] = {0, 0, 0, 0}; - self = Data_Make_Struct (klass, Ecore_Evas *, - NULL, c_ecore_evas_free, ee); + self = Data_Make_Struct (klass, RbEcoreEvasSoftwareX11, + c_mark, c_free, ee); rb_scan_args (argc, argv, "06", &disp, &parent, &geom[0], &geom[1], &geom[2], &geom[3]); @@ -47,26 +76,50 @@ static VALUE c_new (int argc, VALUE *argv, VALUE klass) for (i = 0; i < 4; i++) if (!NIL_P (geom[i])) { Check_Type (geom[i], T_FIXNUM); - igeom[i] = NUM2INT (geom[i]); + igeom[i] = FIX2INT (geom[i]); } ecore_init (); ecore_evas_init (); - *ee = ecore_evas_software_x11_new (cdisp, 0, - igeom[0], igeom[1], - igeom[2], igeom[3]); + ee->ee.real = ecore_evas_software_x11_new (cdisp, 0, + igeom[0], igeom[1], + igeom[2], igeom[3]); + ee->window = Qnil; rb_obj_call_init (self, 0, NULL); return self; } +/* + * call-seq: + * swx11.window => window + * + * Returns the Ecore::X::Window object for swx11. + */ +static VALUE c_window_get (VALUE self) +{ + Ecore_X_Window w; + + GET_OBJ (self, RbEcoreEvasSoftwareX11, ee); + + if (NIL_P (ee->window)) { + w = ecore_evas_software_x11_window_get (ee->ee.real); + ee->window = TO_ECORE_X_WINDOW (self, w); + } + + return ee->window; +} + void Init_SoftwareX11 (void) { - VALUE cSoftwareX11 = rb_define_class_under (mEvas, - "SoftwareX11", - cEcoreEvas); + VALUE c; + + rb_require ("ecore_x"); + + c = rb_define_class_under (mEvas, "SoftwareX11", cEcoreEvas); - rb_define_singleton_method (cSoftwareX11, "new", c_new, -1); + rb_define_singleton_method (c, "new", c_new, -1); + rb_define_method (c, "window", c_window_get, 0); }