Files
qt-creator/src/plugins/todo/todooutputtreeviewdelegate.h

21 lines
536 B
C
Raw Normal View History

// 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