有什么方法可以检测 QGraphicsFrameWork 的 update-draw 开始和 update-draw 结束吗?
我需要知道这两点。 更新绘图何时开始以及何时结束。
此外,我需要一种方法来中断此操作,例如当您进行缩放时。 有什么想法吗?谢谢
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
QWidget::update
请求重新绘制小部件(或其一部分)。多个更新请求可以合并为单个绘制请求。因此,重新实现虚拟
paintEvent
方法可能会有所帮助。例如:如果这不是您要问的,请澄清您的问题;我不确定我是否理解正确。
QWidget::update
requests the widget (or a portion thereof) to be repainted. Severalupdate
requests may be merged into a single paint request.Thus, it might be helpful to re-implement the virtual
paintEvent
method. Something like:If that's not what you were asking, please clarify your question; I wasn't totally sure I understood it correctly.