MPLAB® Harmony Graphics Suite > Graphics Library > Aria Graphics Library > Aria User Interface Library Interface > b) Data Types and Constants > laEditWidget Structure
MPLAB® Harmony Graphics Suite
laEditWidget Structure

Structure: laEditWidget_t 

Edit widgets are a subset of normal widgets that are capable of receiving edit events from the UI kernel. Specialized widgets are capable of broadcasting edit events and the active edit event will react to them.

C
typedef struct laEditWidget_t {
  laWidget widget;
  laEditWidget_StartEdit_FnPtr startEdit;
  laEditWidget_EndEdit_FnPtr endEdit;
  laEditWidget_Clear_FnPtr clear;
  laEditWidget_Accept_FnPtr accept;
  laEditWidget_Set_FnPtr set;
  laEditWidget_Append_FnPtr append;
  laEditWidget_Backspace_FnPtr backspace;
} laEditWidget;
Remarks

None.

MPLAB® Harmony Graphics Suite