1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
/*
* Copyright (C) 2023, KylinSoft Co., Ltd.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*
**/
#include "poplistdelegate.h"
PopListDelegate::PopListDelegate(QWidget* parent) : QStyledItemDelegate (parent)
{
}
// 委托类,主要绘制鼠标划过时候的状态
void PopListDelegate::paint(QPainter *painter, const QStyleOptionViewItem& option,const QModelIndex& index) const{
painter->save();
painter->setRenderHint(QPainter::Antialiasing); // 反锯齿;
painter->setPen(Qt::transparent);
QRect rect(option.rect);
rect.setWidth(rect.width() - 1);
rect.setHeight(rect.height() - 1);
if(option.state.testFlag(QStyle::State_MouseOver)) {
QColor hoverColor(44, 167, 248);
painter->setBrush(QBrush(hoverColor));
painter->drawRoundedRect(rect, 4, 4);
}
QPalette pal;
QBrush brush = pal.buttonText();
QColor textColor = brush.color();
if(option.state.testFlag(QStyle::State_MouseOver)) {
textColor = Qt::white;
}
painter->setPen(QPen(textColor));
QString text = index.model()->data(index, Qt::DisplayRole).toString();
painter->drawText(QRect(rect.x() + 8,rect.y(),rect.width(),rect.height()), Qt::AlignLeft | Qt::AlignVCenter, text);
painter->restore();
}
|