我试图附加一个指向QListWidgetItem的指针,以在slot itemActivated中使用.
我试图附加的指针是一个QObject *后代,所以我的代码是这样的:
Image * im = new Image(); // here I add data to my Image object // now I create my item QListWidgetItem * lst1 = new QListWidgetItem(*icon,serie->getSeriesInstanceUID(),m_iconView); // then I set my instance to a QVariant QVariant v(QMetaType::QObjectStar,&im) // now I "attach" the variant to the item. lst1->setData(Qt::UserRole,v); //After this,I connect the SIGNAL and SLOT ...
现在我的问题,itemActivated插槽.在这里,我需要从变体中提取我的图像*,我不知道如何.
我试过这个,但我收到错误:
void MainWindow::itemActivated( QListWidgetItem * item ) { Image * im = item->data(Qt::UserRole).value<Image *>(); qDebug( im->getImage().toAscii() ); }
任何提示?
Image * im = item->data(Qt::UserRole).value<Image *>();
解决方法
答案是这样的
// From QVariant to QObject * QObject * obj = qvariant_cast<QObject *>(item->data(Qt::UserRole)); // from QObject* to myClass* myClass * lmyClass = qobject_cast<myClass *>(obj);