X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=src%2Frb_evas_object.c;h=b37d66d650d41f60f0351ffd01631fb495037936;hb=9ee77c744d2cb8d6d215aab112ff2d77eb8464fd;hp=63cf9ba9cc3ff82af58d2648df7651cf2a4d3e90;hpb=b8652316f7e476cc54a9091b81066a8393f0baa1;p=ruby-evas.git diff --git a/src/rb_evas_object.c b/src/rb_evas_object.c index 63cf9ba..b37d66d 100644 --- a/src/rb_evas_object.c +++ b/src/rb_evas_object.c @@ -1,5 +1,5 @@ /* - * $Id: rb_evas_object.c 344 2005-05-08 14:37:30Z tilman $ + * $Id: rb_evas_object.c 382 2006-05-25 09:20:31Z tilman $ * * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de) * @@ -66,6 +66,19 @@ void c_evas_object_free (RbEvasObject *e, bool free_mem) free (e); } +static void c_free (RbEvasObject *e) +{ + c_evas_object_free (e, true); +} + +static VALUE c_alloc (VALUE klass) +{ + RbEvasObject *e; + + return Data_Make_Struct (klass, RbEvasObject, c_evas_object_mark, + c_free, e); +} + /* :nodoc: */ static VALUE c_init (VALUE self, VALUE parent) { @@ -293,8 +306,6 @@ static VALUE c_name_set (VALUE self, VALUE val) { GET_OBJ (self, RbEvasObject, e); - Check_Type (val, T_STRING); - evas_object_name_set (e->real, StringValuePtr (val)); return Qnil; @@ -375,6 +386,23 @@ static VALUE c_set_color (VALUE self, VALUE r, VALUE g, VALUE b, return Qnil; } +static VALUE c_get_clip (VALUE self) +{ + GET_OBJ (self, RbEvasObject, e); + + return TO_EVAS_OBJECT (evas_object_clip_get (e->real)); +} + +static VALUE c_set_clip (VALUE self, VALUE clip) +{ + GET_OBJ (self, RbEvasObject, e); + GET_OBJ (clip, RbEvasObject, e2); + + evas_object_clip_set (e->real, e2->real); + + return Qnil; +} + /* * call-seq: * e.pass_events? => true or false @@ -439,6 +467,24 @@ static VALUE c_repeat_events_set (VALUE self, VALUE val) return Qnil; } +static VALUE c_anti_alias_get (VALUE self) +{ + GET_OBJ (self, RbEvasObject, e); + + return evas_object_anti_alias_get (e->real) ? Qtrue : Qfalse; +} + +static VALUE c_anti_alias_set (VALUE self, VALUE val) +{ + GET_OBJ (self, RbEvasObject, e); + + CHECK_BOOL (val); + + evas_object_anti_alias_set (e->real, val == Qtrue); + + return Qnil; +} + /* * call-seq: * e.raise => nil @@ -548,8 +594,7 @@ void Init_EvasObject (void) cEvasObject = rb_define_class_under (mEvas, "EvasObject", rb_cObject); - rb_define_private_method (rb_singleton_class (cEvasObject), - "new", NULL, 0); + rb_define_alloc_func (cEvasObject, c_alloc); rb_define_method (cEvasObject, "initialize", c_init, 1); rb_define_method (cEvasObject, "inspect", c_inspect, 0); rb_define_method (cEvasObject, "type", c_type_get, 0); @@ -569,6 +614,8 @@ void Init_EvasObject (void) 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, "clip", c_get_clip, 0); + rb_define_method (cEvasObject, "clip=", c_set_clip, 1); rb_define_method (cEvasObject, "pass_events?", c_pass_events_get, 0); rb_define_method (cEvasObject, "pass_events=", @@ -577,6 +624,8 @@ void Init_EvasObject (void) c_repeat_events_get, 0); rb_define_method (cEvasObject, "repeat_events=", c_repeat_events_set, 1); + rb_define_method (cEvasObject, "anti_alias?", c_anti_alias_get, 0); + rb_define_method (cEvasObject, "anti_alias=", c_anti_alias_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);