Simple creation of system request.
Source position: intuition.pas line 4079
function BuildEasyRequestArgs( |
window: pWindow; |
const easyStruct: pEasyStruct; |
idcmp: LongWord; |
const args: POINTER |
):pWindow; |
window |
|
Reference window for requester: determines the requester window title and screen. |
easyStruct |
|
A pointer to EasyStruct structure, as described in the EasyRequestArgs() . |
idcmp |
|
(not a pointer) provided application specific IDCMP flags for the system requester window. |
args |
|
A pointer to the system request window opened. In the event of problems, you may also be returned the value '0' which is to be interpreted as the "False, Cancel" choice, or (if you have a second gadget defined) the value '1', which is to be taken to mean the equivalent of your corresponding left-most gadget. If there is a problem creating the window, a recoverable alert may be substituted for the requester, and the result, either 0 or 1, returned.
This function is to EasyRequestArgs() as BuildSysRequest() is to AutoRequest(): it returns a pointer to the system requester window. The input from that window can then be processed under application control.
It is recommended that this processing be done with SysReqHandler(), so that future enhancement to the processing will be enjoyed.
After you have determined that the requester is satisfied or cancelled, you must free this requester using FreeSysRequest().
Please see the autodoc for EasyRequestArgs().
Note: This function switches the processor stack to ensure sufficient stack space for the function to complete.
|
Easy alternative to AutoRequest() |
|
|
Free resources gotten by a call to BuildSysRequest(). |
|
|
Handle system requester input. |
|
|
Build and display a system requester. |
|
|
Automatically build and get response from a requester. |