How are you connecting the signal to your slot ??
From the slot you can use the row/column...
Say you have connected -
connect(m_tableWidget,SIGNAL(cellEntered(int,int)),this,SLOT(handleCellEntered(int,int)) );
// Then in
MyClass::handleCellEntered(int aRow,int aCol)
{
// aRow is row
// aCol is column
}
connect(m_tableWidget,SIGNAL(cellEntered(int,int)),this,SLOT(handleCellEntered(int,int)) );
// Then in
MyClass::handleCellEntered(int aRow,int aCol)
{
// aRow is row
// aCol is column
}
To copy to clipboard, switch view to plain text mode
Bookmarks