Output cursor movement commands to the terminal.
Curses Library (libcurses.a)
The mvcur subroutine outputs one or more commands to the terminal that move the terminal's cursor to (newrow, newcol), an absolute position on the terminal screen. The (oldrow, oldcol) arguments specify the former cursor position. Specifying the former position is necessary on terminals that do not provide coordinate-based movement commands. On terminals that provide these commands, Curses may select a more efficient way to move the cursor based on the former position. If (newrow, newcol) is not a valid address for the terminal in use, the mvcur subroutine fails. If (oldrow, oldcol) is the same as (newrow, newcol), mvcur succeeds without taking any action. If mvcur outputs a cursor movement command, it updates its information concerning the location of the cursor on the terminal.
Item | Description |
---|---|
newcol | Holds the new column coordinate of the physical cursor. |
newrow | Holds the new row coordinate of the physical cursor. |
oldcol | Holds the old column coordinate of the physical cursor. |
oldrow | Holds the old row coordinate of the physical cursor. |
Upon successful completion, the mvcur subroutine returns OK. Otherwise, it returns ERR.
mvcur(5, 15, 25, 30);
mvcur(50, 50, 5, 0);
In
this example, the physical cursor's current coordinates are unknown.
Therefore, arbitrary values are assigned to the OldLine and OldColumn parameters
and the desired coordinates are assigned to the NewLine and NewColumn parameters.
This is called an absolute move.