en:ibm:prcp:mou:getptrpos

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

en:ibm:prcp:mou:getptrpos [2016/02/04 05:08] – created valeriusen:ibm:prcp:mou:getptrpos [2016/09/15 03:59] (current) valerius
Line 1: Line 1:
 ==== MouGetPtrPos ==== ==== MouGetPtrPos ====
  
-**Bindings**: C, MASM +**Bindings**: [[getptrpos#bindings|C]][[getptrpos#MASM bindings|MASM]]
  
 This call queries the mouse driver to determine the current row and column coordinate position of the mouse pointer.  This call queries the mouse driver to determine the current row and column coordinate position of the mouse pointer. 
Line 31: Line 31:
  
 For a text window (VIO) application, the text window is a view on the larger logical video buffer (LVB). The mouse pointer can be outside that view and still be within the extent of the LVB. [[en:ibm:prcp:mou:getptrpos|MouGetPtrPos]] then returns the coordinates of the cell under the mouse pointer. If the pointer is outside the LVB image extent, the coordinates of the nearest LVB cell are returned. In either case, the LVB is scrolled until the reported LVB cell appears within the view window.  For a text window (VIO) application, the text window is a view on the larger logical video buffer (LVB). The mouse pointer can be outside that view and still be within the extent of the LVB. [[en:ibm:prcp:mou:getptrpos|MouGetPtrPos]] then returns the coordinates of the cell under the mouse pointer. If the pointer is outside the LVB image extent, the coordinates of the nearest LVB cell are returned. In either case, the LVB is scrolled until the reported LVB cell appears within the view window. 
 +
 +=== C bindings ===
 +
 +<code c>
 +typedef struct _PTRLOC {    /* moupl */
 +  USHORT row;               /* pointer row coordinate screen
 +                                 position */
 +  USHORT col;               /* pointer column coordinate screen
 +                                 position */
 +} PTRLOC;
 +
 +#define INCL_MOU
 +
 +USHORT  rc = MouGetPtrPos(PtrPos, DeviceHandle);
 +
 +PPTRLOC          PtrPos;        /* Double word structure */
 +HMOU             DeviceHandle;  /* Mouse device handle */
 +
 +USHORT           rc;            /* return code */
 +</code>
 +
 +=== MASM bindings ===
 +
 +<code asm>
 +PTRLOC  struc
 +  moupl_row  dw  ? ;pointer row coordinate screen position
 +  moupl_col  dw  ? ;pointer column coordinate screen position
 +PTRLOC  ends
 +
 +EXTRN  MouGetPtrPos:FAR
 +INCL_MOU            EQU 1
 +
 +PUSH@  OTHER   PtrPos        ;Double word structure
 +PUSH   WORD    DeviceHandle  ;Mouse device handle
 +CALL   MouGetPtrPos
 +
 +Returns WORD
 +</code>