1curs_ins_wstr(3X) curs_ins_wstr(3X)
2
3
4
6 ins_wstr, ins_nwstr, wins_wstr, wins_nwstr, mvins_wstr, mvins_nwstr,
7 mvwins_wstr, mvwins_nwstr - insert a wide-character string into a
8 curses window
9
11 #include <curses.h>
12
13 int ins_wstr(const wchar_t *wstr);
14 int ins_nwstr(const wchar_t *wstr, int n);
15 int wins_wstr(WINDOW *win, const wchar_t *wstr);
16 int wins_nwstr(WINDOW *win, const wchar_t *wstr, int n);
17
18 int mvins_wstr(int y, int x, const wchar_t *wstr);
19 int mvins_nwstr(int y, int x, const wchar_t *wstr, int n);
20 int mvwins_wstr(WINDOW *win, int y, int x, const wchar_t *wstr);
21 int mvwins_nwstr(WINDOW *win, int y, int x, const wchar_t *wstr, int n);
22
24 These routines insert a wchar_t character string (as many characters as
25 will fit on the line) before the character under the cursor. All char‐
26 acters to the right of the cursor are shifted right, with the possibil‐
27 ity of the rightmost characters on the line being lost. No wrapping is
28 performed. The cursor position does not change (after moving to y, x,
29 if specified). The four routines with n as the last argument insert a
30 leading substring of at most n wchar_t characters. If n is less than
31 1, the entire string is inserted.
32
33 If a character in wstr is a tab, newline, carriage return or backspace,
34 the cursor is moved appropriately within the window. A newline also
35 does a clrtoeol before moving. Tabs are considered to be at every
36 eighth column. If a character in wstr is another control character, it
37 is drawn in the ^X notation. Calling win_wch after adding a control
38 character (and moving to it, if necessary) does not return the control
39 character, but instead returns a character in the ^-representation of
40 the control character.
41
43 Note that all but wins_nwstr may be macros.
44
45 If the first character in the string is a nonspacing character, these
46 functions will fail. XSI does not define what will happen if a non‐
47 spacing character follows a control character.
48
50 Upon successful completion, these functions return OK. Otherwise, they
51 return ERR.
52
53 Functions with a “mv” prefix first perform a cursor movement using
54 wmove, and return an error if the position is outside the window, or if
55 the window pointer is null.
56
58 curses(3X), curs_insstr(3X), curs_in_wch(3X), curs_ins_wch(3X).
59
60
61
62 curs_ins_wstr(3X)