Home | History | Annotate | Download | only in larn

Lines Matching refs:cursor

45  * cursor(x,y)			position cursor at [x,y]
46 * cursors() position cursor at [1,24] (saves memory)
47 * cl_line(x,y) clear line at [1,y] and leave cursor at [x,y]
572 * cursor(x,y) Subroutine to set the cursor position
574 * x and y are the cursor coordinates, and lpbuff is the output buffer where
595 cursor(x, y)
612 * cursor(x,y) Put cursor at specified coordinates staring at [1,1] (termcap)
615 cursor(int x, int y)
620 *lpnt++ = CURSOR;
627 * Routine to position cursor at beginning of 24th line
632 cursor(1, 24);
673 * cl_line(x,y) Clear the whole line indicated by 'y' and leave cursor at [x,y]
679 cursor(x, y);
682 cursor(1, y);
684 cursor(x, y);
689 * cl_up(x,y) Clear screen from [x,1] to current position. Leave cursor at [x,y]
695 cursor(x, y);
699 cursor(1, 1);
704 cursor(x, y);
709 * cl_dn(x,y) Clear screen from [1,y] to end of display. Leave cursor at [x,y]
715 cursor(x, y);
719 cursor(1, y);
727 cursor(x, y);
730 cursor(x, y);
818 case CURSOR: