Use ecore_evas_data_set/get to store a pointer to self.
[ruby-ecore.git] / src / ecore_evas / rb_ecore_evas.c
index 557ca04b9ff4ed3b05bcf8f758f1fe6ec9b5290d..9b2ad29a2bd77a657f19c8c1a6b75dff4aaac389 100644 (file)
@@ -1,7 +1,7 @@
 /*
- * $Id: rb_ecore_evas.c 60 2004-08-10 14:12:36Z tilman $
+ * $Id: rb_ecore_evas.c 110 2004-09-02 17:06:54Z 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
 #include "rb_ecore_evas_main.h"
 #include "rb_ecore_evas.h"
 
+#define RUBY_ECORE_EVAS_KEY "__RB_ECORE_EVAS_KEY"
+
 #define CALLBACK_DEFINE_HANDLER(name) \
        static void on_##name (Ecore_Evas *real) \
        { \
-               VALUE self = rb_hash_aref (objects, INT2NUM ((long) real)); \
+               VALUE self; \
                VALUE cb; \
 \
+               self = (VALUE) ecore_evas_data_get (real, \
+                                                   RUBY_ECORE_EVAS_KEY); \
                GET_OBJ (self, RbEcoreEvas, ee); \
 \
                cb = rb_hash_aref (ee->callbacks, rb_str_new2 (#name)); \
@@ -56,7 +60,6 @@
                return Qnil;
 
 VALUE cEcoreEvas;
-static VALUE objects;
 
 /* called by the child classes */
 void c_ecore_evas_mark (RbEcoreEvas *ee)
@@ -87,7 +90,7 @@ static VALUE c_init (int argc, VALUE *argv, VALUE self)
        ee->evas = Qnil;
        ee->callbacks = rb_hash_new ();
 
-       rb_hash_aset (objects, INT2NUM ((long) ee->real), self);
+       ecore_evas_data_set (ee->real, RUBY_ECORE_EVAS_KEY, (void *) self);
 
        return Qnil;
 }
@@ -132,7 +135,7 @@ static VALUE c_hide (VALUE self)
  * call-seq:
  *  ee.visible? => true or false
  *
- * Returns true if <i>ee</i> is visible, else false.
+ * Returns true if <i>ee</i> is visible, else returns false.
  */
 static VALUE c_visible_get (VALUE self)
 {
@@ -399,7 +402,7 @@ static VALUE c_title_set (VALUE self, VALUE val)
  * call-seq:
  *  ee.borderless? => true or false
  *
- * Returns true if <i>ee</i> is borderless, else false.
+ * Returns true if <i>ee</i> is borderless, else returns false.
  */
 static VALUE c_borderless_get (VALUE self)
 {
@@ -429,7 +432,7 @@ static VALUE c_borderless_set (VALUE self, VALUE val)
  * call-seq:
  *  ee.shaped? => true or false
  *
- * Returns true if <i>ee</i> is shaped, else false.
+ * Returns true if <i>ee</i> is shaped, else returns false.
  */
 static VALUE c_shaped_get (VALUE self)
 {
@@ -459,7 +462,7 @@ static VALUE c_shaped_set (VALUE self, VALUE val)
  * call-seq:
  *  ee.sticky? => true or false
  *
- * Returns true if <i>ee</i> is sticky, else false.
+ * Returns true if <i>ee</i> is sticky, else returns false.
  */
 static VALUE c_sticky_get (VALUE self)
 {
@@ -526,7 +529,6 @@ static VALUE c_delete (VALUE self)
        rb_gc_start ();
 
        ecore_evas_free (ee->real);
-       rb_hash_aset (objects, INT2NUM ((long) ee->real), Qnil);
        ee->real = NULL;
 
        return Qnil;
@@ -724,7 +726,4 @@ void Init_EcoreEvas (void)
        rb_define_method (cEcoreEvas, "on_mouse_out", c_on_mouse_out, 0);
        rb_define_method (cEcoreEvas, "on_pre_render", c_on_pre_render, 0);
        rb_define_method (cEcoreEvas, "on_post_render", c_on_post_render, 0);
-
-       objects = rb_hash_new ();
-       rb_global_variable (&objects);
 }