]> ncurses.scripts.mit.edu Git - ncurses.git/blob - man/curs_legacy.3x
ncurses 6.4 - patch 20231007
[ncurses.git] / man / curs_legacy.3x
1 .\"***************************************************************************
2 .\" Copyright 2019-2022,2023 Thomas E. Dickey                                *
3 .\" Copyright 2007-2015,2017 Free Software Foundation, Inc.                  *
4 .\"                                                                          *
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 .\"
30 .\" $Id: curs_legacy.3x,v 1.28 2023/10/07 21:19:07 tom Exp $
31 .TH curs_legacy 3X 2023-10-07 "ncurses 6.4" "Library calls"
32 .de bP
33 .ie n  .IP \(bu 4
34 .el    .IP \(bu 2
35 ..
36 .SH NAME
37 \fB\%getattrs\fP,
38 \fB\%getbegx\fP,
39 \fB\%getbegy\fP,
40 \fB\%getcurx\fP,
41 \fB\%getcury\fP,
42 \fB\%getmaxx\fP,
43 \fB\%getmaxy\fP,
44 \fB\%getparx\fP,
45 \fB\%getpary\fP \-
46 get \fIcurses\fR cursor and window coordinates or attributes (legacy)
47 .SH SYNOPSIS
48 .nf
49 \fB#include <curses.h>
50 .PP
51 \fBint getattrs(const WINDOW *\fIwin\fP);
52 .PP
53 \fBint getbegx(const WINDOW *\fIwin\fP);
54 \fBint getbegy(const WINDOW *\fIwin\fP);
55 .PP
56 \fBint getcurx(const WINDOW *\fIwin\fP);
57 \fBint getcury(const WINDOW *\fIwin\fP);
58 .PP
59 \fBint getmaxx(const WINDOW *\fIwin\fP);
60 \fBint getmaxy(const WINDOW *\fIwin\fP);
61 .PP
62 \fBint getparx(const WINDOW *\fIwin\fP);
63 \fBint getpary(const WINDOW *\fIwin\fP);
64 .fi
65 .SH DESCRIPTION
66 These legacy functions are simpler to use than the X/Open \fIcurses\fP functions:
67 .bP
68 The \fB\%getattrs\fP function returns the same attribute data as \fB\%wattr_get\fP.
69 .IP
70 However, \fB\%getattrs\fP returns an integer (actually a \fB\%chtype\fP),
71 while \fB\%wattr_get\fP returns the current color pair in a separate parameter.
72 In the wide-character library configuration,
73 color pairs may not fit into a \fB\%chtype\fP,
74 so \fB\%wattr_get\fP is the only way to obtain the color information.
75 .IP
76 Because \fB\%getattrs\fP returns the attributes in a single parameter,
77 it would not be possible for an application to distinguish that from
78 \fBERR\fP (a \fI-1\fP).
79 If the window parameter is null, \fB\%getattrs\fP returns \fB\%A_NORMAL\fP (zero).
80 .bP
81 The \fB\%getbegy\fP and \fB\%getbegx\fP functions return the same
82 data as \fB\%getbegyx\fP.
83 .bP
84 The \fB\%getcury\fP and \fB\%getcurx\fP functions return the same
85 data as \fB\%getyx\fP.
86 .bP
87 The \fB\%getmaxy\fP and \fB\%getmaxx\fP functions return the same
88 data as \fB\%getmaxyx\fP.
89 .bP
90 The \fB\%getpary\fP and \fB\%getparx\fP functions return the same
91 data as \fB\%getparyx\fP.
92 .SH RETURN VALUE
93 Except as noted,
94 these functions return an integer,
95 or \fBERR\fP if the window parameter is null.
96 .SH NOTES
97 All of these interfaces are provided as macros and functions.
98 The macros are suppressed (and only the functions provided)
99 when \fB\%NCURSES_OPAQUE\fP is defined.
100 The standard forms such as \fB\%getyx\fP must be implemented as macros,
101 and (in this implementation) are defined in terms of the functions
102 described here,
103 to avoid reliance on internal details of the \fB\%WINDOW\fP structure.
104 .SH PORTABILITY
105 These functions were supported on Version 7, BSD or System V implementations.
106 None of those implementations checked the window parameter.
107 .PP
108 The \fB\%getattrs\fP function and macro are defined to return a (signed) integer
109 for compatibility with those implementations
110 although an unsigned type would have been more appropriate.
111 .SH SEE ALSO
112 \fB\%curses\fP(3X),
113 \fB\%curs_getyx\fP(3X),
114 \fB\%curs_opaque\fP(3X)