blob: febaf294174f3e981b2c917710b6e81f7c5bf812 [file] [log] [blame]
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301.\"***************************************************************************
Steve Kondikae271bc2015-11-15 02:50:53 +01002.\" Copyright (c) 2007,2010 Free Software Foundation, Inc. *
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303.\" *
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.\"
Steve Kondikae271bc2015-11-15 02:50:53 +010029.\" $Id: curs_legacy.3x,v 1.5 2010/12/04 18:38:55 tom Exp $
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053030.TH curs_legacy 3X ""
31.SH NAME
Steve Kondikae271bc2015-11-15 02:50:53 +010032getattrs \- get \fBcurses\fR cursor and window coordinates, attributes
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053033.SH SYNOPSIS
34\fB#include <curses.h>\fR
35.sp
Steve Kondikae271bc2015-11-15 02:50:53 +010036\fBint getattrs(WINDOW *win);\fR
37.br
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053038\fBint getbegx(WINDOW *win);\fR
39.br
40\fBint getbegy(WINDOW *win);\fR
41.br
42\fBint getcurx(WINDOW *win);\fR
43.br
44\fBint getcury(WINDOW *win);\fR
45.br
46\fBint getmaxx(WINDOW *win);\fR
47.br
48\fBint getmaxy(WINDOW *win);\fR
49.br
50\fBint getparx(WINDOW *win);\fR
51.br
52\fBint getpary(WINDOW *win);\fR
53.br
54.SH DESCRIPTION
55The \fBgetbegy\fR and \fBgetbegx\fR functions return the same
56data as \fBgetbegyx\fR.
57.PP
58The \fBgetcury\fR and \fBgetcurx\fR functions return the same
59data as \fBgetyx\fR.
60.PP
61The \fBgetmaxy\fR and \fBgetmaxx\fR functions return the same
62data as \fBgetmaxyx\fR.
63.PP
64The \fBgetpary\fR and \fBgetparx\fR functions return the same
65data as \fBgetparyx\fR.
66.SH RETURN VALUE
67These functions return an integer,
68or ERR if the window parameter is null.
69.SH NOTES
70All of these interfaces are provided as macros and functions.
71The macros are suppressed (and only the functions provided)
72when \fBNCURSES_OPAQUE\fR is defined.
73The standard forms such as \fBgetyx\fP must be implemented as macros,
74and (in this implementation) are defined in terms of the functions
75described here,
76to avoid reliance on internal details of the WINDOW structure.
77.SH PORTABILITY
78These functions were supported on Version 7, BSD or System V implementations.
79.SH SEE ALSO
80\fBcurses\fR(3X),
81\fBcurs_getyx\fR(3X),
82\fBcurs_opaque\fR(3X)