关于 QGraphicsView/QGraphicsScene 缩放的一般建议
在我的项目中,我使用 QGraphicsView/QGraphicsScene 的东西。
在我的场景中会有包含 2D 图形的区域。 区域数量将受到限制(假设 20 个)
用户可以选择显示一个或多个区域。
如果用户选择显示一个区域,我将在场景上显示一个区域
如果用户选择显示 n 个区域,我将在场景中显示 n 个区域
我需要一个缩放逻辑来适应同一场景上的 n 个区域。
我怎样才能实现这个目标?
In my project I am using QGraphicsView/QGraphicsScene stuff.
On my scene there will be regions that contains 2D graphics.
Region count will be limited(Lets say 20)
Users can choose to display one or more regions.
If user choose to display one region I am going to show one region on scene
If user choose to display n regions I am going to show n regions on scene
I need a scaling logic to fit n regions on same scene.
How can I achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
QGraphicsView::fitInView() 应该做你想做的事:
QGraphicsView::fitInView() should do what you want:
我相信你应该使用 ensureVisible 方法。
I believe you should use ensureVisible method.