// Copyright (C) 2023 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause #ifndef SEARCHRESULTDELEGATE_H #define SEARCHRESULTDELEGATE_H #include //! [0] class SearchResultDelegate : public QStyledItemDelegate { Q_OBJECT public: SearchResultDelegate(QObject *parent = nullptr); void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const override; }; #endif // SEARCHRESULTDELEGATE_H