-## $Id: Makefile.am 119 2004-10-18 20:17:53Z tilman $
+## $Id: Makefile.am 139 2004-10-30 09:41:17Z tilman $
AM_CFLAGS = $(EVAS_CFLAGS) $(EDJE_CFLAGS)
INCLUDES = -I$(RUBYDIR) -I$(RUBYSITEDIR)
edje_la_SOURCES = rb_edje_main.c rb_edje_main.h \
rb_edje.c rb_edje.h \
- rb_part.c rb_part.h
+ rb_part.c rb_part.h \
+ rb_messages.c rb_messages.h
edje_la_LIBADD = -L$(RUBYLIBDIR) $(RUBYLIB) $(EVAS_LIBS) $(EDJE_LIBS)
edje_la_LDFLAGS = -module -avoid-version
/*
- * $Id: rb_edje.c 129 2004-10-22 17:03:35Z tilman $
+ * $Id: rb_edje.c 139 2004-10-30 09:41:17Z tilman $
*
* Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de)
*
#include "rb_edje.h"
#include "rb_edje_main.h"
#include "rb_part.h"
+#include "rb_messages.h"
VALUE cEdje;
return s ? rb_str_new2 (s) : Qnil;
}
+static VALUE c_send_message (VALUE self, VALUE msg)
+{
+ VALUE m;
+ Edje_Message_Type type;
+ int id;
+
+ GET_OBJ (self, RbEdje, e);
+
+ CHECK_CLASS (msg, cMsg);
+
+ type = NUM2INT (rb_iv_get (msg, "@type"));
+ id = NUM2INT (rb_iv_get (msg, "@id"));
+ m = rb_funcall (msg, rb_intern ("serialize"), 0, NULL);
+
+ edje_object_message_send (e->real.real, type, id, (void *) m);
+
+ return Qnil;
+}
+
void Init_Edje (void)
{
cEdje = rb_define_class_under (mEdje, "Edje", cEvasObject);
rb_define_method (cEdje, "animation?", c_animation_get, 0);
rb_define_method (cEdje, "animation=", c_animation_set, 1);
rb_define_method (cEdje, "data", c_data_get, 1);
+ rb_define_method (cEdje, "send_message", c_send_message, 1);
}
/*
- * $Id: rb_edje_main.c 59 2004-08-10 14:10:31Z tilman $
+ * $Id: rb_edje_main.c 139 2004-10-30 09:41:17Z tilman $
*
* Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de)
*
#include "rb_edje_main.h"
#include "rb_edje.h"
#include "rb_part.h"
+#include "rb_messages.h"
/*
* call-seq:
Init_Edje ();
Init_Part ();
+ Init_Messages ();
}
--- /dev/null
+/*
+ * $Id: rb_messages.c 139 2004-10-30 09:41:17Z tilman $
+ *
+ * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de)
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+#include <ruby.h>
+
+#include <Edje.h>
+
+#define __RB_MESSAGES_C
+#include "rb_edje_main.h"
+#include "rb_edje.h"
+#include "rb_messages.h"
+
+#define DEF_CONST(mod, prefix, name) \
+ rb_define_const ((mod), #name, \
+ INT2FIX (prefix##name));
+
+VALUE cMsg, cStrMsg;
+
+static VALUE c_msg_init (VALUE self)
+{
+ rb_iv_set (self, "@id", UINT2NUM (0));
+
+ return self;
+}
+
+static VALUE c_str_msg_init (VALUE self, VALUE str)
+{
+ Check_Type (str, T_STRING);
+
+ rb_call_super (0, NULL);
+
+ rb_iv_set (self, "@type", UINT2NUM (EDJE_MESSAGE_STRING));
+ rb_iv_set (self, "@string", str);
+
+ return self;
+}
+
+static VALUE c_str_msg_serialize (VALUE self)
+{
+ static volatile Edje_Message_String ret;
+ VALUE s;
+
+ s = rb_iv_get (self, "@string");
+ ret.str = StringValuePtr (s);
+
+ return (VALUE) &ret;
+}
+
+void Init_Messages (void)
+{
+ cMsg = rb_define_class_under (mEdje, "Message", rb_cObject);
+
+ rb_define_method (cMsg, "initialize", c_msg_init, 0);
+
+ rb_define_attr (cMsg, "type", 1, 0);
+ rb_define_attr (cMsg, "id", 1, 1);
+
+ cStrMsg = rb_define_class_under (mEdje, "StringMessage", cMsg);
+ rb_define_method (cStrMsg, "initialize", c_str_msg_init, 1);
+ rb_define_method (cStrMsg, "serialize", c_str_msg_serialize, 0);
+
+ rb_define_attr (cStrMsg, "string", 1, 1);
+}
--- /dev/null
+/*
+ * $Id: rb_messages.h 139 2004-10-30 09:41:17Z tilman $
+ *
+ * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de)
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+#ifndef __RB_MESSAGES_H
+#define __RB_MESSAGES_H
+
+void Init_Messages (void);
+
+#ifndef __RB_MESSAGES_C
+extern VALUE cMsg, cStrMsg;
+#endif
+
+#endif