mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-23 20:10:48 +08:00
32 lines
993 B
C
32 lines
993 B
C
|
// Copyright (C) 2016 The Qt Company Ltd.
|
||
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
||
|
|
||
|
#ifndef STARDELEGATE_H
|
||
|
#define STARDELEGATE_H
|
||
|
|
||
|
#include <QStyledItemDelegate>
|
||
|
|
||
|
//! [0]
|
||
|
class StarDelegate : public QStyledItemDelegate
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
using QStyledItemDelegate::QStyledItemDelegate;
|
||
|
|
||
|
void paint(QPainter *painter, const QStyleOptionViewItem &option,
|
||
|
const QModelIndex &index) const override;
|
||
|
QSize sizeHint(const QStyleOptionViewItem &option,
|
||
|
const QModelIndex &index) const override;
|
||
|
QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option,
|
||
|
const QModelIndex &index) const override;
|
||
|
void setEditorData(QWidget *editor, const QModelIndex &index) const override;
|
||
|
void setModelData(QWidget *editor, QAbstractItemModel *model,
|
||
|
const QModelIndex &index) const override;
|
||
|
|
||
|
private slots:
|
||
|
void commitAndCloseEditor();
|
||
|
};
|
||
|
//! [0]
|
||
|
|
||
|
#endif
|