X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=src%2Frb_evas_object.c;h=63e3cc4eb2e65f1fcd4f0e65ed844955b2f5a590;hb=2de506885099b815d71af03cbb72bb21af10bc87;hp=6a4c5748588d8b6d62f5ced33c3b6f7236c69d2b;hpb=f372062dbc05ab13546a64d0d77026851388bc10;p=ruby-evas.git diff --git a/src/rb_evas_object.c b/src/rb_evas_object.c index 6a4c574..63e3cc4 100644 --- a/src/rb_evas_object.c +++ b/src/rb_evas_object.c @@ -1,5 +1,5 @@ /* - * $Id: rb_evas_object.c 105 2004-08-29 15:45:48Z tilman $ + * $Id: rb_evas_object.c 314 2005-04-07 18:23:42Z tilman $ * * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de) * @@ -49,6 +49,12 @@ VALUE TO_EVAS_OBJECT (Evas_Object *o) void c_evas_object_mark (RbEvasObject *e) { rb_gc_mark (e->parent); + + if (!NIL_P (e->callbacks)) + rb_gc_mark (e->callbacks); + + if (!NIL_P (e->userdata)) + rb_gc_mark (e->userdata); } void c_evas_object_free (RbEvasObject *e, bool free_mem) @@ -68,6 +74,7 @@ static VALUE c_init (VALUE self, VALUE parent) evas_object_data_set (e->real, RUBY_EVAS_OBJECT_KEY, (void *) self); e->parent = parent; + e->callbacks = Qnil; return self; } @@ -204,6 +211,36 @@ static VALUE c_visible_get (VALUE self) return evas_object_visible_get (e->real) ? Qtrue : Qfalse; } +/* + * call-seq: + * e.focused? => true or false + * + * Returns true if e is focused, else returns false. + */ +static VALUE c_focused_get (VALUE self) +{ + GET_OBJ (self, RbEvasObject, e); + + return evas_object_focus_get (e->real) ? Qtrue : Qfalse; +} + +/* + * call-seq: + * e.focused(true or false) + * + * (Un)focuses e. + */ +static VALUE c_focused_set (VALUE self, VALUE val) +{ + GET_OBJ (self, RbEvasObject, e); + + CHECK_BOOL (val); + + evas_object_focus_set (e->real, val == Qtrue); + + return Qnil; +} + /* * call-seq: * e.evas => evas @@ -466,8 +503,6 @@ static VALUE c_stack_below (VALUE self, VALUE target) */ static VALUE c_above_get (VALUE self) { - Evas_Object *o; - GET_OBJ (self, RbEvasObject, e); return TO_EVAS_OBJECT (evas_object_above_get (e->real)); @@ -482,13 +517,21 @@ static VALUE c_above_get (VALUE self) */ static VALUE c_below_get (VALUE self) { - Evas_Object *o; - GET_OBJ (self, RbEvasObject, e); return TO_EVAS_OBJECT (evas_object_below_get (e->real)); } +static VALUE c_userdata_get (VALUE self) +{ + GET_OBJ (self, RbEvasObject, e); + + if (NIL_P (e->userdata)) + e->userdata = rb_hash_new (); + + return e->userdata; +} + void Init_EvasObject (void) { cEvasObject = rb_define_class_under (mEvas, "EvasObject", @@ -505,6 +548,8 @@ void Init_EvasObject (void) rb_define_method (cEvasObject, "show", c_show, 0); rb_define_method (cEvasObject, "hide", c_hide, 0); rb_define_method (cEvasObject, "visible?", c_visible_get, 0); + rb_define_method (cEvasObject, "focused?", c_focused_get, 0); + rb_define_method (cEvasObject, "focused=", c_focused_set, 1); rb_define_method (cEvasObject, "evas", c_evas_get, 0); rb_define_method (cEvasObject, "name", c_name_get, 0); rb_define_method (cEvasObject, "name=", c_name_set, 1); @@ -526,4 +571,5 @@ void Init_EvasObject (void) rb_define_method (cEvasObject, "stack_below", c_stack_below, 1); rb_define_method (cEvasObject, "above", c_above_get, 0); rb_define_method (cEvasObject, "below", c_below_get, 0); + rb_define_method (cEvasObject, "userdata", c_userdata_get, 0); }