Re: TCP/IP interface code in XFree86

2005-10-24 Thread George Liu
Not sure what your disclaimer to me. DISCLAIMER Kaliraj Kalaichelvan - CTD, Chennai wrote: Hello all, I have downloaded the XFree86 Version 4.3.0 . I would like to know which part of the XFree86 implementation (code) deals with the TCP/IP connections i..e how the x protocol are sent via the

Query mouse events from other Windows/Screens

2005-08-04 Thread George Liu
I would like to write an application that would collect mouse events (Button Press/Release) among all windows/screens in the same desktop, and display the event info on a dedicated window. I used the following two methods but none worked. Your help is appreciated. Method 1: d =

Re: Query mouse events from other Windows/Screens

2005-08-04 Thread George Liu
Hi Andrew, Thanks for your reponse. This was exactly my thought in method 1. I assume window root root = RootWindow(d,s); is the invisble window covering the whole screen. Is that right? Thanks. --George Andrew C Aitchison wrote: On Thu, 4 Aug 2005, George Liu wrote: I would like

Re: Query mouse events from other Windows/Screens

2005-08-04 Thread George Liu
OK. Now created a new window w by something like, w = XCreateWindow(d, root, 0,0, 1024, 500,0,0,InputOnly, (Visual *) CopyFromParent, valuemask, attributes ); XMapWindow(d, iw); Then it obscures the other windows. Thanks for your reponse. This was exactly my thought in method 1. I assume