04b7641e85
- Add x11proto to redbear-full.toml package list - libxau recipe updated with x11proto dependency and custom build script - Fixes libxau build failure: 'Package xproto was not found'
41 lines
1.2 KiB
C++
41 lines
1.2 KiB
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 <QSize>
|
|
#include <QSqlRelationalDelegate>
|
|
|
|
QT_FORWARD_DECLARE_CLASS(QPainter)
|
|
|
|
class BookDelegate : public QSqlRelationalDelegate
|
|
{
|
|
public:
|
|
explicit BookDelegate(int ratingColumn, QObject *parent = nullptr);
|
|
|
|
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:
|
|
const QIcon starIcon{QStringLiteral(":images/star.svg")};
|
|
const QIcon starFilledIcon{QStringLiteral(":images/star-filled.svg")};
|
|
|
|
const int cellPadding = 6;
|
|
const int iconDimension = 24;
|
|
const int ratingColumn; // 0 in the combobox, otherwise 5
|
|
};
|
|
|
|
#endif
|