PDCurses
PDCurses copied to clipboard
A curses library for environments that don't fit the termcap/terminfo model.
This port compiles on MS-DOS, using the DJGPP, Watcom (16 or 32 bit) or Borland (16 bit only) compilers. It expects to find a VGA, and switches it to graphical...
For the WINCON port, when we use get a KEY_MOUSE event and use request_mouse_pos to get the event data, if it is a scroll event the x,y coordinates are both...
PDCurses is sending (X,Y) coordinates (-1,-1) when processing a scroll event. NCurses treats the scroll events as regular mouse button presses and sends the real (X,Y) coordinates with those events....
There appears to be a timing issue when keypad(stdscr,TRUE); is used. Without keypad(), the following code works just fine: ``` #define XCURSES #include int main(int argc, char **argv) { Xinitscr(argc,argv);...
This came up in #57 first, as it is a completely different issue with some effort to put in it is tracked here. Initial finding of @tysenmoore-xse, [documented in his...
Hi, this patch should be applied ! [pdcscrn.log](https://github.com/wmcbrine/PDCurses/files/4042550/pdcscrn.log)
The x11 and sdl2 ports of PDCurses will only write the contents of curses windows to the screen when a key is being read; not at the time doupdate() is...
Only happens with sdl2 port; sdl1 and x11 behave properly. Also only tested on Linux. Problem is if you have a sdl2 PDCurses program running, waiting for keystrokes, and you...
Fix full width unicode characters position problem will fix issue #87 #92
Working on Windows XP, and using the Visula Studio 10 command line tools set. Compiling the library for Windows console using nmake: nmake -f makefile.vc dll=y. The build fails because...