Hello,
Quick question. I am currently using cellClicked(int,int) as a signal, and it works just fine. When i click on a cell in my QTableWidget, a signal is properly connected. I would like the user to be able to navigate through my QTableWidget with their arrow keys though. I thougt cellActivated might work, but nothing happens. I can only find one reference to a problem like this though google, and the only suggestion that someone has was that maybe it is a bug.
Am I trying the wrong signal? Am I doing something wrong? Like I said, the below code works, but it doesn't quite accomplish what I want.
Code:
connect(this->commandList1, SIGNAL(cellClicked(int,int)), this, SLOT(paint()));
Thanks a bunch.
edit: I am using Qt 4.3.3 with Visual Studio Express on windows XP