1 Star 0 Fork 2

JIANCAI/MusicPlayer_QT5

forked from fword/MusicPlayer_QT5 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
delegate.h 589 Bytes
一键复制 编辑 原始数据 按行查看 历史
fword 提交于 2021-12-23 15:03 . first commit
#ifndef DELEGATE_H
#define DELEGATE_H
#include <QObject>
#include <QItemDelegate>
#include <QStyledItemDelegate>
#include <QAbstractItemView>
#include <QPainter>
/*设置鼠标悬停在选项上,高亮一行*/
class Delegate : public QItemDelegate
{
Q_OBJECT
public:
explicit Delegate(QObject *parent = nullptr);
void onHoverIndexChanged(const QModelIndex& index);
void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const;
signals:
private:
int m_hoverrow;
QBrush kHoverItemBackgroundcColor;
public slots:
};
#endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/jiaanCai/Cplusplus.git
git@gitee.com:jiaanCai/Cplusplus.git
jiaanCai
Cplusplus
MusicPlayer_QT5
master

搜索帮助