how to dynamically add a QWidget based to QGraphicsScene?
I want to add a QWidget based class(composed by buttons and labels an so on...) to my开发者_C百科 QGraphicScene scene in a special position and respecting the graphic style of my scene.?
I am using QT 4.7.
You may use QGraphicsScene::addWidget() to add your widget to the scene and use the returned QGraphicsProxyWidget * to reposition your widget with QGraphicsItem::setPos(). Alternatively, you may look into QGraphicsWidget class.
精彩评论