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

62 lines
1.3 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;
eo_do_super(obj, MY_CLASS, a = simple_a_get());
return a;
}
static Eo *
_constructor(Eo *obj, void *class_data EINA_UNUSED)
{
Eina_Bool tmp;
obj = eo_do_super_ret(obj, MY_CLASS, obj, eo_constructor());
Eo *simple = eo_add(SIMPLE_CLASS, obj);
eo_do(obj, eo_composite_attach(simple));
eo_do(simple, eo_event_callback_forwarder_add(EV_A_CHANGED, obj));
fail_if(eo_do_ret(obj, tmp, eo_composite_part_is()));
fail_if(!eo_do_ret(simple, tmp, eo_composite_part_is()));
eo_do(obj, eo_key_data_set("simple-obj", simple, NULL));
return obj;
}
static Eo_Op_Description op_descs[] = {
EO_OP_FUNC_OVERRIDE(eo_constructor, _constructor),
EO_OP_FUNC_OVERRIDE(simple_a_get, _a_get),
EO_OP_SENTINEL
};
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);