vi = GetVisualInfoA(screen, tagList)
D0 A0 A1
APTR vi = GetVisualInfoA(struct Screen *, struct TagItem *);
vi = GetVisualInfo(screen, firsttag, ...)
APTR vi = GetVisualInfo(struct Screen *, Tag, ...);
Get a pointer to a (private) block of data containing various bits of information that GadTools needs to ensure the best quality visuals. Use the result in the NewGadget structure of any gadget you create, or as a parameter to the various menu calls. Once the gadgets/menus are no longer needed (after the last CloseWindow), call
FreeVisualInfo().
- GTVI_LeftBorder:
-
Left offset for the gadget design grid. Default is screen->WBorLeft, which is the default window left border. Should be set to 0 if the window to be used is borderless or a GIMMEZEROZERO window.
GTVI_TopBorder : Top offset for the gadget design grid.
Default is screen->WBorTop + scr->Font->ta_YSize + 1 which is the default window top border with typical window decorations, i.e a dragbar. Should be set to 0 if the window is borderless or a GIMMEZEROZERO window.
FreeVisualInfo(), intuition/LockPubScreen(), intuition/UnlockPubScreen()