当我的应用程序窗口根据目标监视器的底层 dpi 从一个监视器移动到另一个监视器时,我想更改字体大小。
我玩过 xrandr、xdpyinfo 和 xlib。我查看了源代码,但找不到关联放置窗口(窗口 ID)的监视器的方法。
Qt 有 QDesktopWidget,它提供物理 DpiX/Y,但仅(看起来)用于主监视器。
xrandr.h 包含提供 mm_width 和 mm_height 的 XRROutputInfo,但我如何才能连接到窗口 ID?
由于这个问题得到了一些关注,我想分享我的研究。我还没有找到完美的解决方案。看起来这是不可能的。
但是使用以下代码片段可能会对您有所帮助。这个想法是通过比较窗口位置来计算底层显示。如果位置大于第一个屏幕的分辨率,则必须是第二个显示器。很直接。
#include <X11/Xlib.h>
#include <X11/extensions/Xrandr.h>
#include <stdio.h>
#include <stdlib.h>
// compile: g++ screen_dimension.cpp -lX11 -lXrandr
int main()
{
int wid = atoi( getenv( "WINDOWID" ) );
printf("window id: %i\n", wid);
Display * dpy = XOpenDisplay(NULL);
int screen = DefaultScreen(dpy);
Window root = DefaultRootWindow(dpy);
XRRScreenResources * res = XRRGetScreenResourcesCurrent(dpy, root);
XRROutputInfo * output_info;
for (int i = 0; i < res->noutput; i++)
{
output_info = XRRGetOutputInfo (dpy, res, res->outputs[i]);
if( output_info->connection ) continue; // No connection no crtcs
printf(" (%lu %lu) mm Name: %s connection: %i ncrtc: %i \n", output_info->mm_width
, output_info->mm_height
, output_info->name
, output_info->connection
, output_info->ncrtc
);
}
printf("crtcs:\n");
for( int j = 0; j < output_info->ncrtc; j++ ) {
XRRCrtcInfo * crtc_info = XRRGetCrtcInfo( dpy, res, res->crtcs[ j ] );
if( not crtc_info->noutput ) continue;
printf("%i w: %5i h: %5i x: %5i y: %i\n", j
, crtc_info->width
, crtc_info->height
, crtc_info->x
, crtc_info->y
);
}
}
实际上有 2 个函数可以查询有关屏幕的资源:XRRGetScreenResourcesCurrent 和 XRRGetScreenResources。第一个返回一些缓存值,而后一个询问可能引入轮询的服务器。说明(搜索 RRGetScreenResources): https ://www.x.org/releases/X11R7.6/doc/randrproto/randrproto.txt
有人在计时时遇到了麻烦: https ://github.com/glfw/glfw/issues/347
XRRGetScreenResourcesCurrent:通常从 20 到 100 我们。h XRRGetScreenResources:通常从 13600 到 13700 us。