]> git.sven.stormbind.net Git - sven/vym.git/blob - src/treedelegate.h
New upstream version 2.9.22
[sven/vym.git] / src / treedelegate.h
1 #ifndef TREEDELEGATE_H
2 #define TREEDELEGATE_H
3
4 #include <QStyledItemDelegate>
5
6 class TreeDelegate : public QStyledItemDelegate {
7     Q_OBJECT
8   public:
9     TreeDelegate(QObject *parent = 0);
10     QString displayText(const QVariant &value, const QLocale &locale) const;
11     void paint(QPainter *painter, const QStyleOptionViewItem &option,
12         const QModelIndex &index) const;
13     /*
14     QSize sizeHint(const QStyleOptionViewItem &option,
15         const QModelIndex &index ) const;
16     */
17 };
18
19 #endif