Bill Gray
Bill Gray
On the color change front... when you re-loaded the window, had you set color pairs in the same manner? (`putwin()` will store the fact that a given character has color...
"Soon" turned out to be "now". It's slightly uglier than I'd like, but not actually all _that_ bad. Commit 6824e49bab5d849c revises the on-disk format to store the `WINDOW` structure (and...
Hi Chuck, No worries... actually, I had "day job" issues crop up which kept me from looking further at this anyway (and probably will keep me from it for a...
Yup, you should use `raw()` for this. From `MANUAL.md` : ``` raw() and noraw() toggle raw mode. Raw mode is similar to cbreak mode, in that characters typed are immediately...
I may try for a separate converter routine. The problem (at present) is that implementing `getwin()`, in either its old or new forms, requires access to library internals. So the...
Hi Chuck - Well, yes and no. At some point, you may want to use the latest code, with ASCII screen files. For that, you'll need to be able to...
Hmmm... looking through this, it really became three issues : - Storing/restoring windows, with a breaking binary change. I think we call that 'fixed'. - Capturing 'special' keys. This works...
Seems to me the best bet here would be to allow `LIBNAME=myrandomname` to result in building `myrandomname.a` and `myrandomname.dll`. `LIBNAME` would default to being the current `pdcurses` or `libpdcurses` (seems...
Hmm... so we'd actually want the ability to set `LIBNAME=myrandomname.dll.a DLLNAME=myrandomname.dll` when building the shared-library version, and then set `LIBNAME=myrandomname.a` for the static one? I.e., use separate variables so that...
Added a usage statement and made similar `LIBNAME`/`DLLNAME` changes for WinCon, WinGUI, VT, SDLn, and framebuffer. X11 will, I think, be trickier. Haven't got round yet to DOS, DOSVGA, or...