Linux获得关于焦点gui窗口更改的通知

时间:2013-11-07 15:53:33

标签: c++ linux user-interface x11

在linux中,当目前专注的GUI应用程序发生变化时,是否可以收到通知?我正在编写一个应用程序来跟踪用户在每个GUI应用程序上停留的时间(每个进程,而不是在一个进程内),并且需要某种方式来访问此信息。我是用c ++做的。

<小时/> 这是我到目前为止所发现的:

xprop -id $(xprop -root | awk '/_NET_ACTIVE_WINDOW\(WINDOW\)/{print $NF}') | awk '/_NET_WM_PID\(CARDINAL\)/{print $NF}'

这打印出当前关注的应用程序的pid,但需要我经常拉动。我宁愿不拉,但如果必须,我会。它还假设所有GUI都经过x11,这可能不是一个不合理的假设,但不是完全可移植的。

另一种方法是编写一个挂钩到各种gui函数的共享对象,然后修改主机系统的ld.so.preload文件,以便为每个进程加载此共享对象。这假设所有gui应用程序都使用动态链接的图形库。我还必须为每个图形库编写钩子以确保完全覆盖。在研究GTK(我在运行Gnome的系统上进行测试)时,我还没有找到任何在窗口开关上调用的函数。虽然我看起来并不是很努力。

<小时/> 有没有办法通过x11获取此类事件的通知?或其他图形库?

编辑:

好的,这是我到目前为止,基于@Andrey的代码:

#include <X11/Xlib.h>
#include <cstring>
#include <iostream>
using namespace std;

pid_t get_window_pid( Display * d, Window& w );

int main()
{
    Display * d;
    Window w;
    XEvent e;

    d = XOpenDisplay( 0 );
    if ( !d ) {
        cerr << "Could not open display" << endl;
        return 1;
    }

    w = DefaultRootWindow( d );
    XSelectInput( d, w, PropertyChangeMask );

    pid_t window_pid;

    for ( ;; ) {
        XNextEvent( d, &e );
        if ( e.type == PropertyNotify ) {
            if ( !strcmp( XGetAtomName( d, e.xproperty.atom ), "_NET_ACTIVE_WINDOW" ) ) {
                window_pid = get_window_pid( d, w );
                cout << window_pid << endl;
            }
        }
    }

    return 0;
}

pid_t get_window_pid( Display * d, Window& w )
{
    Atom atom = XInternAtom( d, "_NET_WM_PID", true );

    Atom actual_type;
    int actual_format;
    unsigned long nitems;
    unsigned long bytes_after;
    unsigned char *prop;

    int status;
    status = XGetWindowProperty(
        d, w, atom, 0, 1024,
        false, AnyPropertyType,
        &actual_type,
        &actual_format, &nitems,
        &bytes_after,
        &prop
    );

    if ( status || !prop )
        return -1;

    return prop[1] * 256 + prop[0];
}

get_window_pid总是返回-1,即使使用xprop -id $(xprop -root | awk '/_NET_ACTIVE_WINDOW\(WINDOW\)/{print $NF}') | awk '/_NET_WM_PID\(CARDINAL\)/{print $NF}'正确返回活动窗口的pid也是如此。我做错了什么?

2 个答案:

答案 0 :(得分:4)

使用node-x11的JavaScript示例:

var x11 = require('x11');
x11.createClient(function(err, display) {
  var X = display.client;
  X.ChangeWindowAttributes(display.screen[0].root, { eventMask: x11.eventMask.PropertyChange });
  X.on('event', function(ev) {
    if(ev.name == 'PropertyNotify') {
      X.GetAtomName(ev.atom, function(err, name) {
        if (name == '_NET_ACTIVE_WINDOW') {
          X.GetProperty(0, ev.window, ev.atom, X.atoms.WINDOW, 0, 4, function(err, prop) {
            console.log('New active window:' + prop.data.readUInt32LE(0));
          });
        }
      });
    }
  });
});

答案 1 :(得分:1)

最后我明白了。
编译:g ++ ./a.cpp -lX11

  navigation.navigate('Tabs', {screen: "Profile"})