efl/src/tests/eo/access/access_simple.c

57 lines
1.1 KiB
C

#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include "Eo.h"
#include "access_simple.h"
#include "access_simple_protected.h"
typedef struct
{
Simple_Protected_Data protected;
int a;
} Private_Data;
EAPI const Efl_Event_Description _EV_A_CHANGED =
EFL_EVENT_DESCRIPTION("a,changed");
#define MY_CLASS SIMPLE_CLASS
static void
_a_set(Eo *obj, void *class_data, int a)
{
Private_Data *pd = class_data;
pd->a = a;
printf("%s %d\n", __func__, pd->a);
pd->protected.protected_x1 = a + 1;
pd->protected.public.public_x2 = a + 2;
efl_event_callback_legacy_call(obj, EV_A_CHANGED, &pd->a);
}
EAPI EFL_VOID_FUNC_BODYV(simple_a_set, EFL_FUNC_CALL(a), int a);
static Eina_Bool
_class_initializer(Efl_Class *klass)
{
EFL_OPS_DEFINE(ops,
EFL_OBJECT_OP_FUNC(simple_a_set, _a_set),
);
return efl_class_functions_set(klass, &ops, NULL);
}
static const Efl_Class_Description class_desc = {
EO_VERSION,
"Simple",
EFL_CLASS_TYPE_REGULAR,
sizeof(Private_Data),
_class_initializer,
NULL,
NULL
};
EFL_DEFINE_CLASS(simple_class_get, &class_desc, EO_CLASS, NULL)