Я пытаюсь прикрепить указатель к QListWidgetItem
, который будет использоваться в слоте 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
. Здесь мне нужно извлечь свой Image*
из варианта, и я не знаю, как это сделать.
Я пробовал это, но я получаю ошибку:
"qt_metatype_id" не является членом "QMetaTypeId"
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 *>();