transmission/qt/FileTreeDelegate.h

32 lines
630 B
C
Raw Normal View History

/*
* This file Copyright (C) 2009-2015 Mnemosyne LLC
*
* It may be used under the GNU GPL versions 2 or 3
* or any future license endorsed by Mnemosyne LLC.
*
*/
#pragma once
#include <QItemDelegate>
class FileTreeDelegate : public QItemDelegate
{
Q_OBJECT
public:
FileTreeDelegate(QObject* parent = nullptr) :
QItemDelegate(parent)
{
}
virtual ~FileTreeDelegate()
{
}
public:
2015-06-12 22:12:12 +00:00
// QAbstractItemDelegate
virtual QSize sizeHint(QStyleOptionViewItem const&, QModelIndex const&) const;
virtual void paint(QPainter*, QStyleOptionViewItem const&, QModelIndex const&) const;
};