/* $NetBSD: pmc.h,v 1.1 2002/08/07 05:15:57 briggs Exp $ */ #include rnate' title='Atom feed' href='http://git.infra.scholz.ruhr/netbsd/atom/lib/libcurses/curses.c?h=trunk' type='application/atom+xml'/>
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-10-19Fixes for lib/56926 amongst other things:blymn
- plod now correctly accounts for wide characters when plodding - use erase line when in color mode if the terminal has the capability - ensure that the CA_CONTINUATION flag is applied consistently to the subsequent characters in a wide character. - fix a bunch of refresh bugs that caused inconsistent placement of wide characters.
2022-05-03 * Don't redraw the background if the new background character is theblymn
same as the old one. This prevents excessive redraws in some applications. * Fix bug introduced when wbkgrndset was fixed, we cannot blindly replace any instance of the old background character with the new one because some of those characters were put there by the application leading to display corruption. So flag characters as background when they are erased and only update the flagged characters when setting the background.
2022-04-19fix for PR 55496blymn
* Fix bkgrndset so that it actually sets the background character in in line with the SUSv2 specification. * Add an internal function to copy a complex character * Make the previously static celleq function into a libcurses private function so that it can be called in other files.
2017-01-31Move ESCDELAY to curses.c so all globals are close to each other.roy
Remove _reentrant and use ESCDELAY and TABSIZE as we're not really reentrant.
2017-01-30If either set_escdelay(3) or set_tabsize(3) are called, set _reentrantroy
to ensure we use the saved value for the sceen. This effectively makes ESCDELAY and TABSIZE read-only when either of these functions are called.
2016-10-22remove bogus malloc castschristos
2013-10-16Add TABSIZE, which is derived from terminfo init_tabs.roy
Use this when processing \t. If TABSIZE is set in the environment, this takes precedence.
2010-02-03Userland now builds and uses terminfo instead of termcap.roy
OK: core@, jdc@
2009-07-22Prepare curses for the possibility of changing from termcap to terminfo.roy
term.h #defines lines, pad_char and no_color_video macros which conflict with existing curses code. We change lines to alines and nlines depending on use, pad_char to padchar and no_color_video becomes no_color_attributes but with a strong alias from no_color_video.
2007-05-28Merge in wide curses code done as a Summer of Code project byblymn
Ruibiao Qiu.
2003-08-07Move UCB-licensed code from 4-clause to 3-clause licence.agc
Patches provided by Joel Baker in PR 22280, verified by myself.
2002-08-04Set the curses default colours to white on black when using colour.jdc
See the Single UNIX Specification, Version 2 : http://www.opengroup.org/onlinepubs/007908799/xcurses/can_change_color.html Also, add the functions : use_default_colors(); assume_default_colors(fore, back); (from ncurses) that allow the terminal default colours or user-specified default colours to be used.