QListWidget禁用鼠标悬停突出显示

时间:2017-02-22 22:05:20

标签: qt qt5 highlight qlistwidget qlistwidgetitem

我有一个QListWidget,其中有几个QListWidgetItems只包含文本但背景颜色不同。默认情况下,当鼠标悬停在项目上时,项目会以蓝色条突出显示。如何禁用突出显示?

我使用的代码

//add spacer
QListWidgetItem *spacer = new QListWidgetItem("foo");
spacer->setBackgroundColor(QColor(Qt::gray));
spacer->setFlags(Qt::ItemIsEnabled);    //disables selectionable
ui->listWidget->addItem(spacer);

提前致谢。

spacer是灰色项目,名称为

编辑:添加图片链接(剪切工具工具隐藏鼠标,第6项突出显示)

2 个答案:

答案 0 :(得分:0)

您可以覆盖" hover"使用Qt CSS,如果你正在使用" grey"颜色:

spacer->setStylesheet("*:hover {background:gray;}");

按照Qt Style sheet examples

中的说明设置整个列表的样式
QListView::item:hover {
    background: gray
}

答案 1 :(得分:0)

我设法使用覆盖QStyledItemDelegate::paint方法的自定义项代理。

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

//determine if index is spacer
//TODO non-hacky spacer detection
bool spacer = false;
QString text = index.data().toString();
if(        ( text == "Monday")
        || ( text == "Tuesday")
        || ( text == "Wednesday")
        || ( text == "Thursday")
        || ( text == "Friday")
        || ( text == "Saturday")
        || ( text == "Sunday")
){
    spacer = true;
}

if(option.state & QStyle::State_MouseOver){
    if(spacer){
        painter->fillRect(option.rect, QColor(Qt::gray));
    }else{
        painter->fillRect(option.rect, QColor(Qt::white));
    }
    painter->drawText(option.rect.adjusted(3,1,0,0), text);
    return;
}

//default
QStyledItemDelegate::paint(painter, option, index);
}