blob: 88d48aa49595415f54f407264da424da86f51329 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef NOEDITDELEGATE_H
#define NOEDITDELEGATE_H
#include <QStyledItemDelegate>
class NoEditDelegate : public QStyledItemDelegate
{
public:
NoEditDelegate(QObject* parent = nullptr);
virtual QWidget* createEditor(QWidget* parent, const QStyleOptionViewItem& option,
const QModelIndex& index) const;
};
#endif // NOEDITDELEGATE_H
|