Added Evas::EvasObject#anti_alias.
authorTilman Sauerbeck <tilman@code-monkey.de>
Wed, 15 Feb 2006 18:09:44 +0000 (18:09 +0000)
committerTilman Sauerbeck <tilman@code-monkey.de>
Wed, 15 Feb 2006 18:09:44 +0000 (18:09 +0000)
src/rb_evas_object.c

index a35477ab340b74070b0d34ae4ce5e46a4c6f07ed..a054a08d9cd7241bf3b5cafd09c1865ad3434070 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: rb_evas_object.c 354 2006-02-10 18:14:08Z tilman $
+ * $Id: rb_evas_object.c 369 2006-02-15 18:09:44Z tilman $
  *
  * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de)
  *
@@ -469,6 +469,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
@@ -608,6 +626,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);