4
0
mirror of https://github.com/QuasarApp/QtDeployer.git synced 2025-04-30 07:24:31 +00:00
QtDeployer/source/CPP/listviewdelegate.h
2018-06-03 13:49:35 +03:00

19 lines
484 B
C++

#ifndef LISTVIEWDELEGATE_H
#define LISTVIEWDELEGATE_H
#include <QItemDelegate>
class ListViewDelegate : public QItemDelegate
{
public:
ListViewDelegate();
void paint(QPainter *painter, const QStyleOptionViewItem &option,
const QModelIndex &index) const Q_DECL_OVERRIDE;
QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option,
const QModelIndex &index) const Q_DECL_OVERRIDE;
};
#endif // LISTVIEWDELEGATE_H