QTableView:如何将鼠标悬停在整行上?

Posted

技术标签:

【中文标题】QTableView:如何将鼠标悬停在整行上?【英文标题】:QTableView: how to hover an entire row on mouse over? 【发布时间】:2013-01-09 19:56:09 【问题描述】:

我对 QTableView、QAbstractTableModel 和 QItemDelegate 进行了子类化。我可以将鼠标悬停在单个单元格上:

void SchedulerDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const

    ...

    if(option.showDecorationSelected &&(option.state & QStyle::State_Selected))

    QColor color(255,255,130,100);
    QColor colorEnd(255,255,50,150);
    QLinearGradient gradient(option.rect.topLeft(),option.rect.bottomRight());
    gradient.setColorAt(0,color);
    gradient.setColorAt(1,colorEnd);
    QBrush brush(gradient);
    painter->fillRect(option.rect,brush);


    ...

...但我不知道如何悬停整行。有人可以帮我提供示例代码吗?

【问题讨论】:

我正试图找到一种方法来告诉 Qt 在鼠标悬停时突出显示整行,不走运.. QTableView How can I highlight the entire row for mouse hover?的可能重复 【参考方案1】:

有两种方法..

1) 您可以使用委托来绘制行背景... 您需要将行设置为在委托中突出显示,并基于此, 做高亮显示。

2) 捕捉当前行的信号。迭代该行中的项目 和 为每个项目设置背景。

你也可以试试样式表:

QTableView::item:hover 
    background-color: #D3F1FC;
        

希望对你们有用。

【讨论】:

【参考方案2】:

这是我的实现,效果很好。首先你应该继承 QTableView/QTabWidget ,在 mouseMoveEvent/dragMoveEvent 函数中向 QStyledItemDelegate 发出一个信号。这个信号将发送悬停索引。

在 QStyledItemDelegate 中,使用成员变量 hover_row_(在插槽中更改为绑定到上述信号)告诉绘制函数哪一行被悬停。

代码示例如下:

//1: Tableview :
void TableView::mouseMoveEvent(QMouseEvent *event)

    QModelIndex index = indexAt(event->pos());
    emit hoverIndexChanged(index);
    ...

//2.connect signal and slot
    connect(this,SIGNAL(hoverIndexChanged(const QModelIndex&)),delegate_,SLOT(onHoverIndexChanged(const QModelIndex&)));

//3.onHoverIndexChanged
void TableViewDelegate::onHoverIndexChanged(const QModelIndex& index)

    hoverrow_ = index.row();


//4.in Delegate paint():
void TableViewDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const

...
    if(index.row() == hoverrow_)
    
        //HERE IS HOVER COLOR
        painter->fillRect(option.rect, kHoverItemBackgroundcColor);
    
    else
    
        painter->fillRect(option.rect, kItemBackgroundColor);
    
...

【讨论】:

以上是关于QTableView:如何将鼠标悬停在整行上?的主要内容,如果未能解决你的问题,请参考以下文章

如何创建 QTableview 单元格悬停功能

QTableView 在鼠标悬停时显示表格项的内容

VC++、MFC开发中如何通过鼠标点击控制列表选择一行

将鼠标悬停在表格的行上并在该行下方打开一行以获取更多详细信息

Javascript/Coffeescript 鼠标悬停在函数 RoR

悬停时表格标题的边框底部