/*
- * $Id: rb_esmart_file_dialog.c 336 2005-05-02 17:29:52Z tilman $
+ * $Id: rb_esmart_file_dialog.c 337 2005-05-02 17:48:20Z tilman $
*
* Copyright (C) 2005 Tilman Sauerbeck (tilman at code-monkey de)
*
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);
VALUE self, argv[1];
RbFileDialog *fd = NULL;
+ 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);
argv[0] = evas;
rb_obj_call_init (self, 1, argv);
- 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;
}
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;
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_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);