success = LayoutIconA(icon,screen,tags);
D0 A0 A1 A2
BOOL LayoutIconA(struct DiskObject *icon,struct Screen *screen,
success = LayoutIcon(icon,screen,...);
BOOL LayoutIcon(struct DiskObject *icon,struct Screen *screen,...);
This function will prepare an icon for display, either on a specific screen or using a default colour palette. It is useful only for palette mapped icons.
You must make sure that the screen you remap to does not go away while there is an icon to use its colours. For a public screen, the easiest way to guarantee this is to keep it locked (see
intuition.library/LockPubScreen). For custom screens, just don't close them! If you have to close the screen or need to keep your icon around until after a screen is closed, you should call LayoutIcon() with a NULL screen parameter. This will release all pens the icon has allocated and remap the icon to a default set of colours. Alternatively, you can dispose of the icon via
FreeDiskObject() which will also release all pens the icon has allocated, including the icon itself, of course.
Icons remapped to the global default screen (normally, that would be the Workbench screen) may get changed and remapped again during Workbench close/open transitions. To prevent this from taking place, just make sure that the Workbench screen does not close (e.g. via LockPubScreen("Workbench")).
The sizes of the bitmapped icon imagery and the palette mapped icon imagery may not agree. Thus, the size of the icon may be reported differently before and after LayoutIconA() is called. Therefore, don't cache the icon size if you must call LayoutIconA()! First call LayoutIconA(), then determine the size of the icon.