*nix Documentation Project
·  Home
 +   man pages
·  Linux HOWTOs
·  FreeBSD Tips
·  *niX Forums

  man pages->IRIX man pages -> standard/move (3)              
Title
Content
Arch
Section
 

Contents


curs_move(3X)							 curs_move(3X)


NAME    [Toc]    [Back]

     curs_move:	 move, wmove - move curses window cursor

SYNOPSIS    [Toc]    [Back]

     #include <curses.h>

     int move(int y, int x);

     int wmove(WINDOW *win, int	y, int x);

DESCRIPTION    [Toc]    [Back]

     With these	routines, the cursor associated	with the window	is moved to
     line y and	column x.  This	routine	does not move the physical cursor of
     the terminal until	refresh	is called.  The	position specified is relative
     to	the upper left-hand corner of the window, which	is (0,0).

RETURN VALUE    [Toc]    [Back]

     These routines return the integer ERR upon	failure	and an integer value
     other than	ERR upon successful completion.

NOTES    [Toc]    [Back]

     The header	file <curses.h>	automatically includes the header files
     <stdio.h> and <unctrl.h>.

     Note that move may	be a macro.

SEE ALSO    [Toc]    [Back]

      
      
     curses(3X), curs_refresh(3X)
move(3G)							      move(3G)


NAME    [Toc]    [Back]

     move, movei, moves, move2,	move2i,	move2s - moves the current graphics
     position to a specified point

C SPECIFICATION    [Toc]    [Back]

     void move(Coord x,	Coord y, Coord z)

     void movei(Icoord x, Icoord y, Icoord z)

     void moves(Scoord x, Scoord y, Scoord z)

     void move2(Coord x, Coord y)

     void move2i(Icoord	x, Icoord y)

     void move2s(Scoord	x, Scoord y)

     All of the	above routines are functionally	the same.  They	differ only in
     the type declarations of their parameters and in whether they assume a
     three- or two-dimensional space.

PARAMETERS    [Toc]    [Back]

     x	 expects the new x coordinate for the current graphics position.

     y	 expects the new y coordinate for the current graphics position.

     z	 expects the new z coordinate for the current graphics position	(when
	 applicable).

DESCRIPTION    [Toc]    [Back]

     move changes (without drawing) the	current	graphics position to the point
     specified by x, y,	and z. The graphics position is	the point from which
     the next drawing routine will start drawing.

     move2(x, y) is equivalent to move(x, y, 0.0).

SEE ALSO    [Toc]    [Back]

      
      
     bgnline, draw, endline, v,	getgpos

NOTE    [Toc]    [Back]

     move should not be	used in	new development.  Rather, lines	should be
     drawn using the high-performance v	commands, surrounded by	calls to
     bgnline and endline.


									PPPPaaaaggggeeee 1111
[ Back ]
 Similar pages
Name OS Title
move FreeBSD move curses window cursor
wmove FreeBSD move curses window cursor
wmove Tru64 Move the Curses window cursor
curs_move OpenBSD move curses window cursor
move Tru64 Move the Curses window cursor
curs_move FreeBSD move curses window cursor
move OpenBSD move curses window cursor
curs_move Tru64 Move the Curses window cursor
wmove OpenBSD move curses window cursor
DtEditorGoToLine HP-UX move the insert cursor for a DtEditor widget to a specified line
Copyright © 2004-2005 DeniX Solutions SRL
newsletter delivery service