Visible to Intel only — GUID: GUID-8BFEE422-D1DA-446C-A3F4-D7BE1C1D3FB4
Visible to Intel only — GUID: GUID-8BFEE422-D1DA-446C-A3F4-D7BE1C1D3FB4
REGISTERMOUSEEVENT
QuickWin Function: Registers the application-supplied callback routine to be called when a specified mouse event occurs in a specified window. This routine is only available for Windows.
USE IFQWIN
result = REGISTERMOUSEEVENT (unit,mouseevents,callbackroutine)
unit |
(Input) INTEGER(4). Unit number of the window whose callback routine on mouse events is to be registered. |
mouseevents |
(Input) INTEGER(4). One or more mouse events to be handled by the callback routine to be registered. Symbolic constants (defined in IFQWIN.F90) for the possible mouse events are:
|
callbackroutine |
(Input) Routine to be called on the specified mouse event in the specified window. It must be declared EXTERNAL. |
The result type is INTEGER(4). The result is zero or a positive integer if successful; otherwise, a negative integer that can be one of the following:
MOUSE$BADUNIT - The unit specified is not open, or is not associated with a QuickWin window.
MOUSE$BADEVENT - The event specified is not supported.
The following example registers the routine CALCULATE, to be called when the user double-clicks the left mouse button while the mouse cursor is in the child window opened as unit 4:
USE IFQWIN
INTEGER(4) result
OPEN (4, FILE= 'USER')
...
result = REGISTERMOUSEEVENT (4, MOUSE$LBUTTONDBLCLK, CALCULATE)