Reputation: 1735
I want to add a QWidget based class(composed by buttons and labels an so on...) to my QGraphicScene scene in a special position and respecting the graphic style of my scene.?
I am using QT 4.7.
Upvotes: 1
Views: 1020
Reputation: 934
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.
Upvotes: 3