使用XCB获取活动窗口(具有输入焦点的窗口)的正确方法是什么?
reply = xcb_get_input_focus_reply(connection, xcb_get_input_focus(connection), nullptr);
std::cout << "WId: " << reply->focus;
这似乎有时是工作,有时候不是。
我也看到有人提到查询_NET_ACTIVE_WINDOW根窗口属性但是我无法弄清楚它是如何完成的并且XCB是否始终支持它?
编辑: 上面使用xcb_get_input_focus的方法只是一个部分,在获得reply-&gt;焦点后,您需要通过xcb_query_tree跟进父窗口。 < / p>
答案 0 :(得分:3)
据我所知,符合EWMH的窗口管理器应将根窗口的_NET_ACTIVE_WINDOW
属性设置为当前活动窗口的窗口ID。
为了得到它,
xcb_intern_atom
获取_NET_ACTIVE_WINDOW
xcb_setup_roots_iterator(xcb_get_setup(connection)).data->root
xcb_get_property
,xcb_get_property_reply
和xcb_get_property_value
获取根窗口属性的值。 _NET_ACTIVE_WINDOW
的类型为CARDINAL
,出于XCB目的,其大小为32位。
或者您可以使用libxcb-ewmh将此任务包装到xcb_ewmh_get_active_window
函数中。
答案 1 :(得分:2)
此解决方案适用于我,它或多或少地从某些X11代码迁移到XCB。基本上获取焦点窗口并跟进父窗口的路径,直到窗口id等于父或根id,这就是顶级窗口。
WId ImageGrabber::getActiveWindow()
{
xcb_connection_t* connection = QX11Info::connection();
xcb_get_input_focus_reply_t* focusReply;
xcb_query_tree_cookie_t treeCookie;
xcb_query_tree_reply_t* treeReply;
focusReply = xcb_get_input_focus_reply(connection, xcb_get_input_focus(connection), nullptr);
xcb_window_t window = focusReply->focus;
while (1) {
treeCookie = xcb_query_tree(connection, window);
treeReply = xcb_query_tree_reply(connection, treeCookie, nullptr);
if (!treeReply) {
window = 0;
break;
}
if (window == treeReply->root || treeReply->parent == treeReply->root) {
break;
} else {
window = treeReply->parent;
}
free(treeReply);
}
free(treeReply);
return window;
}