]> ncurses.scripts.mit.edu Git - ncurses.git/blob - man/curs_legacy.3x
ncurses 5.6 - patch 20080329
[ncurses.git] / man / curs_legacy.3x
1 .\"***************************************************************************
2 .\" Copyright (c) 2007 Free Software Foundation, Inc.                        *
3 .\"                                                                          *
4 .\" Permission is hereby granted, free of charge, to any person obtaining a  *
5 .\" copy of this software and associated documentation files (the            *
6 .\" "Software"), to deal in the Software without restriction, including      *
7 .\" without limitation the rights to use, copy, modify, merge, publish,      *
8 .\" distribute, distribute with modifications, sublicense, and/or sell       *
9 .\" copies of the Software, and to permit persons to whom the Software is    *
10 .\" furnished to do so, subject to the following conditions:                 *
11 .\"                                                                          *
12 .\" The above copyright notice and this permission notice shall be included  *
13 .\" in all copies or substantial portions of the Software.                   *
14 .\"                                                                          *
15 .\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
16 .\" OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
17 .\" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
18 .\" IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
19 .\" DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
20 .\" OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
21 .\" THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
22 .\"                                                                          *
23 .\" Except as contained in this notice, the name(s) of the above copyright   *
24 .\" holders shall not be used in advertising or otherwise to promote the     *
25 .\" sale, use or other dealings in this Software without prior written       *
26 .\" authorization.                                                           *
27 .\"***************************************************************************
28 .\"
29 .\" $Id: curs_legacy.3x,v 1.1 2007/04/07 23:54:29 tom Exp $
30 .TH curs_legacy 3X ""
31 .SH NAME
32 \fBgetbegx\fR,
33 \fBgetbegy\fR,
34 \fBgetcurx\fR,
35 \fBgetcury\fR,
36 \fBgetmaxx\fR,
37 \fBgetmaxy\fR,
38 \fBgetparx\fR,
39 \fBgetpary\fR - get \fBcurses\fR cursor and window coordinates
40 .SH SYNOPSIS
41 \fB#include <curses.h>\fR
42 .sp
43 \fBint getbegx(WINDOW *win);\fR
44 .br
45 \fBint getbegy(WINDOW *win);\fR
46 .br
47 \fBint getcurx(WINDOW *win);\fR
48 .br
49 \fBint getcury(WINDOW *win);\fR
50 .br
51 \fBint getmaxx(WINDOW *win);\fR
52 .br
53 \fBint getmaxy(WINDOW *win);\fR
54 .br
55 \fBint getparx(WINDOW *win);\fR
56 .br
57 \fBint getpary(WINDOW *win);\fR
58 .br
59 .SH DESCRIPTION
60 The \fBgetbegy\fR and \fBgetbegx\fR functions return the same
61 data as \fBgetbegyx\fR.
62 .PP
63 The \fBgetcury\fR and \fBgetcurx\fR functions return the same
64 data as \fBgetyx\fR.
65 .PP
66 The \fBgetmaxy\fR and \fBgetmaxx\fR functions return the same
67 data as \fBgetmaxyx\fR.
68 .PP
69 The \fBgetpary\fR and \fBgetparx\fR functions return the same
70 data as \fBgetparyx\fR.
71 .SH RETURN VALUE
72 These functions return an integer,
73 or ERR if the window parameter is null.
74 .SH NOTES
75 All of these interfaces are provided as macros and functions.
76 The macros are suppressed (and only the functions provided)
77 when \fBNCURSES_OPAQUE\fR is defined.
78 The standard forms such as \fBgetyx\fP must be implemented as macros,
79 and (in this implementation) are defined in terms of the functions
80 described here,
81 to avoid reliance on internal details of the WINDOW structure.
82 .SH PORTABILITY
83 These functions were supported on Version 7, BSD or System V implementations.
84 .SH SEE ALSO
85 \fBcurses\fR(3X),
86 \fBcurs_getyx\fR(3X),
87 \fBcurs_opaque\fR(3X)
88 .\"#
89 .\"# The following sets edit modes for GNU EMACS
90 .\"# Local Variables:
91 .\"# mode:nroff
92 .\"# fill-column:79
93 .\"# End: