gpt4 book ai didi

c++ - Qt 在屏幕上正确放置新窗口,鼠标居中,移入屏幕

转载 作者:可可西里 更新时间:2023-11-01 13:30:36 28 4
gpt4 key购买 nike

经过数月的尝试、搜索、审查代码等,我无法找到在 QT 中正确定位新窗口的解决方案。在我最基本的情况下,我只是想获得窗口的最终大小并将其居中放置在鼠标下方。它将移动以确保窗口的任何部分都不会超出屏幕。我不希望窗口出现然后移动到位,这会产生视觉冲击,尤其是在打开桌面 FX 的情况下。

我遇到的问题,并不是所有的问题都有妥善的解决方案:

  1. frameGeometry 并不总是在窗口显示之前填充。

  2. frameGeometry 有时是完全错误的,尤其是在 Windows 7 上。

  3. 在显示之前,无法知道是否会应用 sizeHint 或 size,或者介于两者之间的其他东西。也就是说,尺寸政策似乎不可预测。

请注意,我知道如何保存/恢复以前创建的窗口的几何形状。尽管这里也有 QT 缺陷,但我有一个可行的解决方案。

另请注意,我无法使用窗口管理器的默认位置。对于多显示器设置上的非 MDI 应用程序,它们的位置很糟糕(通常甚至与鼠标不在同一台显示器上)。

我还想避免为了实现解决方案而对所有小部件和对话框进行子类化,因为它不是通用的。如果这是唯一可能的方法,那么我愿意考虑它(如果事件过滤器也不是一个选项)。

有没有人有好的可行的解决方案?

最佳答案

编辑看起来更科学:我已经将任意数量的调用更改为processEvents 带有检查返回值的循环。

再次编辑: 新版本似乎不安全:它可能会卡在循环中。所以我限制了迭代次数。

原文:
告诉我怎么回事儿。如果允许我引用我自己的代码:

// BIG PAIN: We want to get the dialog box to caluclate its own size. But there is
// no simple way to do this. The following seems to work, but only if processEvents
// is called at least twice. God knows why:
setAttribute (Qt::WA_DontShowOnScreen, true) ; // Prevent screen flicker
show() ;

QEventLoop EventLoop (this) ;
for (int i = 0 ; i < 10 ; i++)
if (!EventLoop.processEvents()) break ;

hide() ;
setAttribute (Qt::WA_DontShowOnScreen, false) ;

int x = 99 ; // whatever
int y = 99 ; // whatever

// Make sure it fits on the screen
QRect ScreenRect = qApp -> desktop() -> availableGeometry (ApplicationData -> mainWindow) ;

if (x + frameGeometry().width() > ScreenRect.right())
x = ScreenRect.right() - frameGeometry().width() ;
if (x < ScreenRect.x()) x = ScreenRect.x() ;

if (y + frameGeometry().height() > ScreenRect.bottom())
y = ScreenRect.bottom() - frameGeometry().height() ;
if (y < ScreenRect.y()) y = ScreenRect.y() ;

move (x, y) ;

试试这个,调用不同数量的 processEvents。 (在这些调用中,各种子小部件和子子小部件递归地调整自身大小。)

关于c++ - Qt 在屏幕上正确放置新窗口,鼠标居中,移入屏幕,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5417201/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com