mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-23 12:07:03 +08:00
37 lines
995 B
C
37 lines
995 B
C
|
// Copyright (C) 2016 The Qt Company Ltd.
|
||
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
||
|
|
||
|
#ifndef BOOKDELEGATE_H
|
||
|
#define BOOKDELEGATE_H
|
||
|
|
||
|
#include <QModelIndex>
|
||
|
#include <QPixmap>
|
||
|
#include <QSize>
|
||
|
#include <QSqlRelationalDelegate>
|
||
|
|
||
|
QT_FORWARD_DECLARE_CLASS(QPainter)
|
||
|
|
||
|
class BookDelegate : public QSqlRelationalDelegate
|
||
|
{
|
||
|
public:
|
||
|
BookDelegate(QObject *parent);
|
||
|
|
||
|
void paint(QPainter *painter, const QStyleOptionViewItem &option,
|
||
|
const QModelIndex &index) const override;
|
||
|
|
||
|
QSize sizeHint(const QStyleOptionViewItem &option,
|
||
|
const QModelIndex &index) const override;
|
||
|
|
||
|
bool editorEvent(QEvent *event, QAbstractItemModel *model,
|
||
|
const QStyleOptionViewItem &option,
|
||
|
const QModelIndex &index) override;
|
||
|
|
||
|
QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option,
|
||
|
const QModelIndex &index) const override;
|
||
|
|
||
|
private:
|
||
|
QPixmap star;
|
||
|
};
|
||
|
|
||
|
#endif
|