To add NoteBookPages to a NoteBook widget, use
EZ_CreateWidget
with type
EZ_WIDGET_NB_PAGE
or use
EZ_Widget *EZ_CreateNoteBookPage(EZ_Widget *notebook,
char *label, int underline)
This function inserts a page into a notebook widget. A notebook page can be treated as a regular frame.
Occationally, one may need to activate a NoteBookPage externally. This can be achieved by calling
EZ_Widget *EZ_ActivateNoteBookPage(EZ_Widget *page)
Sometimes, one may want to modify the appearance of the tag for a NoteBookPage. EZwgl provide a command to extract the tag (a button) of a NoteBookPage.
EZ_Widget *EZ_GetNoteBookPageTag(EZ_Widget *page)
This function returns the tag (a push button) of a MoteBookPage.