Does anyone know how to get the PID of the top active window and then how to get the properties of the window using the PID? I mean properties like process name, program name, etc.
I'm using Qt under Linux (Ubuntu 9.10).
|
|
One of things about X is that it's network transparent. It's quite possible that the actual window being displayed at the top (which has focus) is running on a machine other than your own in which case, the process id of the process running inside the window will make no sense on your machine. Can you elaborate a little on what you want to do? I think there are some missing details here. Ideally, you should work at the X level rather than at the machine specific one. |
|||||||||||||
|
|
there is a command in linux call xprop which is a utility for displaying window properties in an X server. In linux
to get just the active window ID ( without "_NET_ACTIVE_WINDOW(WINDOW): window id # " in the beginning of the line ) use this command:
now you can save this command output in a user defined variable:
xprop have an attribute call -id. This argument allows the user to select window id on the command line. We should look for _NET_WM_PID(CARDINAL) in output ... so we use this command:
this gives you the topmost active window process ID. to be more trickey and do all things in just 1 command ... :
Now I can run these commands via my C++ program ( in linux ) using popen function, grab stdout and print or save it. popen creates a pipe so we can read the output of the program we are invoking. ( you can also use '/proc' file system and get more detail of a PID ('/proc/*YOUR_PID*/status') )
|
|||||||||
|
|
The PID of a window owner is stored in the X property _NET_WM_PID. Note that this is only a de-facto standard. You have to find the id of the window first, then you can query for the property. I don't know of any abstraction QT provides for this, so you will probably have to use xlib or xcb. Play with the tool |
|||
|
|
|
xlib's If it's really the topmost window, and not the window-with-focus you're after, well, I don't think there is a simple call to do that, because xlib doesn't seem to offer any way of querying the global stacking order, which is the data structure that tells you which windows are in front of which others. Once you have the right window id, Postscript More thoughts; long time since I've thought about To summarise:
So, sorry, it looks like it can't be done. |
||||
|
|
|
I am voting up Michel Kogan’s answer, and adding this concise summary of it:
The above will show the following for the currently active window: PID, command name (only the executable name), command with all its arguments. |
|||
|
|
|
Am very very late to the party, but I had a similar problem, and I think this can help someone else who has the same problem. There is a command line trick to do this, you can try execvp'ing it, or executing it redirecting the output to your code
gives the window name, as well as the program name. Eg, for this tab, it gives me
|
|||
|
|
|
Install wmctrl (from the repositories). |
|||
|