00001 #include "qsegraphcolumnsdelegate.h" 00002 00003 #include <QModelIndex> 00004 00005 QseGraphColumnsDelegate::QseGraphColumnsDelegate(QObject* parent) 00006 : QItemDelegate(parent) 00007 { 00008 } 00009 00010 void QseGraphColumnsDelegate::paint(QPainter* painter, 00011 const QStyleOptionViewItem& option, 00012 const QModelIndex & index ) const 00013 { 00014 // printf("Paint row %d, col %d\n", index.row(), index.column()); 00015 QItemDelegate::paint(painter, option, index); 00016 }
1.5.6