怎么把QLabel添加进QGraphicsItem

来源:互联网 发布:可牛影像软件下载 编辑:程序博客网 时间:2024/04/30 11:57

从国外网站找的答案;元标题是:How to add QLabel to QGraphicsItem

The QGraphicsProxyWidget forwards events to its widget and handles conversion between the different coordinate systems.

Now that you're looking at using a QLineEdit in the QGraphicsScene, you need to decide if you want to add it directly: -

QGraphicsScene* pScene = new QGraphicsScene;QLineEdit* pLineEdit = new QLineEdit("Some Text");// add the widget - internally, the QGraphicsProxyWidget is created and returnedQGraphicsProxyWidget* pProxyWidget = pScene->AddWidget(pLineEdit);//Or just add it to your current QGraphicsItem. Here, you can either add it as a child of the QGraphicsItem: -MyQGraphicsItem* pMyItem = new MyQGraphicsItem;QGraphicsProxyWidget* pMyProxy = new QGraphicsProxyWidget(pMyItem); // the proxy's parent is pMyItempMyProxy->setWidget(pLineEdit); // adding the QWidget based object to the proxy

Or you could add the QGraphicsProxyWidget as a member of your class and call its relevant functions, but adding it as a child is probably much simpler.
0 0
原创粉丝点击