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

61 lines
1.2 KiB
C

#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#define EO_BASE_BETA
#include "Eo.h"
#include "composite_objects_simple.h"
#include "composite_objects_comp.h"
#include "../eunit_tests.h"
#define MY_CLASS COMP_CLASS
static int
_a_get(Eo *obj, void *class_data EINA_UNUSED)
{
int a = 0;
a = simple_a_get(eo_super(obj, MY_CLASS));
return a;
}
static Eo *
_constructor(Eo *obj, void *class_data EINA_UNUSED)
{
obj = eo_constructor(eo_super(obj, MY_CLASS));
Eo *simple = NULL;
eo_add(&simple, SIMPLE_CLASS, obj);
eo_composite_attach(obj, simple);
eo_event_callback_forwarder_add(simple, EV_A_CHANGED, obj);
fail_if(eo_composite_part_is(obj));
fail_if(!eo_composite_part_is(simple));
eo_key_data_set(obj, "simple-obj", simple);
return obj;
}
static Eo_Op_Description op_descs[] = {
EO_OP_FUNC_OVERRIDE(eo_constructor, _constructor),
EO_OP_FUNC_OVERRIDE(simple_a_get, _a_get),
};
static const Eo_Class_Description class_desc = {
EO_VERSION,
"Comp",
EO_CLASS_TYPE_REGULAR,
EO_CLASS_DESCRIPTION_OPS(op_descs),
NULL,
0,
NULL,
NULL
};
EO_DEFINE_CLASS(comp_class_get, &class_desc, EO_CLASS,
SIMPLE_CLASS, NULL);