QPainter 宽度和高度

发布于 2024-11-27 17:10:09 字数 206 浏览 0 评论 0原文

有没有机会知道QPainter的大小?我正在使用 QPainter 来绘制移动应用程序的整个图形界面。问题是某些应用程序在窗口上覆盖了每个设备大小不同的菜单,从而使事情几乎不可能! 是否有可能在不知道 QPainter 大小的情况下做到这一点?

编辑:简单的 width()height() 有效!

Is there any chance to find out the size of the QPainter? I am using QPainter for drawing the whole graphic interface for a mobile app. The problem is that certain application overlay the window with menu which size is different for every device, thus making things nearly impossible!
Are there any possibilities to do it instead of knowing QPainter size?

EDIT: simple width() and height() works!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

请远离我 2024-12-04 17:10:09

您必须查看附加到 QPainter 的 QPaintDevice 的大小

painter->device()->width();

You have to look at the size of the QPaintDevice attached to the QPainter

painter->device()->width();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文