blob: c3b68e813d1cc9c70b39680db8de7c2a055328d5 [file] [log] [blame]
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301.\"***************************************************************************
micky3879b9f5e72025-07-08 18:04:53 -04002.\" Copyright 2018-2023,2024 Thomas E. Dickey *
3.\" Copyright 1998-2010,2017 Free Software Foundation, Inc. *
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304.\" *
5.\" Permission is hereby granted, free of charge, to any person obtaining a *
6.\" copy of this software and associated documentation files (the *
7.\" "Software"), to deal in the Software without restriction, including *
8.\" without limitation the rights to use, copy, modify, merge, publish, *
9.\" distribute, distribute with modifications, sublicense, and/or sell *
10.\" copies of the Software, and to permit persons to whom the Software is *
11.\" furnished to do so, subject to the following conditions: *
12.\" *
13.\" The above copyright notice and this permission notice shall be included *
14.\" in all copies or substantial portions of the Software. *
15.\" *
16.\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
17.\" OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
18.\" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
19.\" IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
20.\" DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
21.\" OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
22.\" THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
23.\" *
24.\" Except as contained in this notice, the name(s) of the above copyright *
25.\" holders shall not be used in advertising or otherwise to promote the *
26.\" sale, use or other dealings in this Software without prior written *
27.\" authorization. *
28.\"***************************************************************************
29.\"
micky3879b9f5e72025-07-08 18:04:53 -040030.\" $Id: curs_move.3x,v 1.40 2024/04/27 17:56:05 tom Exp $
31.TH curs_move 3X 2024-04-27 "ncurses @NCURSES_MAJOR@.@NCURSES_MINOR@" "Library calls"
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053032.SH NAME
micky3879b9f5e72025-07-08 18:04:53 -040033\fB\%move\fP,
34\fB\%wmove\fP \-
35move cursor in a \fIcurses\fR window
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053036.SH SYNOPSIS
micky3879b9f5e72025-07-08 18:04:53 -040037.nf
38\fB#include <curses.h>
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053039.PP
micky3879b9f5e72025-07-08 18:04:53 -040040\fBint move(int \fIy\fP, int \fIx\fP);
41\fBint wmove(WINDOW *\fIwin\fP, int \fIy\fP, int \fIx\fP);
42.fi
43.SH DESCRIPTION
44.B \%wmove
45relocates the cursor associated with the
46.I curses
47window
48.I win
49to line
50.I y
51and column
52.IR x .
53The terminal's cursor does not move until \fB\%refresh\fP(3X) is called.
54The position
55.RI ( y ,
56.IR x )
57is relative to the upper left-hand corner of the window,
58which has coordinates
59(0,\ 0).
60\fB\%ncurses\fP(3X) describes the
61.B \%move
62variant of this function.
63.SH RETURN VALUE
64These functions return
65.B OK
66on success and
67.B ERR
68on failure.
69.PP
70They fail if the position
71.RI ( y ,
72.IR x )
73is outside the window boundaries.
74.PP
75.B \%wmove
76fails if its
77.I \%WINDOW
78pointer argument is
79.BR NULL .
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053080.SH NOTES
micky3879b9f5e72025-07-08 18:04:53 -040081.B \%move
82may be implemented as a macro.
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053083.SH PORTABILITY
micky3879b9f5e72025-07-08 18:04:53 -040084X/Open Curses,
85Issue 4 describes these functions.
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053086.SH SEE ALSO
micky3879b9f5e72025-07-08 18:04:53 -040087\fB\%curses\fP(3X),
88\fB\%curs_refresh\fP(3X)