success = WorkbenchControlA(name,tags)
BOOL WorkbenchControlA(STRPTR name,struct TagItem *tags);
success = WorkbenchControl(name,...);
BOOL WorkbenchControl(STRPTR name,...);
With this function you can query or modify global Workbench parameters or local icon options.
If this function returns FALSE, the expected result is undefined. For example, if you tried to obtain the list of currently running programs via the WBCTRLA_GetProgramList tag and WorkbenchControl() failed with an error code, do not expect the List pointer you passed in to be initialized.
This function may only be called by a Process.
This function may not process all tags if the Workbench is not currently open. For V44, the following tags are support if Workbench is closed:
-
WBCTRLA_SetDefaultStackSize
-
WBCTRLA_GetDefaultStackSize
-
WBCTRLA_FreeHiddenDeviceList
-
WBCTRLA_GetHiddenDeviceList
-
WBCTRLA_AddHiddenDeviceName
-
WBCTRLA_RemoveHiddenDeviceName
-
WBCTRLA_SetTypeRestartTime
-
WBCTRLA_GetTypeRestartTime
For V45 the following additional tags are supported while Workbench is closed:
-
WBCTRLA_GetCopyHook
-
WBCTRLA_SetCopyHook
-
WBCTRLA_GetDeleteHook
-
WBCTRLA_SetDeleteHook
-
WBCTRLA_GetTextInputHook
-
WBCTRLA_SetTextInputHook
It should be noted that the copy hook code will never be invoked if data can be moved on the file system just by renaming it. Likewise, if an entire volume is to be copied to a different volume by means of the DiskCopy program, the copy hook code will not be invoked either.
/* Obtain a copy of the Workbench search path list, then
BPTR pathList;
if(WorkbenchControl(NULL,
WBCTRLA_DuplicateSearchPath,&pathList,
TAG_DONE))
{
WorkbenchControl(NULL,
WBCTRLA_FreeSearchPath,pathList,
TAG_DONE);
}
/* Check if the drawer "SYS:" is open. */
LONG isOpen;
if(WorkbenchControl("SYS:",
TAG_DONE))
{
Printf("Drawer \"SYS:\" is %s.\n",
isOpen ? "open" : "closed");
}
/* Print the list of all currently running
* Workbench programs, then free the list again.
*/
struct List * list;
if(WorkbenchControl(NULL,
WBCTRLA_GetProgramList,&list,
TAG_DONE))
{
struct Node * node;
for(node = list->lh_Head ;
node->ln_Succ != NULL ;
node = node->ln_Succ)
{
Printf("%s\n",node->ln_Name);
}
WorkbenchControl(NULL,
WBCTRLA_FreeProgramList,list,
TAG_DONE);
}