当鼠标点击tablewidget中某个单元格的pushbutton时,如何获得pushbutton指针和所在单元格的行列号?
void QTableWidget::itemClicked(QTableWidgetItem * item) [signal]
void QTableWidget::cellClicked(int row, int column) [signal]
上面信号都不能实现,还有哪位高手有其他的方法

------解决方案--------------------
这个点击有pushbutton的cell不能识别cell的行列,是没有触发cellClicked而只是触发了pushbutton的clicked。
但是如果你的表格如果是用setCellWidget把这个pushButton添加去,应该点击pushButton是会触发表格的cellClicked信号的,
你是不是直接放上去pushButton,而不是用的setCellWidget加进去的呢?
------解决方案--------------------
可以这么试试:
1. 得到pushbutton的坐标
2. QTableView::indexAt();
QModelIndex QTableView::indexAt(const QPoint & pos) const [virtual]
Reimplemented from QAbstractItemView::indexAt().
Returns the index position of the model item corresponding to the table item at position pos in contents coordinates.
------解决方案--------------------
QWidget::pos()
QPoint QWidget::mapToGlobal(const QPoint & pos) const