10e3d5408SPeter Wemm /****************************************************************************
2*e1865124SBaptiste Daroussin * Copyright 2020 Thomas E. Dickey *
3*e1865124SBaptiste Daroussin * Copyright 1998-2016,2017 Free Software Foundation, Inc. *
40e3d5408SPeter Wemm * *
50e3d5408SPeter Wemm * Permission is hereby granted, free of charge, to any person obtaining a *
60e3d5408SPeter Wemm * copy of this software and associated documentation files (the *
70e3d5408SPeter Wemm * "Software"), to deal in the Software without restriction, including *
80e3d5408SPeter Wemm * without limitation the rights to use, copy, modify, merge, publish, *
90e3d5408SPeter Wemm * distribute, distribute with modifications, sublicense, and/or sell *
100e3d5408SPeter Wemm * copies of the Software, and to permit persons to whom the Software is *
110e3d5408SPeter Wemm * furnished to do so, subject to the following conditions: *
120e3d5408SPeter Wemm * *
130e3d5408SPeter Wemm * The above copyright notice and this permission notice shall be included *
140e3d5408SPeter Wemm * in all copies or substantial portions of the Software. *
150e3d5408SPeter Wemm * *
160e3d5408SPeter Wemm * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
170e3d5408SPeter Wemm * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
180e3d5408SPeter Wemm * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
190e3d5408SPeter Wemm * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
200e3d5408SPeter Wemm * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
210e3d5408SPeter Wemm * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
220e3d5408SPeter Wemm * THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
230e3d5408SPeter Wemm * *
240e3d5408SPeter Wemm * Except as contained in this notice, the name(s) of the above copyright *
250e3d5408SPeter Wemm * holders shall not be used in advertising or otherwise to promote the *
260e3d5408SPeter Wemm * sale, use or other dealings in this Software without prior written *
270e3d5408SPeter Wemm * authorization. *
280e3d5408SPeter Wemm ****************************************************************************/
290e3d5408SPeter Wemm
300e3d5408SPeter Wemm /****************************************************************************
310e3d5408SPeter Wemm * Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995 *
320e3d5408SPeter Wemm * and: Eric S. Raymond <esr@snark.thyrsus.com> *
33aae38d10SBaptiste Daroussin * and: Thomas E. Dickey 1996-on *
34aae38d10SBaptiste Daroussin * and: Sven Verdoolaege 2001 *
350e3d5408SPeter Wemm ****************************************************************************/
360e3d5408SPeter Wemm
370e3d5408SPeter Wemm /*
380e3d5408SPeter Wemm ** lib_hline.c
390e3d5408SPeter Wemm **
400e3d5408SPeter Wemm ** The routine whline().
410e3d5408SPeter Wemm **
420e3d5408SPeter Wemm */
430e3d5408SPeter Wemm
440e3d5408SPeter Wemm #include <curses.priv.h>
450e3d5408SPeter Wemm
46*e1865124SBaptiste Daroussin MODULE_ID("$Id: lib_hline.c,v 1.16 2020/02/02 23:34:34 tom Exp $")
470e3d5408SPeter Wemm
NCURSES_EXPORT(int)487a69bbfbSPeter Wemm NCURSES_EXPORT(int)
4915589c42SPeter Wemm whline(WINDOW *win, chtype ch, int n)
500e3d5408SPeter Wemm {
510e3d5408SPeter Wemm int code = ERR;
520e3d5408SPeter Wemm
5306bfebdeSXin LI T((T_CALLED("whline(%p,%s,%d)"), (void *) win, _tracechtype(ch), n));
540e3d5408SPeter Wemm
550e3d5408SPeter Wemm if (win) {
560e3d5408SPeter Wemm struct ldat *line = &(win->_line[win->_cury]);
5739f2269fSPeter Wemm NCURSES_CH_T wch;
58aae38d10SBaptiste Daroussin int start = win->_curx;
59aae38d10SBaptiste Daroussin int end = start + n - 1;
600e3d5408SPeter Wemm
610e3d5408SPeter Wemm if (end > win->_maxx)
620e3d5408SPeter Wemm end = win->_maxx;
630e3d5408SPeter Wemm
640e3d5408SPeter Wemm CHANGED_RANGE(line, start, end);
650e3d5408SPeter Wemm
660e3d5408SPeter Wemm if (ch == 0)
674a1a9510SRong-En Fan SetChar2(wch, ACS_HLINE);
6839f2269fSPeter Wemm else
694a1a9510SRong-En Fan SetChar2(wch, ch);
7039f2269fSPeter Wemm wch = _nc_render(win, wch);
710e3d5408SPeter Wemm
72aae38d10SBaptiste Daroussin #if USE_WIDEC_SUPPORT
73aae38d10SBaptiste Daroussin if (start > 0 && isWidecExt(line->text[start])) {
74aae38d10SBaptiste Daroussin SetChar2(line->text[start - 1], ' ');
75aae38d10SBaptiste Daroussin }
76aae38d10SBaptiste Daroussin if (end < win->_maxx && isWidecExt(line->text[end + 1])) {
77aae38d10SBaptiste Daroussin SetChar2(line->text[end + 1], ' ');
78aae38d10SBaptiste Daroussin }
79aae38d10SBaptiste Daroussin #endif
800e3d5408SPeter Wemm while (end >= start) {
8139f2269fSPeter Wemm line->text[end] = wch;
820e3d5408SPeter Wemm end--;
830e3d5408SPeter Wemm }
8418259542SPeter Wemm
8518259542SPeter Wemm _nc_synchook(win);
860e3d5408SPeter Wemm code = OK;
870e3d5408SPeter Wemm }
880e3d5408SPeter Wemm returnCode(code);
890e3d5408SPeter Wemm }
90