Re: It this the disappearing cursor bug?
Hi, Looking less likely, failed eventually with the patch. Ah well... Colin Harrison -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/
Re: It this the disappearing cursor bug?
Hi, I built one server with and one without the patch:- --- ./programs/Xserver/hw/xwin/save_windialogs.c2005-11-14 12:20:44.0 + +++ ./programs/Xserver/hw/xwin/windialogs.c 2005-11-14 12:25:22.0 + @@ -400,8 +400,9 @@ { g_fCursor = TRUE; ShowCursor (TRUE); + return TRUE; } - return TRUE; + break; case WM_CLOSE: DestroyWindow (g_hDlgExit); @@ -650,8 +651,9 @@ { g_fCursor = TRUE; ShowCursor (TRUE); + return TRUE; } - return TRUE; + break; case WM_COMMAND: switch (LOWORD (wParam)) and so far I've had 0 cursor failures with and 1 failure without it. Both servers running multiwindows with the default hardware cursor. An empirical result, perhaps not yet significant, but ShowCursor(TRUE) vs ShowCursor(FALSE) must be getting out of step somewhere/somehow, and I couldnt see why removing all the software cursor code helped when I hacked it all out, some time ago, in desperation? (The ShowCursor entry in the task menu calls ShowCursor(TRUE) as a restore/remedy when it disappears) see http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/winui /windowsuserinterface/resources/cursors/cursorreference/cursorfunctions/show cursor.asp This bug is a slippery customer, only appears once a blue-moon, so I'll keep on trucking and get more stats. Colin Harrison -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/
<---->
If you don't ask, you don't get. HOLA! http://gypyziholeci.com/main/ Young Pale Gay Loves Doggystyle Banged -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/
Re: Auto hidden taskbar stays hidden
Hi, nobody there, who can help me with this? Regards, Thomas - Original Message - Date: Mon, 7 Nov 2005 22:32:56 +0100 From: Thomas Gilgin <[EMAIL PROTECTED]> To: cygwin-xfree@cygwin.com Subject: Re: Auto hidden taskbar stays hidden Igor Pechtchanski wrote: > I still can't reproduce this behavior on WinXP. I've tried the exact > steps (except that X was running on display :1) and my taskbar unhides > with no problems. If this is a bug in X, it's Win2k-specific. Yes, I just installed cygwin/X on an XP box at work: Everything OK on XP, in contrast to two Win2K machines. Find attached cygcheck output. Best regards, Thomas cygcheck.out Description: Binary data -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/
Re: xterm scrollbar
On Mon, 14 Nov 2005, Rácz Miklós wrote: hi I use XTerm*scrollBar: on in my .Xdefaults file. The scroll bar is on the left side. Does anyone know how to put it to the right side ? xterm -rightbar -- Thomas E. Dickey http://invisible-island.net ftp://invisible-island.net -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/
RE: xterm scrollbar
I think you want XTerm*rightScrollBar: True From: Rácz Miklós <[EMAIL PROTECTED]> Reply-To: cygwin-xfree@cygwin.com To: cygwin-xfree@cygwin.com Subject: xterm scrollbar Date: Mon, 14 Nov 2005 16:30:29 +0100 hi I use XTerm*scrollBar: on in my .Xdefaults file. The scroll bar is on the left side. Does anyone know how to put it to the right side ? thanks miklos -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/
How to turn off the GLX acceleration?
Dear Sir / Madam, I need to use GView (a software for molecules visualization constructed by Gaussian). An error occurs when I use the GView through cygwin/X. "This error is that the GView appears in my desktop. However, when I try to display a molecule, no molecule is observed in the window of GView." The Gaussian's reply is : {{{ I see the following line in the setup, > xorg-x11-xwin-gl (761 KiB; optional, the Cygwin/X X Server with > ***EXPERIMENTAL*** GLX acceleration) and the fact that GaussView starts but does not show molecules, which require GLX while the splash screen and the basic dialog windows to not, can be the problem. Can you turn off the experimental GLX acceleration? }}} How can I do it? Regards, Patrick Pang -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/
xterm scrollbar
hi I use XTerm*scrollBar: on in my .Xdefaults file. The scroll bar is on the left side. Does anyone know how to put it to the right side ? thanks miklos -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/
It this the disappearing cursor bug?
Hi, Is this the disappearing cursor bug? In two places in the windialogs.c message handlers: case WM_MOUSEMOVE: case WM_NCMOUSEMOVE: if (g_fSoftwareCursor && !g_fCursor) { g_fCursor = TRUE; ShowCursor (TRUE); } return TRUE; Shouldn't this be: case WM_MOUSEMOVE: case WM_NCMOUSEMOVE: if (g_fSoftwareCursor && !g_fCursor) { g_fCursor = TRUE; ShowCursor (TRUE); return TRUE; } break; so that the hardware cursor case falls through correctly? I'm currently testing Colin Harrison -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/
Is R(emote) eX(ecution) extension supported?
Hello dear mailing list partcipants, As I understand the concept it is about allowing X11 applications to run in browsers (something e.g. Tarantella does), so the question is: Is this extension supported with X11 server as developed by Cygwin? WIth Best Regards Ariel Burbaickij -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/
Re: port existing x windows application to win32
Corinna Vinschen wrote: On Nov 10 11:19, Thomas Dickey wrote: On Thu, 10 Nov 2005, Michel Bardiaux wrote: So, I was right (rather than 'disregardable'). And that's from the horse's mouth, so to speak. Which brings back my query: is there a free but not GPL version of the X client libraries for Win32? rofl I have a better suggestion: since you don't understand any of the issues involved, perhaps you have some fellow employee who can understand the difference between cygwin's dll and libraries that may be distributed with it. I'm really wondering what you're up to. Michel's choice of words might be a bit unlucky, but it's a fact that his application will become GPL (or another compatible OSS license of choice), if he links it to the Cygwin/X client libs. This is obviously not a result of the X libs being GPLed, but a result of the fact that the Cygwin/X libs in turn require to link against the cygwin1.dll, or in other words, linking against Cygwin/X client libs will make the application a Cygwin application. So the question is still valid and was from the beginning, minus choice of words. However, this question is obviously off-topic for this list since this is the Cygwin/X list, not a native Win32 X list. So please move your question to another, more appropriate forum, Michel. The thread has largely moved to the question of whether the cygwin port of X client libs is GPL-viral or not, which would be more on-topic if there was not a specific cygwin list for licensing issues. It has also become about whether I'm clueless, and I dont like to leave such a topic unattended but experience on the net has told me that a disdainful silence is often best :-). So, I'll follow your advice and move on! Maybe you could start here: http://freedesktop.org/wiki/Xming Thanks for the tip. However, reviewing the thread it seems to me that since I specified "free beer not mandatory", the RH buyout license might be a solution. So I will contact a local RH reseller. Corinna -- Michel Bardiaux R&D Director T +32 [0] 2 790 29 41 F +32 [0] 2 790 29 02 E mailto:[EMAIL PROTECTED] Mediaxim NV/SA Vorstlaan 191 Boulevard du Souverain Brussel 1160 Bruxelles http://www.mediaxim.com/ -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/