]> git.sven.stormbind.net Git - sven/vym.git/blob - treedelegate.h
Import Upstream version 2.6.11
[sven/vym.git] / 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     /*
12     void paint(QPainter *painter, const QStyleOptionViewItem &option,
13             const QModelIndex &index) const;
14     QSize sizeHint(const QStyleOptionViewItem &option,
15             const QModelIndex &index ) const;
16     */      
17 };
18
19 #endif