14 typedef struct leDebugEventListener
16 void (*widgetPropertyChanged)(
const leWidget* wgt);
17 void (*widgetAboutToAddChild)(
const leWidget* wgt,
const leWidget* child, uint32_t idx);
18 void (*widgetChildAdded)(
const leWidget* wgt,
const leWidget* child, uint32_t idx);
19 void (*widgetAboutToRemoveChild)(
const leWidget* wgt,
const leWidget* child, uint32_t idx);
20 void (*widgetChildRemoved)(
const leWidget* wgt,
const leWidget* child, uint32_t idx);
21 void (*widgetAboutToReparent)(
const leWidget* wgt,
const leWidget* oldParent, uint32_t oldIdx,
const leWidget* newParent, uint32_t newIdx);
22 void (*widgetReparented)(
const leWidget* wgt,
const leWidget* oldParent, uint32_t oldIdx,
const leWidget* newParent, uint32_t newIdx);
23 } leDebugEventListener;
25 void _leSetDebugListener(leDebugEventListener* listener);
27 void _leDebugNotify_WidgetPropertyChanged(
const leWidget* wgt);
29 void _leDebugNotify_WidgetAboutToAddChild(
const leWidget* wgt,
33 void _leDebugNotify_WidgetChildAdded(
const leWidget* wgt,
37 void _leDebugNotify_WidgetAboutToRemoveChild(
const leWidget* wgt,
41 void _leDebugNotify_WidgetChildRemoved(
const leWidget* wgt,
45 void _leDebugNotify_WidgetAboutToReparent(
const leWidget* wgt,
51 void _leDebugNotify_WidgetReparented(
const leWidget* wgt,
57 void _leDebug_SetEventsEnabled(
leBool b);
65 #endif // LEGATO_DEBUG_H Common macros and definitions used by Legato.
leBool
This enum represents booleans.
Definition: legato_common.h:146