Is there a way to quickly/easily toggle a program's AppDocky entry without having to unregister/register the application every time?
When the program is iconified, I would like the option to do a regular Workbench iconify, and an AppDocky.
Iconify, add to AppDock
AppIconInfo.iconType=APPICONT_ProgramIcon;
IApplication->SetApplicationAttrs(appID,
REGAPP_AppIconInfo, AppIconInfo,
REGAPP_FileName, ProgramComplete,
TAG_END);
Uniconify, remove from AppDock
AppIconInfo.iconType=APPICONT_None;
IApplication->SetApplicationAttrs(appID,
REGAPP_AppIconInfo, AppIconInfo,
TAG_END);
Something along those lines.