Tag for OpenWindowTagList(). Which events should be reported
Source position: intuition.pas line 1490
const WA_IDCMP = WA_Dummy + $07; |
IDCMP flags tell Intuition what user input events the application wants to be notified about. (see IDCMP_*) Equivalent to TNewWindow.IDCMPFlags
If any of these flags are set, Intuition creates a pair of message ports for the window (one internal to Intuition and one used by the application). These ports are for handling messages about user input events. If WA_IDCMP is nil or unspecified, no IDCMP is created for this window.
The ModifyIDCMP() function can be used to change the window's IDCMP flags after it is open.