是否可以从QModelIndex获取Qpoint

时间:2013-11-27 07:21:09

标签: c++ qt

是否可以从QModelIndex获取Qpoint。我想获得一个Qpoint,以便我可以在某一行显示工具提示。

2 个答案:

答案 0 :(得分:6)

您可以使用QAbstractItemView::visualRect(const QModelIndex &index)来返回索引处项目占用的视口上的矩形。 例如:

QRect rect = tableView->visualRect(index); // index is a QModelIndex
QPoint pos = tableView->mapToGlobal(rect.center());
QToolTip::showText(pos, "This is my tool tip", tableView, rect);

答案 1 :(得分:2)

您应该实现模型,以便在请求Qt::ToolTipRole角色时返回工具提示内容。这是向视图添加工具提示的正确模型视图方式。