]> ncurses.scripts.mit.edu Git - ncurses.git/blob - man/curs_add_wchstr.3x
ncurses 6.4 - patch 20240414
[ncurses.git] / man / curs_add_wchstr.3x
1 .\"***************************************************************************
2 .\" Copyright 2019-2023,2024 Thomas E. Dickey                                *
3 .\" Copyright 2002-2012,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_add_wchstr.3x,v 1.36 2024/04/13 22:21:16 tom Exp $
31 .TH curs_add_wchstr 3X 2024-04-13 "ncurses @NCURSES_MAJOR@.@NCURSES_MINOR@" "Library calls"
32 .ie \n(.g \{\
33 .ds `` \(lq
34 .ds '' \(rq
35 .\}
36 .el \{\
37 .ie t .ds `` ``
38 .el   .ds `` ""
39 .ie t .ds '' ''
40 .el   .ds '' ""
41 .\}
42 .
43 .de bP
44 .ie n  .IP \(bu 4
45 .el    .IP \(bu 2
46 ..
47 .SH NAME
48 \fB\%add_wchstr\fP,
49 \fB\%add_wchnstr\fP,
50 \fB\%wadd_wchstr\fP,
51 \fB\%wadd_wchnstr\fP,
52 \fB\%mvadd_wchstr\fP,
53 \fB\%mvadd_wchnstr\fP,
54 \fB\%mvwadd_wchstr\fP,
55 \fB\%mvwadd_wchnstr\fP \-
56 add a \fIcurses\fR complex character string to a window
57 .SH SYNOPSIS
58 .nf
59 \fB#include <curses.h>
60 .PP
61 \fBint add_wchstr(const cchar_t *\fIwchstr\fP);
62 \fBint wadd_wchstr(WINDOW * \fIwin\fP, const cchar_t *\fIwchstr\fP);
63 \fBint mvadd_wchstr(int \fIy\fP, int \fIx\fP, const cchar_t *\fIwchstr\fP);
64 \fBint mvwadd_wchstr(WINDOW *\fIwin\fP, int \fIy\fP, int \fIx\fP, const cchar_t *\fIwchstr\fP);
65 .PP
66 \fBint add_wchnstr(const cchar_t *\fIwchstr\fP, int \fIn\fP);
67 \fBint wadd_wchnstr(WINDOW * \fIwin\fP, const cchar_t *\fIwchstr\fP, int \fIn\fP);
68 \fBint mvadd_wchnstr(int \fIy\fP, int \fIx\fP, const cchar_t *\fIwchstr\fP, int \fIn\fP);
69 \fBint mvwadd_wchnstr(WINDOW *\fIwin\fP, int \fIy\fP, int \fIx\fP, const cchar_t *\fIwchstr\fP, int \fIn\fP);
70 .fi
71 .SH DESCRIPTION
72 These functions copy the (null-terminated)
73 array of complex characters \fIwchstr\fP
74 into the window image structure
75 starting at the current cursor position.
76 .PP
77 The four functions with \fIn\fP as the last
78 argument copy at most \fIn\fP elements,
79 but no more than will fit on the line.
80 If \fBn\fP=\fB\-1\fP then the whole array is copied,
81 to the maximum number of characters that will fit on the line.
82 .PP
83 The window cursor is \fInot\fP advanced.
84 These functions are faster than \fBwaddnstr\fP.
85 On the other hand:
86 .bP
87 they do not perform checking
88 (such as for the newline, backspace, or carriage return characters),
89 .bP
90 they do not advance the current cursor position,
91 .bP
92 they do not expand other control characters to ^-escapes, and
93 .bP
94 they truncate the string if it crosses the right margin,
95 rather than wrapping it around to the new line.
96 .PP
97 These functions end successfully
98 on encountering a null \fBcchar_t\fP, or
99 when they have filled the current line.
100 If a complex character cannot completely fit at the end of the current line,
101 the remaining columns are filled with the background character and rendition.
102 .SH RETURN VALUE
103 All functions return the integer \fBERR\fP upon failure and \fBOK\fP on success.
104 .PP
105 X/Open Curses does not specify any error conditions.
106 This implementation returns an error
107 .bP
108 if the \fIwin\fP parameter is null or
109 .bP
110 if the \fIwchstr\fP parameter is null.
111 .PP
112 Functions with a \*(``mv\*('' prefix first perform a cursor movement using
113 \fBwmove\fP, and return an error if the position is outside the window,
114 or if the window pointer is null.
115 .SH NOTES
116 All functions except \fBwadd_wchnstr\fP may be macros.
117 .SH PORTABILITY
118 These functions are described in the XSI Curses standard, Issue 4.
119 .SH SEE ALSO
120 \fB\%curs_addchstr\fP(3X) describes comparable functions of the
121 .I \%ncurses
122 library in its non-wide-character configuration.
123 .PP
124 \fB\%curses\fP(3X),
125 \fB\%curs_addwstr\fP(3X),
126 \fB\%curs_add_wch\fP(3X)