在 GraphicsView(QGraphicsView)我设置场景(QGraphicsScene),我通过 qgraphicsproxy 小部件添加 qdial 对象,将 sizegrip 放在右下位置?`
QDial *dial = new QDial(); // dial object
plot->setGeometry(event->pos().x(),event->pos().y(),80,80);
QSizeGrip * sizeGrip = new QSizeGrip(dial );// placing sizegrip
QGraphicsProxyWidget *proxy = new QGraphicsProxyWidget();
proxy->setWidget(dial );
proxy->setFlag(QGraphicsItem::ItemIsMovable,true);
scene->addItem(proxy);`
输出图像