// Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #pragma once #include namespace Todo { namespace Internal { class TodoOutputTreeViewDelegate : public QStyledItemDelegate { Q_OBJECT public: explicit TodoOutputTreeViewDelegate(QObject *parent = nullptr); void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const override; }; } // namespace Internal } // namespace Todo