[PDCurses] cursor on white background is invisible (xcurses)

2010-12-06 Thread John P. Hartmann
Hello, Forgive my ignorance. How do I make the cursor reverse video? I wish to ensure that it is always identifiable. How do I select a different style? Thanks, j.

Re: [PDCurses] cursor on white background is invisible (xcurses)

2010-12-06 Thread John P. Hartmann
If I understand you correctly, curs_set() alters the bitmap used for the cursor, but not its colour. So whether it is 1 or 2, it will still be invisible when put on a blank painted on a white background. Is that correct? j. On 6 December 2010 16:04, Bill J Gray wrote: > Hi Warren,  John, > >

[PDCurses] cursor on white background is invisible (xcurses)

2010-12-07 Thread John P. Hartmann
d message -- From: John P. Hartmann Date: 7 December 2010 08:17 Subject: Re: [PDCurses] cursor on white background is invisible (xcurses) To: Bill J Gray Cc: pdcurses-l@lightlink.com If I understand you correctly, curs_set() alters the bitmap used for the cursor, but not its colour.  So

[PDCurses] backtab is lost with XCurses

2010-12-09 Thread John P. Hartmann
Shift TAB does not generate any input event in the X11 variant of PDCurses. Neither testcurs nor a program see them. xterm and ncurses has no such problem. Does anyone know why? Thanks, j.

[PDCurses] Re: backtab is lost with XCurses

2010-12-09 Thread John P. Hartmann
I guess I can answer my question. xev shows that this particular X11 returns XK_ISO_Left_Tab rather than what x11.c expects. Patch attached. Let me know where to put it if this is not the place. Thanks, j. On 9 December 2010 10:50, John P. Hartmann wrote: > Shift TAB does not gener

[PDCurses] A_ALTCHARSET

2010-12-11 Thread John P. Hartmann
I've rebuilt the library with ./configure --enable-widec --enable-xim and testcurs now shows alternate characters correctly. I've also rebuilt my application with #define XCURSES #define PDC_WIDE #define PDC_XIM #include but to no avail. I still get the ascii fallback characters.

[PDCurses] A_ALTCHARSET

2010-12-11 Thread John P. Hartmann
My bad. Sorry about the noise. There is one problem, however. When the cursor is on a character from the alternate set, the character displayed is the one from the base character set. For example, if I put the cursor on a vertical bar, I see x instead. When I move the cursor, the correct chara

[PDCurses] XCurses line lock

2010-12-13 Thread John P. Hartmann
What is the purpose of XC_get_line_lock? That is, in which situation will it protect against anything other than bugs in x11.c? It is implemented as an unreliable spin lock. Thanks, j.

[PDCurses] automake test for libraries

2015-06-19 Thread John P. Hartmann
Many modern Linux distributions maintain the 64 bit libraries in /usr/lib64 to be able to coreside with 32 bit libraries in /usr/lib. Has this been fixed so that I don't need to create symbolic links to get around the configuration checks for athena and its prerequisites?

Re: [PDCurses] automake test for libraries

2015-06-20 Thread John P. Hartmann
sr/lib64. Note that testing blindly for this library in addition to /usr/lib does not expose systems that mix 32 bit and 64 bit libraries. On 06/20/2015 10:34 AM, anatoly techtonik wrote: On Fri, Jun 19, 2015 at 6:35 PM, John P. Hartmann wrote: Many modern Linux distributions maintain the

[PDCurses] X11 libraries

2016-12-22 Thread John P. Hartmann
This Ubuntu 16.4 seems to have done away with the traditional /lib structure. I got stuck with libXaw and hacked for ac_dir in $mh_lib_dirs /usr/lib/x86_64-linux-gnu ; do Question is whether you need to check for the library when the .h file is there. In the world of packages, one usually