summaryrefslogtreecommitdiff
path: root/Src/Modules/curses.c
AgeCommit message (Collapse)AuthorFilesLines
2017-03-0540726: add "zcurses resize" for sane terminal size changeSebastian Gniazdowski1-0/+69
2017-03-0340170: Fix up error resetting in curses module.Sebastian Gniazdowski1-23/+12
Update comment to remove confusion. The comment was based on incorrecto expectations, and the problems referred to seem to be fixed.
2016-04-2938356: allow integers as curses coloursSebastian Gniazdowski1-2/+14
2016-04-2939354: zcurses fix for colour managementSebastian Gniazdowski1-4/+4
Alter internal return code so as not to mask curses error code.
2016-02-0337868: add 'static' to file local variablesJun-ichi Takimoto1-1/+1
2016-01-3037838: use UNUSED() consistentlyJun-ichi Takimoto1-5/+5
2015-09-1236509: allocate hash table nodes with zshcalloc() to avoid garbage flag valuesBarton E. Schaefer1-2/+2
2015-09-1136489: fix curses bug with hash table for coloursSebastian Gniazdowski1-1/+1
2015-06-12Add non-metafied character length handling.Peter Stephenson1-1/+1
Use this in regex module and add test using $'\ua0'. Rename mb_metacharinit() to mb_charinit() as it does not involve metafied characters.
2011-05-2729382: apply 29374 to zccmd_input too.Bart Schaefer1-2/+2
2011-05-08users/15986: handle EINTR in zccmd_inputBart Schaefer1-4/+44
2008-10-11Fixed a signed/unsigned compiler warning.Wayne Davison1-1/+1
2008-09-0525611, 25613: protect against two possible NULL dereferences.Clint Adams1-18/+22
2008-03-1324705: rationalise curses and term headers even morePeter Stephenson1-20/+2
2007-12-17Wayne: 24273: curses macros dont return a valuePeter Stephenson1-3/+8
2007-12-1424252: dont define _XOPEN_SOURCE_EXTENDED for curses on OpenBSDPeter Stephenson1-1/+1
2007-11-2124110: change ncurses includes againPeter Stephenson1-4/+4
2007-11-2024107: extra search for ncurses headers but dont use if library isnt ncursesPeter Stephenson1-8/+23
2007-11-1224089 plus tweak: fix curses on older systemsPeter Stephenson1-7/+12
2007-11-12Vin Shelton: 24088: error with no multibytePeter Stephenson1-1/+1
2007-11-1024083: add zcurses querycharPeter Stephenson1-0/+116
2007-11-08typo in mouse args in 24073Peter Stephenson1-1/+1
2007-11-08typo in parameter setting 24073Peter Stephenson1-1/+1
2007-11-08typo in parameter setting 24073Peter Stephenson1-4/+4
2007-11-0724073 (plus tweak): zcurses mouse handlingPeter Stephenson1-19/+230
2007-11-0624069: add zcurses_keycodesPeter Stephenson1-0/+12
2007-10-3024038: add "zcurses bg"Peter Stephenson1-24/+104
2007-10-30adapted 24030: work around Solaris cancelling curses key timeoutPeter Stephenson1-0/+12
2007-10-29fix crash when colo[u]r is not available in cursesPeter Stephenson1-0/+4
2007-10-28add zcurses timeoutPeter Stephenson1-1/+29
2007-10-2824027: subwindows, "touch", optimized refreshPeter Stephenson1-21/+124
2007-10-2824026: default colors in zcursesPeter Stephenson1-0/+15
2007-10-2724025: new zcurses "clear" and "location" subcommandsPeter Stephenson1-1/+1
zcurses window "stdscr" various minor zcurses tweaks
2007-10-2724025: new zcurses "clear" and "location" subcommandsPeter Stephenson1-16/+118
zcurses window "stdscr" various minor zcurses tweaks
2007-10-26zcurses input: oopsPeter Stephenson1-1/+1
2007-10-2624024: add zcurses input with keypad handlingPeter Stephenson1-0/+114
2007-10-2424018: add zcurses scrollPeter Stephenson1-0/+50
2007-10-2424017: fold zcurses color into attrPeter Stephenson1-80/+182
add some zcurses parameters a bit of tidying
2007-10-2424016: compilation with curses and not ncursesPeter Stephenson1-4/+11
2007-10-2324012: rename "endwin", "c", and "s" to "endwin", "char", and "string" ↵Clint Adams1-3/+3
respectively.
2007-10-2324011: various tweaks to zcurses commands including rearrangement to dispatchingPeter Stephenson1-268/+311
2007-10-2324010: fix max arguments for 'zcurses border' to 1.Clint Adams1-1/+1
2007-10-2124005: enforce min/max arguments on zcurses commands.Clint Adams1-2/+8
2007-10-2024002: change all the subcommands from option letters to words.Clint Adams1-66/+110
2007-10-2024001: fix up zcurses -CPeter Stephenson1-19/+25
2007-10-1923997: don't delete color pair hash on module unload unless it's been ↵Clint Adams1-2/+3
previously initialized.
2007-10-1823989: add broken zcurses -C to set window colors.Clint Adams1-6/+123
2007-10-1823978: zcurses -s with wide characters: use waddwstr()Peter Stephenson1-28/+20
2007-10-1723981: add zcurses -A to set window attributes.Clint Adams1-8/+82
2007-10-1723970: zcurses -i/-e, fix leak, add zcurses -r with no argumentPeter Stephenson1-15/+50
23968 (Vin Shelton): yodl fix