X-Git-Url: http://git.code-monkey.de/?p=ruby-evas.git;a=blobdiff_plain;f=src%2Frb_evas_object.c;h=6492a4e9de48fd2d3a10cd95bae056c63dc21d00;hp=cd448bfa76dfc29cca84372d90262a9cce6f9eb5;hb=2118372cfbb06b10e6254539b30887e0342650fd;hpb=7ba52baa1294589d8dbbae5d58469dcc8aa720de diff --git a/src/rb_evas_object.c b/src/rb_evas_object.c index cd448bf..6492a4e 100644 --- a/src/rb_evas_object.c +++ b/src/rb_evas_object.c @@ -1,5 +1,5 @@ /* - * $Id: rb_evas_object.c 2 2004-06-19 18:55:39Z tilman $ + * $Id: rb_evas_object.c 20 2004-06-22 20:46:56Z tilman $ * * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de) * @@ -22,6 +22,8 @@ #include +#include "rb_evas_main.h" +#include "rb_evas.h" #include "rb_evas_object.h" #define GET_OBJ(obj, type, o, desc) \ @@ -34,6 +36,14 @@ return Qnil; \ } +#define CHECK_BOOL(val) \ + if (TYPE ((val)) != T_TRUE && TYPE ((val)) != T_FALSE) { \ + rb_raise (rb_eTypeError, \ + "wrong argument type %s (expected true or false)", \ + rb_obj_classname ((val))); \ + return Qnil; \ + } + static VALUE parents; /* called by the child classes */ @@ -58,11 +68,25 @@ static VALUE c_init (VALUE self, VALUE parent) { GET_OBJ (self, Evas_Object, e, "EvasObject"); + evas_object_data_set (*e, RUBY_EVAS_OBJECT_KEY, (void *) self); + rb_hash_aset (parents, INT2NUM ((long) e), parent); return self; } +static VALUE c_inspect (VALUE self) +{ + char buf[128]; + + GET_OBJ (self, Evas_Object, e, "EvasObject"); + + snprintf (buf, sizeof (buf), "#", + (void *) self, *e); + + return rb_str_new2 (buf); +} + static VALUE c_delete (VALUE self) { GET_OBJ (self, Evas_Object, e, "EvasObject"); @@ -88,6 +112,32 @@ static VALUE c_resize (VALUE self, VALUE w, VALUE h) return Qnil; } +static VALUE c_move (VALUE self, VALUE x, VALUE y) +{ + GET_OBJ (self, Evas_Object, e, "EvasObject"); + + Check_Type (x, T_FIXNUM); + Check_Type (y, T_FIXNUM); + + evas_object_move (*e, (Evas_Coord) FIX2INT (x), + (Evas_Coord) FIX2INT (y)); + + return Qnil; +} + +static VALUE c_geometry_get (VALUE self) +{ + int x = 0, y = 0, w = 0, h = 0; + + GET_OBJ (self, Evas_Object, e, "EvasObject"); + + evas_object_geometry_get (*e, (Evas_Coord *) &x, (Evas_Coord *) &y, + (Evas_Coord *) & w, (Evas_Coord *) &h); + + return rb_ary_new3 (4, INT2FIX (x), INT2FIX (y), INT2FIX (w), + INT2FIX (h)); +} + static VALUE c_show (VALUE self) { GET_OBJ (self, Evas_Object, e, "EvasObject"); @@ -106,26 +156,228 @@ static VALUE c_hide (VALUE self) return Qnil; } -static VALUE c_is_visible (VALUE self) +static VALUE c_visible_get (VALUE self) { GET_OBJ (self, Evas_Object, e, "EvasObject"); return evas_object_visible_get (*e) ? Qtrue : Qfalse; } +static VALUE c_evas_get (VALUE self) +{ + GET_OBJ (self, Evas_Object, e, "EvasObject"); + + return rb_hash_aref (parents, INT2NUM ((long) (e))); +} + +static VALUE c_name_get (VALUE self) +{ + const char *name; + + GET_OBJ (self, Evas_Object, e, "EvasObject"); + + if (!(name = evas_object_name_get (*e))) + return Qnil; + else + return rb_str_new2 (name); +} + +static VALUE c_name_set (VALUE self, VALUE val) +{ + GET_OBJ (self, Evas_Object, e, "EvasObject"); + + Check_Type (val, T_STRING); + + evas_object_name_set (*e, StringValuePtr (val)); + + return Qnil; +} + +static VALUE c_layer_get (VALUE self) +{ + GET_OBJ (self, Evas_Object, e, "EvasObject"); + + return INT2FIX (evas_object_layer_get (*e)); +} + +static VALUE c_layer_set (VALUE self, VALUE val) +{ + GET_OBJ (self, Evas_Object, e, "EvasObject"); + + Check_Type (val, T_FIXNUM); + + evas_object_layer_set (*e, NUM2INT (val)); + + return Qnil; +} + +static VALUE c_get_color (VALUE self) +{ + int r = 0, g = 0, b = 0, a = 0; + + GET_OBJ (self, Evas_Object, e, "EvasObject"); + + evas_object_color_get (*e, &r, &g, &b, &a); + + return rb_ary_new3 (4, INT2FIX (r), INT2FIX (g), INT2FIX (b), + INT2FIX (a)); +} + +static VALUE c_set_color (VALUE self, VALUE r, VALUE g, VALUE b, + VALUE a) +{ + GET_OBJ (self, Evas_Object, e, "EvasObject"); + + Check_Type (r, T_FIXNUM); + Check_Type (g, T_FIXNUM); + Check_Type (b, T_FIXNUM); + Check_Type (a, T_FIXNUM); + + evas_object_color_set (*e, FIX2INT (r), FIX2INT (g), FIX2INT (b), + FIX2INT (a)); + + return Qnil; +} + +static VALUE c_pass_events_get (VALUE self) +{ + GET_OBJ (self, Evas_Object, e, "EvasObject"); + + return evas_object_pass_events_get (*e) ? Qtrue : Qfalse; +} + +static VALUE c_pass_events_set (VALUE self, VALUE val) +{ + GET_OBJ (self, Evas_Object, e, "EvasObject"); + + CHECK_BOOL (val); + + evas_object_pass_events_set (*e, val == Qtrue ? 1 : 0); + + return Qnil; +} + +static VALUE c_raise (VALUE self) +{ + GET_OBJ (self, Evas_Object, e, "EvasObject"); + + evas_object_raise (*e); + + return Qnil; +} + +static VALUE c_lower (VALUE self) +{ + GET_OBJ (self, Evas_Object, e, "EvasObject"); + + evas_object_lower (*e); + + return Qnil; +} + +static VALUE c_stack_above (VALUE self, VALUE target) +{ + GET_OBJ (self, Evas_Object, e, "EvasObject"); + + if (!rb_obj_is_kind_of (target, cEvasObject)) { + rb_raise (rb_eTypeError, + "wrong argument type %s (expected EvasObject)", + rb_obj_classname (target)); + return Qnil; + } + + GET_OBJ (target, Evas_Object, target2, "EvasObject"); + + evas_object_stack_above (*e, *target2); + + return Qnil; +} + +static VALUE c_stack_below (VALUE self, VALUE target) +{ + GET_OBJ (self, Evas_Object, e, "EvasObject"); + + if (!rb_obj_is_kind_of (target, cEvasObject)) { + rb_raise (rb_eTypeError, + "wrong argument type %s (expected EvasObject)", + rb_obj_classname (target)); + return Qnil; + } + + GET_OBJ (target, Evas_Object, target2, "EvasObject"); + + evas_object_stack_below (*e, *target2); + + return Qnil; +} + +static VALUE c_above_get (VALUE self) +{ + Evas_Object *o; + void *obj; + + GET_OBJ (self, Evas_Object, e, "EvasObject"); + + if (!(evas_object_above_get (*e))) + return Qnil; + + if (!(obj = evas_object_data_get (o, RUBY_EVAS_OBJECT_KEY))) { + rb_raise (rb_eException, "EvasObject Ruby object key missing"); + return Qnil; + } + + return (VALUE) obj; +} + +static VALUE c_below_get (VALUE self) +{ + Evas_Object *o; + void *obj; + + GET_OBJ (self, Evas_Object, e, "EvasObject"); + + if (!(evas_object_below_get (*e))) + return Qnil; + + if (!(obj = evas_object_data_get (o, RUBY_EVAS_OBJECT_KEY))) { + rb_raise (rb_eException, "EvasObject Ruby object key missing"); + return Qnil; + } + + return (VALUE) obj; +} + void Init_EvasObject (void) { - cEvasObject = rb_define_class ("EvasObject", rb_cObject); + cEvasObject = rb_define_class_under (mEvas, "EvasObject", + rb_cObject); rb_define_private_method (rb_singleton_class (cEvasObject), "new", NULL, 0); - rb_define_method (cEvasObject, "initialize", c_init, 1); + rb_define_method (cEvasObject, "inspect", c_inspect, 0); rb_define_method (cEvasObject, "delete", c_delete, 0); rb_define_method (cEvasObject, "resize", c_resize, 2); + rb_define_method (cEvasObject, "move", c_move, 2); + rb_define_method (cEvasObject, "geometry", c_geometry_get, 0); rb_define_method (cEvasObject, "show", c_show, 0); rb_define_method (cEvasObject, "hide", c_hide, 0); - rb_define_method (cEvasObject, "visible?", c_is_visible, 0); + rb_define_method (cEvasObject, "visible?", c_visible_get, 0); + 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); + rb_define_method (cEvasObject, "layer", c_layer_get, 0); + rb_define_method (cEvasObject, "layer=", c_layer_set, 1); + rb_define_method (cEvasObject, "get_color", c_get_color, 0); + rb_define_method (cEvasObject, "set_color", c_set_color, 4); + rb_define_method (cEvasObject, "pass_events?", c_pass_events_get, 0); + rb_define_method (cEvasObject, "pass_events=", c_pass_events_set, 1); + rb_define_method (cEvasObject, "raise", c_raise, 0); + rb_define_method (cEvasObject, "lower", c_lower, 0); + rb_define_method (cEvasObject, "stack_above", c_stack_above, 1); + 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); parents = rb_hash_new (); rb_global_variable (&parents);