radioboxes

This commit is contained in:
IoIxD 2026-09-11 16:22:43 -07:00
commit 806ce3b864
5 changed files with 170 additions and 23 deletions

View file

@ -187,6 +187,17 @@ MWDECL MwLLPixmap MWAPI MwLoadIcon(MwWidget handle, MwU32* data);
*/
MWDECL void MWAPI MwDrawDiamond(MwWidget handle, MwRect* rect, MwLLColor color, int invert);
/*!
* @brief Draws a circle
* @param handle Widget
* @param rect Rectangle area
* @param color Color
* @param color Background to fade to; widget background used if NULL
* @param filled Fill the circle or not
* @param outward
*/
MWDECL void MWAPI MwDrawCircle(MwWidget handle, MwRect* rect, MwLLColor color, MwLLColor background, int filled);
/* text.c */
/*!

View file

@ -92,6 +92,7 @@ struct _MwWidget {
MwPoint mouse_point;
int close;
int prop_event;
int held;
void* internal;
void* opaque;