MPLABĀ® Harmony Graphics Suite  GFX v3.13.0
Legato API Documentation
legato_debug.h
1 #ifndef LEGATO_DEBUG_H
2 #define LEGATO_DEBUG_H
3 
5 
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
9 
10 #if LE_DEBUG == 1
11 
13 
14 typedef struct leDebugEventListener
15 {
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;
24 
25 void _leSetDebugListener(leDebugEventListener* listener);
26 
27 void _leDebugNotify_WidgetPropertyChanged(const leWidget* wgt);
28 
29 void _leDebugNotify_WidgetAboutToAddChild(const leWidget* wgt,
30  const leWidget* child,
31  uint32_t idx);
32 
33 void _leDebugNotify_WidgetChildAdded(const leWidget* wgt,
34  const leWidget* child,
35  uint32_t idx);
36 
37 void _leDebugNotify_WidgetAboutToRemoveChild(const leWidget* wgt,
38  const leWidget* child,
39  uint32_t idx);
40 
41 void _leDebugNotify_WidgetChildRemoved(const leWidget* wgt,
42  const leWidget* child,
43  uint32_t idx);
44 
45 void _leDebugNotify_WidgetAboutToReparent(const leWidget* wgt,
46  const leWidget* oldParent,
47  uint32_t oldIdx,
48  const leWidget* newParent,
49  uint32_t newIdx);
50 
51 void _leDebugNotify_WidgetReparented(const leWidget* wgt,
52  const leWidget* oldParent,
53  uint32_t oldIdx,
54  const leWidget* newParent,
55  uint32_t newIdx);
56 
57 void _leDebug_SetEventsEnabled(leBool b);
58 
59 #endif // LE_DEBUG
60 
61 #ifdef __cplusplus
62 }
63 #endif
64 
65 #endif // LEGATO_DEBUG_H
Common macros and definitions used by Legato.
Used to define a widget.
Definition: legato_widget.h:624
Legato widget definitions.
leBool
This enum represents booleans.
Definition: legato_common.h:146