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

Structure: laCircleWidget_t 

A circle widget draws a circle of the specified origin and radius inside the widget bounds. All coordinates are expressed in local widget space. 

The color of the circle is determined by the widget scheme's 'foreground' color.

C
typedef struct laCircleWidget_t {
  laWidget widget;
  int32_t x;
  int32_t y;
  int32_t radius;
  int32_t thickness;
  laBool filled;
} laCircleWidget;
Members
Members 
Description 
laWidget widget; 
base widget header 
int32_t x; 
the origin x cooridnate 
int32_t y; 
the origin y coordinate 
int32_t radius; 
the radius of the circle 
int32_t thickness; 
the thickness of the circle outline 
laBool filled; 
fills the circle area 
Remarks

None.

MPLAB® Harmony Graphics Suite