QTableWidget whole row selected SIGNAL
Hi all,
I'm using QTableWidget to create a table of 2 columns that looks as follow:
__ Col1 Col2
1 | aaa | bbb |
2 | bbb | ddd |
...
where the number 1,2, 3, etc are inserted automatically by QTableWidget (not my columns). When I click on one of these numbers, it will select/highlight the whole row. I tried to capture this event/signal with connect( this, SIGNAL( itemClicked/clicked/activated/etc()), this, SLOT( myFunc() ) and overload the SLOT selectRow(), but can't capture it.
Do you know a way to capture this signal when clicking on the numbers?
Thanks.