/* Check if the icon is palette mapped. */
LONG isPaletteMapped;
LONG errorCode;
struct DiskObject *icon;
if(IconControl(icon,
ICONCTRLA_IsPaletteMapped,&isPaletteMapped,
ICONA_ErrorCode,&errorCode,
TAG_DONE) == 1)
{
Printf("the icon %s palette mapped\n",
isPaletteMapped ? "is" : "is not");
}
else
{
Printf("could not query icon information;\n");
PrintFault(errorCode,NULL);
}
/* Set the icon colour remapping precision. */
IconControl(NULL,
ICONCTRLA_SetGlobalPrecision,PRECISION_EXACT,
TAG_DONE);
/* Query the embossing rectangle dimensions and
* the identification hook.
*/
struct Rectangle rect;
struct Hook *hook;
if(IconControl(NULL,
ICONCTRLA_GetGlobalEmbossRect,&rect,
ICONCTRLA_GetGlobalIdentifyHook,&hook,
TAG_DONE) == 2)
{
Printf("embossing rect: %ld,%ld,%ld,%ld\n",
rect.MinX,rect.MaxX,rect.MinY,rect.MaxY);
Printf("identification hook: 0x%08lx\n",
}