Frames are the most commonly used container widgets. The primiary purpose of frames is to serve as containers for grouping other widgets together.
A Frame may have an optional lable, in which case it appears as a labeled frame with the label displayed near the upper-left corner of the frame window.
Frames do not handle any useful events.
To create a frame, use EZ_CreateFrame
with type
EZ_WIDGET_FRAME
or use the next function.
void EZ_CreateFrame(EZ_Widget *parent, char *label)
This function creates a frame widget. If parent is NULL
,
the frame created is a toplevel widget.