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

Structure: laWindowWidget_t 

A window widget is an extension of a basic panel. It adds a title bar with text and an icon.

C
typedef struct laWindowWidget_t {
  laWidget widget;
  laString title;
  GFXU_ImageAsset* icon;
  uint32_t iconMargin;
  struct {
    GFX_Rect barRect;
  } paintData;
  GFXU_ExternalAssetReader* reader;
} laWindowWidget;
Members
Members 
Description 
laWidget widget; 
base widget class 
laString title; 
title text 
GFXU_ImageAsset* icon; 
title icon 
uint32_t iconMargin; 
title icon margin 
GFXU_ExternalAssetReader* reader; 
asset reader 
Remarks

None.

MPLAB® Harmony Graphics Suite