Unix and Linux Discussions Tagged with advanced |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
249 |
262,115 |
UNIX for Advanced & Expert Users |
|
|
|
0 |
59,935 |
UNIX for Advanced & Expert Users |
|
|
|
9 |
59,525 |
AIX |
|
|
|
1 |
10,350 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
16,215 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
11,711 |
UNIX for Advanced & Expert Users |
|
|
|
0 |
24,581 |
UNIX for Advanced & Expert Users |
|
|
|
5 |
17,716 |
UNIX for Advanced & Expert Users |
|
|
|
0 |
23,320 |
UNIX for Advanced & Expert Users |
|
|
|
0 |
29,341 |
UNIX for Advanced & Expert Users |
|
|
|
0 |
28,762 |
UNIX for Advanced & Expert Users |
|
|
|
4 |
12,996 |
UNIX for Advanced & Expert Users |
|
|
|
5 |
22,729 |
UNIX for Advanced & Expert Users |
|
|
|
5 |
14,486 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
17,566 |
UNIX for Advanced & Expert Users |
|
|
|
3 |
12,046 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
11,509 |
UNIX for Advanced & Expert Users |
|
|
|
0 |
25,250 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
39,902 |
UNIX for Advanced & Expert Users |
|
|
|
11 |
21,893 |
UNIX for Advanced & Expert Users |
|
|
|
45 |
58,322 |
UNIX for Advanced & Expert Users |
|
|
|
6 |
17,413 |
UNIX for Advanced & Expert Users |
|
|
|
14 |
21,536 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
12,226 |
UNIX for Advanced & Expert Users |
|
|
|
10 |
17,588 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
15,735 |
UNIX for Advanced & Expert Users |
|
|
|
6 |
16,965 |
UNIX for Advanced & Expert Users |
|
|
|
3 |
17,226 |
UNIX for Advanced & Expert Users |
|
|
|
3 |
14,465 |
UNIX for Advanced & Expert Users |
|
|
|
12 |
20,160 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
14,722 |
UNIX for Advanced & Expert Users |
|
|
|
6 |
16,426 |
UNIX for Advanced & Expert Users |
|
|
|
6 |
34,581 |
UNIX for Advanced & Expert Users |
|
|
|
8 |
16,527 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
13,432 |
UNIX for Advanced & Expert Users |
|
|
|
4 |
15,189 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
14,744 |
UNIX for Advanced & Expert Users |
|
|
|
5 |
14,299 |
UNIX for Advanced & Expert Users |
|
|
|
6 |
21,149 |
UNIX for Advanced & Expert Users |
|
|
|
4 |
18,581 |
UNIX for Advanced & Expert Users |
addch(3cur) addch(3cur)
Name
addch, waddch, mvaddch, mvwaddch - add character to window
Syntax
#include <cursesX.h>
int addch(ch)
chtype ch;
int waddch(win, ch)
WINDOW *win;
chtype ch;
int mvaddch(y, x, ch)
int y, x;
chtype ch;
int mvwaddch(win, y, x, ch)
WINDOW *win;
int y, x;
chtype ch;
Description
The routine inserts the character into the default window at the current cursor position and the window cursor is advanced. The character
is of the type which is defined in the header file, as containing both data and attributes.
The routine inserts the character into the specified window at the current cursor position. The cursor position is advanced.
The routine moves the cursor to the specified (y, x) position and inserts the character into the default window. The cursor position is
advanced after the character has been inserted.
The routine moves the cursor to the specified (y, x) position and inserts the character into the specified window. The cursor position is
advanced after the character has been inserted.
All these routines are similar to The following information applies to all the routines.
If the cursor moves on to the right margin, an automatic newline is performed. If is enabled, and a character is added to the bottom right
corner of the screen, the scrolling region will be scrolled up one line. If scrolling is not allowed, ERR will be returned.
If is a tab, newline, or backspace, the cursor will be moved appropriately within the window. If is a newline, the routine is called
before the cursor is moved to the beginning of the next line. If newline mapping is off, the cursor will be moved to the next line, but
the x coordinate will be unchanged. If is a tab the cursor is moved to the next tab position within the window. If is another control
character, it will be drawn in the ^X notation. Calling the routine after adding a control character returns the representation of the
control character, not the control character.
Video attributes can be combined with a character by or-ing them into the parameter. This will result in these attributes being set. The
intent here is that text, including attributes, can be copied from one place to another using and For further information, see
The and routines are macros.
Return Values
The and functions return OK on success and ERR on error.
See Also
clrtoeol(3cur), inch(3cur), scrollok(3cur), standout(3cur), putchar(3s)
addch(3cur)