•  Back 
  •  VDI Printer Escapes 
  •  Index 
  •  Tree View 
  •  Cross references 
  •  %About 
  •  Show info about hypertext 
  •  View a new file 
Topic       : The ATARI Compendium
Author      : Scott Sanders / JAY Software
Version     : 1.25 (20/6/2003)
Subject     : Documentation
Nodes       : 1117
Index Size  : 32614
HCP-Version : 6
Compiled on : Atari
@charset    : UTF-8
@lang       : en
@default    : 
@help       : %About
@options    : +g -i -t4 +y +z
@width      : 100
View Ref-Filev_rmcur()
graf_mouse()
v_show_c()
v_dspcur()                                                              VDI

Syntax

VOID v_dspcur( handle, x, y )
WORD handle, x, y;

Function      v_dspcur() displays the mouse pointer on screen at the
              specified position.

Opcode        5

Sub-Opcode    18

Availability  Supported by all screen drivers.

Parameters    handle specifies a valid workstation handle. x and y specify
              the screen coordinates of where to display the mouse
              pointer.

Binding       contrl[0] = 5;
              contrl[1] = 1
              contrl[3] = 0;
              contrl[5] = 18;
              contrl[6] = handle;

              ptsin[0] = x;
              ptsin[1] = y;

              vdi();

Comments      This call will render a mouse cursor on screen regardless of
              its current 'show' status. Normally a function will use
              either graf_mouse() if using the AES or v_show_c() if using
              the VDI.

See Also      v_rmcur(), graf_mouse(), v_show_c()

Group         VDI Printer Escapes