AppIcon = AddAppIconA(id, userdata, text, msgport,
D0 D0 D1 A0 A1
lock, diskobj, taglist)
A2 A3 A4
struct AppIcon *AddAppIconA(ULONG, ULONG, STRPTR ,
struct MsgPort *, BPTR, struct DiskObject *,
struct TagItem *);
Alternate, varargs version:
struct AppIcon *AddAppIcon(ULONG, ULONG, STRPTR ,
struct MsgPort *, BPTR,
struct DiskObject *,
tag1, data1,
tag2, data2,
...
TAG_END );
Attempt to add an icon to Workbench's list of AppIcons. If successful, the icon is displayed on the Workbench backdrop (the same place disk icons are displayed).
This call is provided to allow applications to be notified when a graphical object (not neccessarely associated with a file) gets 'manipulated'.
The notification consists of an AppMessage (found in workbench.h/i) of type 'MTYPE_APPICON' arriving at the message port you specified.
The types of 'manipulation' that can occur are:
1. Double-clicking on the icon. am_NumArgs will be zero and
am_ArgList will be NULL.
2. Dropping an icon or icons on your AppIcon. am_NumArgs will
be the number of icons dropped on your AppIcon plus one. am_ArgList will be an array of pointers to WBArg structures. Refer to the 'WBStartup Message' section of the RKM for more info.
3. Dropping your AppIcon on another icon. NOT SUPPORTED.
4. Invoking an "Icons" item with your icon selected. (V44)
You have to tell Workbench which menu items your icon responds to using the tag item list you provide to AddAppIconA(). When one of the supported menu items is invoked, you will receive an AppMessage with the am_Class entry set to a value out of AMCLASSICON_Open..AMCLASSICON_EmptyTrash, corresponding to the menu item used.
- id
-
this variable is strictly for your own use and is ignored by Workbench. Typical uses in C are in switch and case statements, and in assembly language table lookup.
- userdata
-
this variable is strictly for your own use and is ignored by Workbench.
- text
-
name of icon (char *)
- lock
-
NULL (Currently unused)
- msgport
-
pointer to message port Workbench will use to send you an AppMessage message of type 'MTYPE_APPICON' when your icon gets 'manipulated' (explained above).
- diskobj
-
pointer to a DiskObject structure filled in as follows: do_Magic - NULL
- do_Version
-
NULL
- do_Gadget
-
a gadget structure filled in as follows: NextGadget - NULL
- LeftEdge
-
NULL
- TopEdge
-
NULL
- Width
-
width of icon hit-box
- Height
-
height of icon hit-box
- Flags
-
NULL or GADGHIMAGE
- Activation
-
NULL
- GadgetType
-
NULL
- GadgetRender
-
pointer to Image structure filled in as follows: LeftEdge - NULL
- TopEdge
-
NULL
- Width
-
width of image (must be <= Width of hit box)
- Height
-
height of image (must be <= Height of hit box)
- Depth
-
# of bit-planes in image
- ImageData
-
pointer to actual word aligned bits (CHIP MEM)
- PlanePick
-
Plane mask ((1 << depth) - 1)
- PlaneOnOff
-
0
- NextImage
-
NULL
- SelectRender
-
pointer to alternate Image struct or NULL
- GadgetText
-
NULL
- MutualExclude
-
NULL
- SpecialInfo
-
NULL
- GadgetID
-
NULL
- UserData
-
NULL
- do_Type
-
NULL
- do_DefaultTool
-
NULL
- do_ToolTypes
-
NULL
- do_CurrentX
-
NO_ICON_POSITION (recommended)
- do_CurrentY
-
NO_ICON_POSITION (recommended)
- do_DrawerData
-
NULL
- do_ToolWindow
-
NULL
- do_StackSize
-
NULL
(an easy way to create one of these (a DiskObject) is to create an icon
with the V2.0 icon editor and save it out. Your application can then call GetDiskObject on it and pass that to AddAppIcon.)
- taglist
-
ptr to a list of tag items. Must be NULL for V2.0.
You could design a print-spooler icon and add it to the Workbench.
Any file dropped on the print spooler would be printed. If the
user double-clicked (opened) your printer-spooler icon, you could
open a window showing the status of the print spool, allow changes
to print priorities, allow deletions, etc. If you registered this
window as an 'AppWindow' (explained in workbench.library/AddAppWindow)
files could also be dropped in the window and added to the spool.
For this function call to succeed, Workbench must be open. This means that the LoadWB command was executed and the Workbench screen has been opened.
In workbench.library versions 36 through 40 Info cannot be obtained on appicons.