1*7c478bd9Sstevel@tonic-gate /*
2*7c478bd9Sstevel@tonic-gate  * CDDL HEADER START
3*7c478bd9Sstevel@tonic-gate  *
4*7c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
5*7c478bd9Sstevel@tonic-gate  * Common Development and Distribution License, Version 1.0 only
6*7c478bd9Sstevel@tonic-gate  * (the "License").  You may not use this file except in compliance
7*7c478bd9Sstevel@tonic-gate  * with the License.
8*7c478bd9Sstevel@tonic-gate  *
9*7c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10*7c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
11*7c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
12*7c478bd9Sstevel@tonic-gate  * and limitations under the License.
13*7c478bd9Sstevel@tonic-gate  *
14*7c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
15*7c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16*7c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
17*7c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
18*7c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
19*7c478bd9Sstevel@tonic-gate  *
20*7c478bd9Sstevel@tonic-gate  * CDDL HEADER END
21*7c478bd9Sstevel@tonic-gate  */
22*7c478bd9Sstevel@tonic-gate /*
23*7c478bd9Sstevel@tonic-gate  * Copyright 1997 Sun Microsystems, Inc.  All rights reserved.
24*7c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
25*7c478bd9Sstevel@tonic-gate  */
26*7c478bd9Sstevel@tonic-gate 
27*7c478bd9Sstevel@tonic-gate /*	Copyright (c) 1988 AT&T	*/
28*7c478bd9Sstevel@tonic-gate /*	  All Rights Reserved	*/
29*7c478bd9Sstevel@tonic-gate 
30*7c478bd9Sstevel@tonic-gate /*
31*7c478bd9Sstevel@tonic-gate  * University Copyright- Copyright (c) 1982, 1986, 1988
32*7c478bd9Sstevel@tonic-gate  * The Regents of the University of California
33*7c478bd9Sstevel@tonic-gate  * All Rights Reserved
34*7c478bd9Sstevel@tonic-gate  *
35*7c478bd9Sstevel@tonic-gate  * University Acknowledgment- Portions of this document are derived from
36*7c478bd9Sstevel@tonic-gate  * software developed by the University of California, Berkeley, and its
37*7c478bd9Sstevel@tonic-gate  * contributors.
38*7c478bd9Sstevel@tonic-gate  */
39*7c478bd9Sstevel@tonic-gate 
40*7c478bd9Sstevel@tonic-gate /*LINTLIBRARY*/
41*7c478bd9Sstevel@tonic-gate 
42*7c478bd9Sstevel@tonic-gate #include	<sys/types.h>
43*7c478bd9Sstevel@tonic-gate #include	"curses_inc.h"
44*7c478bd9Sstevel@tonic-gate 
45*7c478bd9Sstevel@tonic-gate #define		LENGTH	256
46*7c478bd9Sstevel@tonic-gate 
47*7c478bd9Sstevel@tonic-gate /* This routine gets a string starting at (_cury, _curx) */
48*7c478bd9Sstevel@tonic-gate 
49*7c478bd9Sstevel@tonic-gate int
wgetstr(WINDOW * win,char * str)50*7c478bd9Sstevel@tonic-gate wgetstr(WINDOW *win, char *str)
51*7c478bd9Sstevel@tonic-gate {
52*7c478bd9Sstevel@tonic-gate 	return ((wgetnstr(win, str, LENGTH) == ERR) ? ERR : OK);
53*7c478bd9Sstevel@tonic-gate }
54*7c478bd9Sstevel@tonic-gate 
55*7c478bd9Sstevel@tonic-gate int
wgetnstr(WINDOW * win,char * str,int n)56*7c478bd9Sstevel@tonic-gate wgetnstr(WINDOW *win, char *str, int n)
57*7c478bd9Sstevel@tonic-gate {
58*7c478bd9Sstevel@tonic-gate 	int	cpos = 0, ch;
59*7c478bd9Sstevel@tonic-gate 	int	nbyte = 0;
60*7c478bd9Sstevel@tonic-gate 	int	tbyte = 0;
61*7c478bd9Sstevel@tonic-gate 	int	byte[LENGTH];
62*7c478bd9Sstevel@tonic-gate 	int	eucw, scrw;
63*7c478bd9Sstevel@tonic-gate 	int	docont = 0;
64*7c478bd9Sstevel@tonic-gate 	char	*cp = str;
65*7c478bd9Sstevel@tonic-gate 	int	i = 0;
66*7c478bd9Sstevel@tonic-gate 	int	total = 0;
67*7c478bd9Sstevel@tonic-gate 	char	myerase, mykill;
68*7c478bd9Sstevel@tonic-gate 	char	rownum[LENGTH], colnum[LENGTH], length[LENGTH];
69*7c478bd9Sstevel@tonic-gate 	int	doecho = SP->fl_echoit;
70*7c478bd9Sstevel@tonic-gate 	int	savecb = cur_term->_fl_rawmode;
71*7c478bd9Sstevel@tonic-gate 	bool	savsync, savimmed, savleave;
72*7c478bd9Sstevel@tonic-gate 
73*7c478bd9Sstevel@tonic-gate #ifdef	DEBUG
74*7c478bd9Sstevel@tonic-gate 	if (outf)
75*7c478bd9Sstevel@tonic-gate 		fprintf(outf, "doecho %d, savecb %d\n", doecho, savecb);
76*7c478bd9Sstevel@tonic-gate #endif	/* DEBUG */
77*7c478bd9Sstevel@tonic-gate 
78*7c478bd9Sstevel@tonic-gate 	myerase = erasechar();
79*7c478bd9Sstevel@tonic-gate 	mykill = killchar();
80*7c478bd9Sstevel@tonic-gate 	if (!savecb)
81*7c478bd9Sstevel@tonic-gate 		(void) cbreak();
82*7c478bd9Sstevel@tonic-gate 
83*7c478bd9Sstevel@tonic-gate 	if (doecho) {
84*7c478bd9Sstevel@tonic-gate 		SP->fl_echoit = FALSE;
85*7c478bd9Sstevel@tonic-gate 		savsync = win->_sync;
86*7c478bd9Sstevel@tonic-gate 		savimmed = win->_immed;
87*7c478bd9Sstevel@tonic-gate 		savleave = win->_leave;
88*7c478bd9Sstevel@tonic-gate 		win->_immed = win->_sync = win->_leave = FALSE;
89*7c478bd9Sstevel@tonic-gate 		(void) wrefresh(win);
90*7c478bd9Sstevel@tonic-gate 		if (n > LENGTH)
91*7c478bd9Sstevel@tonic-gate 			n = LENGTH;
92*7c478bd9Sstevel@tonic-gate 	}
93*7c478bd9Sstevel@tonic-gate 	n--;
94*7c478bd9Sstevel@tonic-gate 
95*7c478bd9Sstevel@tonic-gate 	while (nbyte < n) {
96*7c478bd9Sstevel@tonic-gate 		if (doecho && !docont) {
97*7c478bd9Sstevel@tonic-gate 			rownum[cpos] = win->_cury;
98*7c478bd9Sstevel@tonic-gate 			colnum[cpos] = win->_curx;
99*7c478bd9Sstevel@tonic-gate 		}
100*7c478bd9Sstevel@tonic-gate 
101*7c478bd9Sstevel@tonic-gate 		ch = wgetch(win);
102*7c478bd9Sstevel@tonic-gate 		if (docont)
103*7c478bd9Sstevel@tonic-gate 			goto cont;
104*7c478bd9Sstevel@tonic-gate 
105*7c478bd9Sstevel@tonic-gate 		if ((ch == ERR) || (ch == '\n') || (ch == '\r') ||
106*7c478bd9Sstevel@tonic-gate 		    (ch == KEY_ENTER))
107*7c478bd9Sstevel@tonic-gate 			break;
108*7c478bd9Sstevel@tonic-gate 		if ((ch == myerase) || (ch == KEY_LEFT) ||
109*7c478bd9Sstevel@tonic-gate 		    (ch == KEY_BACKSPACE) || (ch == mykill)) {
110*7c478bd9Sstevel@tonic-gate 			if (cpos > 0) {
111*7c478bd9Sstevel@tonic-gate 				if (ch == mykill) {
112*7c478bd9Sstevel@tonic-gate 					i = total;
113*7c478bd9Sstevel@tonic-gate 					total = cpos = 0;
114*7c478bd9Sstevel@tonic-gate 					nbyte = 0;
115*7c478bd9Sstevel@tonic-gate 					cp = str;
116*7c478bd9Sstevel@tonic-gate 				} else {
117*7c478bd9Sstevel@tonic-gate 					cpos--;
118*7c478bd9Sstevel@tonic-gate 					cp -= byte[cpos];
119*7c478bd9Sstevel@tonic-gate 					if (doecho)
120*7c478bd9Sstevel@tonic-gate 						total -= (i = length[cpos]);
121*7c478bd9Sstevel@tonic-gate 				}
122*7c478bd9Sstevel@tonic-gate 				if (doecho) {
123*7c478bd9Sstevel@tonic-gate 					(void) wmove(win, rownum[cpos],
124*7c478bd9Sstevel@tonic-gate 					    colnum[cpos]);
125*7c478bd9Sstevel@tonic-gate 					/* Add the correct amount of blanks. */
126*7c478bd9Sstevel@tonic-gate 					for (; i > 0; i--)
127*7c478bd9Sstevel@tonic-gate 						(void) waddch(win, ' ');
128*7c478bd9Sstevel@tonic-gate 					/* Move back after the blanks are */
129*7c478bd9Sstevel@tonic-gate 					/* put in. */
130*7c478bd9Sstevel@tonic-gate 					(void) wmove(win, rownum[cpos],
131*7c478bd9Sstevel@tonic-gate 					    colnum[cpos]);
132*7c478bd9Sstevel@tonic-gate 					/* Update total. */
133*7c478bd9Sstevel@tonic-gate 					(void) wrefresh(win);
134*7c478bd9Sstevel@tonic-gate 				}
135*7c478bd9Sstevel@tonic-gate 			} else
136*7c478bd9Sstevel@tonic-gate 				if (doecho)
137*7c478bd9Sstevel@tonic-gate 					(void) beep();
138*7c478bd9Sstevel@tonic-gate 		} else if ((KEY_MIN <= ch) && (ch <= KEY_MAX))
139*7c478bd9Sstevel@tonic-gate 				(void) beep();
140*7c478bd9Sstevel@tonic-gate 			else {
141*7c478bd9Sstevel@tonic-gate cont:
142*7c478bd9Sstevel@tonic-gate 				/* LINTED */
143*7c478bd9Sstevel@tonic-gate 				*cp++ = (char)ch;
144*7c478bd9Sstevel@tonic-gate 				if (docont) {
145*7c478bd9Sstevel@tonic-gate 					tbyte++;
146*7c478bd9Sstevel@tonic-gate 				} else if (ISMBIT(ch)) {
147*7c478bd9Sstevel@tonic-gate 					docont = 1;
148*7c478bd9Sstevel@tonic-gate 					tbyte = 1;
149*7c478bd9Sstevel@tonic-gate 					scrw = mbscrw(ch);
150*7c478bd9Sstevel@tonic-gate 					eucw = mbeucw(ch);
151*7c478bd9Sstevel@tonic-gate 				}
152*7c478bd9Sstevel@tonic-gate 
153*7c478bd9Sstevel@tonic-gate 				if (docont && (tbyte >= eucw)) {
154*7c478bd9Sstevel@tonic-gate 					docont = 0;
155*7c478bd9Sstevel@tonic-gate 					tbyte = 0;
156*7c478bd9Sstevel@tonic-gate 					if (doecho) {
157*7c478bd9Sstevel@tonic-gate 						byte[cpos] = eucw;
158*7c478bd9Sstevel@tonic-gate 						/* LINTED */
159*7c478bd9Sstevel@tonic-gate 						length[cpos] = (char)scrw;
160*7c478bd9Sstevel@tonic-gate 						(void) wechochar(win,
161*7c478bd9Sstevel@tonic-gate 						    (chtype) ch);
162*7c478bd9Sstevel@tonic-gate 					}
163*7c478bd9Sstevel@tonic-gate 				} else if (doecho) {
164*7c478bd9Sstevel@tonic-gate 					/* Add the length of the */
165*7c478bd9Sstevel@tonic-gate 					/* character to total. */
166*7c478bd9Sstevel@tonic-gate 					byte[cpos] = 1;
167*7c478bd9Sstevel@tonic-gate 					if (ch >= ' ')
168*7c478bd9Sstevel@tonic-gate 						length[cpos] = 1;
169*7c478bd9Sstevel@tonic-gate 					else
170*7c478bd9Sstevel@tonic-gate 						if (ch == '\t')
171*7c478bd9Sstevel@tonic-gate 							length[cpos] = TABSIZE-
172*7c478bd9Sstevel@tonic-gate 							    (colnum[cpos] %
173*7c478bd9Sstevel@tonic-gate 							    TABSIZE);
174*7c478bd9Sstevel@tonic-gate 						else
175*7c478bd9Sstevel@tonic-gate 							length[cpos] = 2;
176*7c478bd9Sstevel@tonic-gate 					total += length[cpos];
177*7c478bd9Sstevel@tonic-gate 					(void) wechochar(win, (chtype) ch);
178*7c478bd9Sstevel@tonic-gate 				}
179*7c478bd9Sstevel@tonic-gate 				if (!docont)
180*7c478bd9Sstevel@tonic-gate 					cpos++;
181*7c478bd9Sstevel@tonic-gate 				nbyte++;
182*7c478bd9Sstevel@tonic-gate 			}
183*7c478bd9Sstevel@tonic-gate 	}
184*7c478bd9Sstevel@tonic-gate 
185*7c478bd9Sstevel@tonic-gate 	*cp = '\0';
186*7c478bd9Sstevel@tonic-gate 
187*7c478bd9Sstevel@tonic-gate 	if (!savecb)
188*7c478bd9Sstevel@tonic-gate 		(void) nocbreak();
189*7c478bd9Sstevel@tonic-gate 	/*
190*7c478bd9Sstevel@tonic-gate 	 * The following code is equivalent to waddch(win, '\n')
191*7c478bd9Sstevel@tonic-gate 	 * except that it does not do a wclrtoeol.
192*7c478bd9Sstevel@tonic-gate 	 */
193*7c478bd9Sstevel@tonic-gate 	if (doecho) {
194*7c478bd9Sstevel@tonic-gate 		SP->fl_echoit = TRUE;
195*7c478bd9Sstevel@tonic-gate 		win->_curx = 0;
196*7c478bd9Sstevel@tonic-gate 		if (win->_cury + 1 > win->_bmarg)
197*7c478bd9Sstevel@tonic-gate 			(void) wscrl(win, 1);
198*7c478bd9Sstevel@tonic-gate 		else
199*7c478bd9Sstevel@tonic-gate 			win->_cury++;
200*7c478bd9Sstevel@tonic-gate 
201*7c478bd9Sstevel@tonic-gate 		win->_sync = savsync;
202*7c478bd9Sstevel@tonic-gate 		win->_immed = savimmed;
203*7c478bd9Sstevel@tonic-gate 		win->_leave = savleave;
204*7c478bd9Sstevel@tonic-gate 		(void) wrefresh(win);
205*7c478bd9Sstevel@tonic-gate 	}
206*7c478bd9Sstevel@tonic-gate 	return (ch);
207*7c478bd9Sstevel@tonic-gate }
208