Files
GUI/src/components/AccountRoleComboDelegate.h

24 lines
585 B
C
Raw Normal View History

2021-12-08 15:10:56 +08:00
//
// Created by Krad on 2021/12/8.
//
#ifndef GUI_ACCOUNTROLECOMBODELEGATE_H
#define GUI_ACCOUNTROLECOMBODELEGATE_H
#include <QAbstractItemModel>
#include <QItemDelegate>
class AccountRoleComboDelegate:public QItemDelegate {
Q_OBJECT
public:
explicit AccountRoleComboDelegate(QWidget *parent = nullptr);
void paint(QPainter *painter,
const QStyleOptionViewItem &option,
const QModelIndex &index) const override;
private:
QAbstractItemModel* model = nullptr;
QMap<QString,QVariant> map ;
};
#endif //GUI_ACCOUNTROLECOMBODELEGATE_H