Bill Gray

Results 189 comments of Bill Gray

If submitted, I'd pull this into PDCursesMod. Looking at [the `ncurses` opaque window functions](https://invisible-island.net/ncurses/man/curs_opaque.3x.html), I see we'd be missing `is_notimeout()`, `is_subwin()`, `wgetdelay()`, `wgetscrreg()`, and `wgetparent()`. I'd see nothing wrong with...

@GitMensch - can't say I wound up doing much for this (it didn't take many changes). Commit Bill-Gray/PDCursesMod@18ff2cb00c040a3 added a bit of logic to say that if we're in `endwin()`,...

(Pause to investigate and scratch head) Yes, this is done and can/should be closed.

Added these functions, with minor changes for the slightly different styles between PDCurses and PDCursesMod. Thank you!

Looks good to me. I can't really test it; once you and Mark give it the thumbs-up, I'll pull it. I think the most I can do is to cross-compile...

@GitMensch - nevermind, I see now; the Makefiles for OS/2, and therefore those for this port, haven't had the list of demos updated for a while. None of the demos...

@chasonr - speaking from a basis of ignorance here, but... re "I have to render one character at a time or strange things happen" : I wonder if some splitting...

The framebuffer/DRM port (basically the same port, except with different libraries used to push pixels to the screen) lets you specify a PSF or PSF2 or "plain" VGA font with...

Replicated using the test code below. It happens on PDCurses, PDCursesMod, and on ncurses. I think this translation is the expected behavior for Curses (I've never seen it work any...

Not sure what you mean here? Translation is done, by default, for characters 0-31 and for 0x7f : https://github.com/Bill-Gray/PDCursesMod/blob/45949000c3ac1375f5f821d72f46e4726a3a6a2f/pdcurses/addch.c#L556 "Normally" (i.e., unless you call `raw_output( TRUE);`), `addch()` will backspace when...