~~Title: Efl.Layout.Calc: recalc~~ ===== Description ===== %%The layout was recalculated.%% //Since 1.22// {{page>:develop:api-include:efl:layout:calc:event:recalc:description&nouser&nolink&nodate}} ===== Signature ===== recalc; ===== C information ===== EFL_LAYOUT_EVENT_RECALC(void) ===== C usage ===== static void on_efl_layout_event_recalc(void *data, const Efl_Event *event) { void info = event->info; Eo *obj = event->object; Data *d = data; /* event hander code */ } static void setup_event_handler(Eo *obj, Data *d) { efl_event_callback_add(obj, EFL_LAYOUT_EVENT_RECALC, on_efl_layout_event_recalc, d); }