加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
TreeItemDelegate.h 1.29 KB
一键复制 编辑 原始数据 按行查看 历史
chaocc.wang 提交于 2019-11-04 17:46 . 版本更新
//
// Created by cc on 18-11-13.
//
#ifndef QTALK_V2_TREEITEMDELEGATE_H
#define QTALK_V2_TREEITEMDELEGATE_H
#include <QStyledItemDelegate>
#include <QPainter>
#include <QStyleOptionViewItem>
#include <QModelIndex>
#include <QEvent>
#include <QSortFilterProxyModel>
#include <QDebug>
enum SearchItemRoles
{
EM_STAFF_DATATYPE_ROW_TYPE = Qt::UserRole + 1,
EM_STAFF_DATATYPE_TEXT,
EM_STAFF_DATATYPE_ICONPATH,
EM_STAFF_DATATYPE_XMPPID,
EM_DATATYPE_CHECKSTATE,
EM_STAFF_DATATYPE_EXTEND,
};
enum rowType{
EM_ROW_INVALID = 0,
EM_ROW_TYPE_TITLE,
EM_ROW_TYPE_SUBTITLE,
EM_ROW_TYPE_ITEM
};
class TreeItemDelegate : public QStyledItemDelegate
{
Q_OBJECT
public:
explicit TreeItemDelegate(QWidget *parent);
~TreeItemDelegate() override;
Q_SIGNALS:
void itemChanged(const QModelIndex&);
void sgItemDbClicked(const QModelIndex&);
protected:
void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const override;
QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const override;
protected:
bool editorEvent(QEvent *event, QAbstractItemModel *model, const QStyleOptionViewItem &option, const QModelIndex &index) override;
private:
QWidget * _parentWgt;
};
#endif //QTALK_V2_TREEITEMDELEGATE_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化