]> ncurses.scripts.mit.edu Git - ncurses.git/blob - man/curs_delch.3x
e62ecc130de1c0b1ffe1dec7e8c5e2dcfe919196
[ncurses.git] / man / curs_delch.3x
1 .\"***************************************************************************
2 .\" Copyright 2018-2023,2024 Thomas E. Dickey                                *
3 .\" Copyright 1998-2006,2010 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_delch.3x,v 1.34 2024/04/20 19:24:14 tom Exp $
31 .TH curs_delch 3X 2024-04-20 "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 .SH NAME
43 \fB\%delch\fP,
44 \fB\%wdelch\fP,
45 \fB\%mvdelch\fP,
46 \fB\%mvwdelch\fP \-
47 delete a character from a \fIcurses\fR window
48 .SH SYNOPSIS
49 .nf
50 \fB#include <curses.h>
51 .PP
52 \fBint delch(void);
53 \fBint wdelch(WINDOW *\fIwin\fP);
54 \fBint mvdelch(int \fIy\fP, int \fIx\fP);
55 \fBint mvwdelch(WINDOW *\fIwin\fP, int \fIy\fP, int \fIx\fP);
56 .fi
57 .SH DESCRIPTION
58 .B \%wdelch
59 deletes the character at the cursor position in
60 .IR win .
61 \fB\%ncurses\fP(3X) describes the variants of this function.
62 .PP
63 .B \%wdelch
64 moves all characters to the right of the cursor on the same line to the
65 left one position and replaces the contents of the rightmost position on
66 the line with the window's blank character;
67 see \fB\%bkgd\fP(3X)
68 (wide-character API users may consult \fB\%bkgrnd\fP(3X) instead).
69 The cursor position does not change
70 (after moving to
71 .RI ( y ,
72 .IR x ),
73 if specified).
74 .SH RETURN VALUE
75 These functions return
76 .B OK
77 on success and
78 .B ERR
79 on failure.
80 .PP
81 Functions taking a
82 .I \%WINDOW
83 pointer argument fail if the pointer is
84 .BR NULL .
85 .PP
86 Functions prefixed with \*(``mv\*('' first perform cursor movement and
87 fail if the position
88 .RI ( y ,
89 .IR x )
90 is outside the window boundaries.
91 .SH NOTES
92 .BR \%delch ,
93 .BR \%mvdelch ,
94 and
95 .B \%mvwdelch
96 may be implemented as macros.
97 .PP
98 A terminal's
99 .B \%delete_character
100 .RB ( dch1 )
101 capability
102 is not necessarily employed.
103 .SH PORTABILITY
104 X/Open Curses,
105 Issue 4 describes these functions.
106 .PP
107 SVr4
108 .I curses
109 describes a successful return value only as
110 \*(``an integer value other than
111 .BR ERR \*(''.
112 .SH SEE ALSO
113 \fB\%curses\fP(3X)