有什么方法可以检测 QGraphicsFrameWork 的 update-draw 开始和 update-draw 结束吗?

发布于 2024-12-17 18:25:31 字数 79 浏览 1 评论 0原文

我需要知道这两点。 更新绘图何时开始以及何时结束。

此外,我需要一种方法来中断此操作,例如当您进行缩放时。 有什么想法吗?谢谢

I'd need to know this two points.
When starts an update-drawing and when ends.

In addittion I'need a way to interrupt this, in example when you are making zoom.
Any idea ? Thanks

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

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

发布评论

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

评论(1

☆獨立☆ 2024-12-24 18:25:31

QWidget::update 请求重新绘制小部件(或其一部分)。多个更新请求可以合并为单个绘制请求。

因此,重新实现虚拟 paintEvent 方法可能会有所帮助。例如:

void MyGraphicsView::paintEvent (QPaintEvent *event) {
  // Do stuff before repainting

  // Do the actual paint update
  QGraphicsView::paintEvent(event);

  // Do stuff after painting
}

如果这不是您要问的,请澄清您的问题;我不确定我是否理解正确。

QWidget::update requests the widget (or a portion thereof) to be repainted. Several update requests may be merged into a single paint request.

Thus, it might be helpful to re-implement the virtual paintEvent method. Something like:

void MyGraphicsView::paintEvent (QPaintEvent *event) {
  // Do stuff before repainting

  // Do the actual paint update
  QGraphicsView::paintEvent(event);

  // Do stuff after painting
}

If that's not what you were asking, please clarify your question; I wasn't totally sure I understood it correctly.

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