++ qt继承至QObject和QGraphicsItem设置Item可缩放实现
时间: 2023-05-22 13:02:08 浏览: 115
Qt QGraphicsItem尺寸调整,缩放
5星 · 资源好评率100%
可以通过在子类中重写QGraphicsItem的boundingRect()和paint()函数来实现可缩放的QGraphicsItem。同时,也可以使用QGraphicsView的setInteractive()函数来启用缩放功能。在继承至QObject时,可以使用Q_PROPERTY宏来定义可缩放属性,并在setter函数中更新boundingRect()。具体实现可以参考Qt官方文档和示例代码。
阅读全文