1 Star 2 Fork 2

aswg/自绘Qt所有控件

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
resourcedelegate.h 853 Bytes
一键复制 编辑 原始数据 按行查看 历史
aswg 提交于 2021-06-11 15:48 . 包括delegate的OnPainter里绘制QCheckBox
#ifndef ResourceDelegate_H
#define ResourceDelegate_H
#include <QObject>
#include <QStyledItemDelegate>
#include <QAbstractItemView>
#include <QCheckBox>
#include "resourcemodel.h"
// checkbox delegate在dpi = 1.0时对应的长和宽
const static int selectWidth = 16;
const static int selectHeight = 16;
class ResourceDelegate : public QStyledItemDelegate
{
public:
explicit ResourceDelegate(QAbstractItemView *parent = nullptr);
void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const override;
bool editorEvent(QEvent *event, QAbstractItemModel *model, const QStyleOptionViewItem &option, const QModelIndex &index) override;
void setUpdating(bool value);
private:
QAbstractItemView * parent_;
bool updating;
qreal scaleX;
qreal scaleY;
};
#endif // ResourceDelegate_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/NickASuo/self-drawing-qt-all-widgets.git
git@gitee.com:NickASuo/self-drawing-qt-all-widgets.git
NickASuo
self-drawing-qt-all-widgets
自绘Qt所有控件
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385