2 .\" Copyright (c) 1990, 1995 by Mortice Kern Systems Inc. All Rights Reserved Portions Copyright (c) 1996, Sun Microsystems, Inc. All Rights Reserved
3 .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License.
4 .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License.
5 .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
6 .TH INCH 3XCURSES "Jun 5, 2002"
8 inch, mvinch, mvwinch, winch \- return a single-byte character (with rendition)
12 \fBcc\fR [ \fIflag\fR... ] \fIfile\fR... \fB-I\fR /usr/xpg4/include \fB -L \fR /usr/xpg4/lib \e
13 \fB -R \fR /usr/xpg4/lib \fB -lcurses \fR [ \fIlibrary\fR... ]
15 \fBc89\fR [ \fIflag\fR... ] \fIfile\fR... \fB-lcurses\fR [ \fIlibrary\fR... ]
19 \fBchtype\fR \fBinch\fR(\fBvoid\fR);
24 \fBchtype\fR \fBmvinch\fR(\fBint\fR \fIy\fR, \fBint\fR \fIx\fR);
29 \fBchtype\fR \fBmvwinch\fR(\fBWINDOW *\fR\fIwin\fR, \fBint\fR \fIy\fR, \fBint\fR \fIx\fR);
34 \fBchtype\fR \fBwinch\fR(\fBWINDOW *\fR\fIwin\fR);
40 The \fBinch()\fR and \fBwinch()\fR functions return the \fBchtype\fR character
41 located at the current cursor position of the \fBstdscr\fR window and window
42 \fIwin\fR, respectively. The \fBmvinch()\fR and \fBmvwinch()\fR functions
43 return the \fBchtype\fR character located at the position indicated by the
44 \fIx\fR (column) and \fIy\fR (row) parameters (the former in the \fBstdscr\fR
45 window; the latter in window \fIwin\fR).
48 The complete character/attribute pair will be returned. The character or
49 attributes can be extracted by performing a bitwise \fBAND\fR on the returned
50 value, using the constants \fBA_CHARTEXT\fR, \fBA_ATTRIBUTES\fR, and
59 Is the y (row) coordinate of the position of the character to be returned.
68 Is the x (column) coordinate of the position of the character to be returned.
77 Is a pointer to the window that contains the character to be returned.
83 On success, these functions return the specified character and rendition.
84 Otherwise, they return \fBERR\fR.
92 See \fBattributes\fR(5) for descriptions of the following attributes:
100 ATTRIBUTE TYPE ATTRIBUTE VALUE
102 Interface Stability Standard
110 \fBaddch\fR(3XCURSES), \fBattroff\fR(3XCURSES), \fBlibcurses\fR(3XCURSES),
111 \fBattributes\fR(5), \fBstandards\fR(5)