summaryrefslogtreecommitdiff
path: root/src/plugins/todo/todooutputtreeviewdelegate.h
blob: 1123dd18fcc75ab2cf968a1e4af961a8ed4f9101 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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 <QStyledItemDelegate>

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