]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/base/lib_insch.c
ncurses 5.4
[ncurses.git] / ncurses / base / lib_insch.c
1 /****************************************************************************
2  * Copyright (c) 1998-2001,2002 Free Software Foundation, Inc.              *
3  *                                                                          *
4  * Permission is hereby granted, free of charge, to any person obtaining a  *
5  * copy of this software and associated documentation files (the            *
6  * "Software"), to deal in the Software without restriction, including      *
7  * without limitation the rights to use, copy, modify, merge, publish,      *
8  * distribute, distribute with modifications, sublicense, and/or sell       *
9  * copies of the Software, and to permit persons to whom the Software is    *
10  * furnished to do so, subject to the following conditions:                 *
11  *                                                                          *
12  * The above copyright notice and this permission notice shall be included  *
13  * in all copies or substantial portions of the Software.                   *
14  *                                                                          *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
16  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
17  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
18  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
19  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
20  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
21  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
22  *                                                                          *
23  * Except as contained in this notice, the name(s) of the above copyright   *
24  * holders shall not be used in advertising or otherwise to promote the     *
25  * sale, use or other dealings in this Software without prior written       *
26  * authorization.                                                           *
27  ****************************************************************************/
28
29 /****************************************************************************
30  *  Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995               *
31  *     and: Eric S. Raymond <esr@snark.thyrsus.com>                         *
32  *     and: Sven Verdoolaege                                                *
33  *     and: Thomas E. Dickey                                                *
34  ****************************************************************************/
35
36 /*
37 **      lib_insch.c
38 **
39 **      The routine winsch().
40 **
41 */
42
43 #include <curses.priv.h>
44 #include <ctype.h>
45
46 MODULE_ID("$Id: lib_insch.c,v 1.18 2002/11/23 21:41:05 tom Exp $")
47
48 /*
49  * Insert the given character, updating the current location to simplify
50  * inserting a string.
51  */
52 void
53 _nc_insert_ch(WINDOW *win, chtype ch)
54 {
55     NCURSES_CH_T wch;
56     int count;
57
58     switch (ch) {
59     case '\t':
60         for (count = (TABSIZE - (win->_curx % TABSIZE)); count > 0; count--)
61             _nc_insert_ch(win, ' ');
62         break;
63     case '\n':
64     case '\r':
65     case '\b':
66         SetChar2(wch, ch);
67         _nc_waddch_nosync(win, wch);
68         break;
69     default:
70         if (is7bits(ch) && iscntrl(ch)) {
71             _nc_insert_ch(win, '^');
72             _nc_insert_ch(win, '@' + (ch));
73         } else if (win->_curx <= win->_maxx) {
74             struct ldat *line = &(win->_line[win->_cury]);
75             NCURSES_CH_T *end = &(line->text[win->_curx]);
76             NCURSES_CH_T *temp1 = &(line->text[win->_maxx]);
77             NCURSES_CH_T *temp2 = temp1 - 1;
78
79             SetChar2(wch, ch);
80
81             CHANGED_TO_EOL(line, win->_curx, win->_maxx);
82             while (temp1 > end)
83                 *temp1-- = *temp2--;
84
85             *temp1 = _nc_render(win, wch);
86
87             win->_curx++;
88         }
89         break;
90     }
91 }
92
93 NCURSES_EXPORT(int)
94 winsch(WINDOW *win, chtype c)
95 {
96     NCURSES_SIZE_T oy;
97     NCURSES_SIZE_T ox;
98     int code = ERR;
99
100     T((T_CALLED("winsch(%p, %s)"), win, _tracechtype(c)));
101
102     if (win != 0) {
103         oy = win->_cury;
104         ox = win->_curx;
105
106         _nc_insert_ch(win, c);
107
108         win->_curx = ox;
109         win->_cury = oy;
110         _nc_synchook(win);
111         code = OK;
112     }
113     returnCode(code);
114 }
115
116 NCURSES_EXPORT(int)
117 winsnstr(WINDOW *win, const char *s, int n)
118 {
119     int code = ERR;
120     NCURSES_SIZE_T oy;
121     NCURSES_SIZE_T ox;
122     const unsigned char *str = (const unsigned char *) s;
123     const unsigned char *cp;
124
125     T((T_CALLED("winsnstr(%p,%s,%d)"), win, _nc_visbufn(s, n), n));
126
127     if (win != 0 && str != 0) {
128         oy = win->_cury;
129         ox = win->_curx;
130         for (cp = str; *cp && (n <= 0 || (cp - str) < n); cp++) {
131             _nc_insert_ch(win, (chtype) UChar(*cp));
132         }
133         win->_curx = ox;
134         win->_cury = oy;
135         _nc_synchook(win);
136         code = OK;
137     }
138     returnCode(code);
139 }