Class instantiation fixes.
[ruby-esmart.git] / src / esmart_file_dialog / rb_esmart_file_dialog.c
index ad61a521d7766e62115a1d1f2c349d41d079968d..4c60feccdbf2b1d1e4cf6bfd5f7ca0bbf66ab390 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: rb_esmart_file_dialog.c 336 2005-05-02 17:29:52Z tilman $
+ * $Id: rb_esmart_file_dialog.c 356 2006-02-10 18:27:31Z tilman $
  *
  * Copyright (C) 2005 Tilman Sauerbeck (tilman at code-monkey de)
  *
@@ -32,6 +32,9 @@ typedef struct {
        VALUE edje;
 } RbFileDialog;
 
+static void on_action (void *data, Evas_Object *edje,
+                       Esmart_File_Dialog_Op op);
+
 static void c_mark (RbFileDialog *e)
 {
        c_evas_object_mark (&e->real);
@@ -49,28 +52,39 @@ static void c_free (RbFileDialog *e)
        free (e);
 }
 
-static VALUE c_new (VALUE klass, VALUE evas, VALUE edj)
+static VALUE c_alloc (VALUE klass)
 {
-       VALUE self, argv[1];
        RbFileDialog *fd = NULL;
 
+       return Data_Make_Struct (klass, RbFileDialog, c_mark, c_free, fd);
+}
+
+static VALUE c_init (VALUE self, VALUE evas, VALUE edj)
+{
+       if (!rb_block_given_p ()) {
+               rb_raise (rb_eStandardError, "no block given");
+               return Qnil;
+       }
+
        CHECK_CLASS (evas, cEvas);
        StringValue (edj);
        GET_OBJ (evas, RbEvas, e);
+       GET_OBJ (self, RbFileDialog, fd);
 
-       self = Data_Make_Struct (klass, RbFileDialog, c_mark, c_free, fd);
        fd->real.real = esmart_file_dialog_new (e->real,
                                                StringValuePtr (edj));
 
        if (!fd->real.real)
                rb_raise (rb_eStandardError, "failed");
 
-       argv[0] = evas;
-       rb_obj_call_init (self, 1, argv);
+       rb_call_super (1, &evas);
 
-       fd->callback = Qnil;
+       fd->callback = rb_block_proc ();
        fd->edje = Qnil;
 
+       esmart_file_dialog_callback_add (fd->real.real, on_action,
+                                        (void *) fd->callback);
+
        return self;
 }
 
@@ -105,21 +119,6 @@ static void on_action (void *data, Evas_Object *edje,
        rb_funcall ((VALUE) data, rb_intern ("call"), 1, ID2SYM (sym));
 }
 
-static VALUE c_on_action (VALUE self)
-{
-       GET_OBJ (self, RbFileDialog, fd);
-
-       if (!rb_block_given_p ())
-               return Qnil;
-
-       fd->callback = rb_block_proc ();
-
-       esmart_file_dialog_callback_add (fd->real.real, on_action,
-                                        (void *) fd->callback);
-
-       return Qnil;
-}
-
 static VALUE c_edje_get (VALUE self)
 {
        Evas_Object *e;
@@ -183,8 +182,8 @@ void Init_esmart_file_dialog (void)
 
        c = rb_define_class_under (mEsmart, "FileDialog", cEvasObject);
 
-       rb_define_singleton_method (c, "new", c_new, 2);
-       rb_define_method (c, "on_action", c_on_action, 0);
+       rb_define_alloc_func (c, c_alloc);
+       rb_define_method (c, "initialize", c_init, 2);
        rb_define_method (c, "edje", c_edje_get, 0);
        rb_define_method (c, "selections", c_selections_get, 0);
        rb_define_method (c, "current_directory", c_current_directory_get, 0);