wumu
2025-04-27 20ffcfb5507daf34f81346ca3dfa4c031e7b2fe3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef NOEDITITEMDELEGATE_H
#define NOEDITITEMDELEGATE_H
 
#include <QItemDelegate>
 
 
 
class NoEditItemDelegate : public QItemDelegate
{
    Q_OBJECT
public:
    NoEditItemDelegate(QObject *p = 0);
 
    QWidget * createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const;
    void setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const;
    void setEditorData(QWidget *editor, const QModelIndex &index) const;
    void updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &index) const;
};
 
#endif // NOEDITITEMDELEGATE_H