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

Enumeration: laImagePlusWidget_t 

An image plus widget displays an image asset and can translate and resize that image.

C
typedef struct laImagePlusWidget_t {
  laWidget widget;
  GFXU_ImageAsset* image;
  int32_t transformX;
  int32_t transformY;
  int32_t transformWidth;
  int32_t transformHeight;
  laBool resizeToFit;
  laBool preserveAspect;
  laImagePlusWidget_ResizeFilter resizeFilter;
  laBool inputEnabled;
  GFX_Point touch0;
  laBool touch0_down;
  GFX_Point touch1;
  laBool touch1_down;
  GFX_PixelBuffer buffer;
} laImagePlusWidget;
Members
Members 
Description 
laWidget widget; 
widget base class 
GFXU_ImageAsset* image; 
pointer to image asset 
Remarks

None.

MPLAB® Harmony Graphics Suite