QtDeployer/source/CPP/listviewdelegate.h

19 lines
484 B
C
Raw Normal View History

2018-06-03 13:49:35 +03:00
#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