MPLAB® Harmony Graphics Suite
|
Structure: laKeyPadCell_t
A key pad is made up of an array of key pad cells. Each cell is individually an laButtonWidget, an action, a value, and a few other options.
typedef struct laKeyPadCell_t { laBool enabled; laButtonWidget* button; laKeyPadCellAction action; laString value; } laKeyPadCell;
Members |
Description |
laBool enabled; |
indicates if the cell should be drawn |
laButtonWidget* button; |
the button that handles the cell input events and rendering |
laKeyPadCellAction action; |
the action that occurs when the cell is activated |
laString value; |
the value that is passed to the edit event system |
None.
MPLAB® Harmony Graphics Suite
|