mydelegate.h

来自「Qt开发的GRE背单词软件」· C头文件 代码 · 共 24 行

H
24
字号
#ifndef MYDELEGATE_H
#define MYDELEGATE_H

#include <QItemDelegate>
#include <QPixmap>

class QPainter;
class QModelIndex;

class MyDelegate : public QItemDelegate
{
	Q_OBJECT

public:
	MyDelegate(QObject *parent = 0);
    void paint(QPainter *painter, const QStyleOptionViewItem &option,
               const QModelIndex &index) const;

private:
    QPixmap star;
};

#endif // MYDELEGATE_H

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?