Removed RCS-style IDs.
[ruby-evas.git] / src / rb_polygon.c
index 0a04170469f13e9f87bf9d008c46f5ba33b13aa7..9f1a85ef42d0e197f7e81b4002ccec9bf25d6a25 100644 (file)
@@ -1,6 +1,4 @@
 /*
- * $Id: rb_polygon.c 49 2004-08-01 10:17:39Z tilman $
- *
  * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de)
  *
  * This library is free software; you can redistribute it and/or
 #include "rb_evas.h"
 #include "rb_evas_object.h"
 
-static void c_free (RbEvasObject *e)
-{
-       c_evas_object_free (e, true);
-}
-
-static VALUE c_new (VALUE klass, VALUE evas)
+/*
+ * call-seq:
+ *  Evas::Polygon.new(evas) => polygon
+ *
+ * Creates an new Evas::Polygon object.
+ */
+static VALUE c_init (VALUE self, VALUE evas)
 {
-       VALUE self, argv[1];
-       RbEvasObject *poly;
-
        CHECK_CLASS (evas, cEvas);
        GET_OBJ (evas, RbEvas, e);
+       GET_OBJ (self, RbEvasObject, poly);
 
-       self = Data_Make_Struct (klass, RbEvasObject, c_evas_object_mark,
-                                c_free, poly);
        poly->real = evas_object_polygon_add (e->real);
 
-       argv[0] = evas;
-       rb_obj_call_init (self, 1, argv);
+       rb_call_super (1, &evas);
 
        return self;
 }
 
-static VALUE c_point_add (VALUE self, VALUE x, VALUE y)
+/*
+ * call-seq:
+ *  polygon.add_point(x, y) => nil
+ *
+ * Adds a point to <i>polygon</i>.
+ */
+static VALUE c_add_point (VALUE self, VALUE x, VALUE y)
 {
        GET_OBJ (self, RbEvasObject, e);
 
@@ -61,7 +61,13 @@ static VALUE c_point_add (VALUE self, VALUE x, VALUE y)
        return Qnil;
 }
 
-static VALUE c_points_clear (VALUE self)
+/*
+ * call-seq:
+ *  polygon.clear_points => nil
+ *
+ * Clears the points of <i>polygon</i>.
+ */
+static VALUE c_clear_points (VALUE self)
 {
        GET_OBJ (self, RbEvasObject, e);
 
@@ -74,7 +80,7 @@ void Init_Polygon (void)
 {
        VALUE c = rb_define_class_under (mEvas, "Polygon", cEvasObject);
 
-       rb_define_singleton_method (c, "new", c_new, 1);
-       rb_define_method (c, "point_add", c_point_add, 2);
-       rb_define_method (c, "points_clear", c_points_clear, 0);
+       rb_define_method (c, "initialize", c_init, 1);
+       rb_define_method (c, "add_point", c_add_point, 2);
+       rb_define_method (c, "clear_points", c_clear_points, 0);
 }