我目前正在尝试使用 xdotool 将 key 发送到进程(我知道它可能不适用于所有未设置 _NET_WM_PID 的进程)。我无法将按键发送到焦点以外的窗口。如果您将击键发送到 CURRENTWINDOW ,它确实有效。下面是我用来测试 xdotool 功能的片段。

extern "C"{
  #include <xdo.h>
}
//extern "C" xdo_window_search
#include <iostream>
#include <string.h>

using namespace std;

int main(){
    xdo_t* p_xdo = xdo_new(NULL);

    // Allocate memory for search query.
    xdo_search_t s;
    // Clear the allocated memory.
    memset(&s, 0, sizeof(xdo_search_t));
    // Set the search query.
    s.pid = 1916;
    s.max_depth = -1;
    s.searchmask = SEARCH_PID;
    s.require = xdo_search::SEARCH_ANY;
    // Allocate memory for output
    Window* windows;
    int no_windows;
    xdo_window_search(p_xdo,&s,&windows,&no_windows);
    cout << no_windows << endl;
    // Prints all windows' names with matching criteria
    for( int i=0;i<no_windows;i++ ){
        unsigned char * name;
        int size;
        int type;
        xdo_get_window_name(p_xdo,windows[i],&name,&size,&type);
        cout << i << ":" << name << endl;
    }
    for( int i=0;i<no_windows;i++ ){
        xdo_type(p_xdo,windows[i],"Hello World",0);
    }
    //xdo_type(p_xdo,CURRENTWINDOW,"Hello World",0); // This does work.
    return 0;
}

除了测试 xdotool 的功能外,我还查看了 xdotool 的源代码。有趣的是,我发现他们使用 Xtest 将击键发送到聚焦窗口 ( CURRENTWINDOW ) 和 X11 的 XSendEvent 用于其他窗口。我转向 xdotool,因为我无法让 XSendEvent 工作,而且 Xtest 无法将键发送到焦点窗口以外的任何其他窗口。

我没有正确使用 xdotool 吗? xdotool 是否不适用于所有带有 X11 的 *nix 操作系统?

[我在 Ubuntu 13.04 上运行它。]

编辑

因此,它看起来确实有效,但不适用于它找到的所有窗口。例如,它适用于 firefox 但不适用于 gedit 和 gnome-terminal,尽管它通过其 pid 找到了 gedit 和 gnome-terminal。如果我使用 CURRENTWINDOW ,它的行为会有所不同。

所以,如果有人能解释为什么会这样,那就太好了。比如,它是否与 XEvent 中的强制发送标志有关?

最佳答案

直接来自 xdotool 手册:

关于c++ - 将击键发送到 X 窗口,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16714928/

10-11 07:12