efl/src/tests/eo/composite_objects/composite_objects_simple.c

57 lines
1.2 KiB
C
Raw Normal View History

#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include "Eo.h"
2012-09-25 23:56:52 -07:00
#include "composite_objects_simple.h"
EAPI const Eo_Event_Description _EV_A_CHANGED =
EO_EVENT_DESCRIPTION("a,changed", "Called when a has changed.");
#define MY_CLASS SIMPLE_CLASS
static void
_a_set(Eo *obj, void *class_data, int a)
{
Simple_Public_Data *pd = class_data;
printf("%s %d\n", eo_class_name_get(MY_CLASS), a);
pd->a = a;
2014-04-02 01:46:34 -07:00
eo_do(obj, eo_event_callback_call(EV_A_CHANGED, &pd->a));
}
static int
_a_get(Eo *obj EINA_UNUSED, void *class_data)
{
const Simple_Public_Data *pd = class_data;
return pd->a;
}
2014-04-02 01:46:34 -07:00
EAPI EO_VOID_FUNC_BODYV(simple_a_set, EO_FUNC_CALL(a), int a);
EAPI EO_FUNC_BODY(simple_a_get, int, 0);
2014-04-02 01:46:34 -07:00
static Eo_Op_Description op_descs[] = {
EO_OP_FUNC(simple_a_set, _a_set, "Set property A"),
EO_OP_FUNC(simple_a_get, _a_get, "Get property A"),
EO_OP_SENTINEL
};
static const Eo_Event_Description *event_desc[] = {
EV_A_CHANGED,
NULL
};
static const Eo_Class_Description class_desc = {
2014-04-02 01:46:34 -07:00
EO_VERSION,
"Simple",
EO_CLASS_TYPE_REGULAR,
2014-04-02 01:46:34 -07:00
EO_CLASS_DESCRIPTION_OPS(op_descs),
event_desc,
sizeof(Simple_Public_Data),
NULL,
NULL
};
2014-04-02 04:01:16 -07:00
EO_DEFINE_CLASS(simple_class_get, &class_desc, EO_CLASS, NULL);