Hello,

i have got a qtablewidget and i need a delayed hover effect. So I connected the table with my private slot (testslot):

connect(tableWidget, SIGNAL(itemEntered(QTableWidgetItem*)), this, SLOT(testslot()));

But this is without a delay. The mousepointer should stand 2 or 3 second over the table and then activate the signal.

Thanks