#include <qsegraphcolumnsdelegate.h>


Public Member Functions | |
| QseGraphColumnsDelegate (QObject *parent=0) | |
| void | paint (QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const |
Definition at line 6 of file qsegraphcolumnsdelegate.h.
| QseGraphColumnsDelegate::QseGraphColumnsDelegate | ( | QObject * | parent = 0 |
) |
Definition at line 5 of file qsegraphcolumnsdelegate.cpp.
00006 : QItemDelegate(parent) 00007 { 00008 }
| void QseGraphColumnsDelegate::paint | ( | QPainter * | painter, | |
| const QStyleOptionViewItem & | option, | |||
| const QModelIndex & | index | |||
| ) | const |
Definition at line 10 of file qsegraphcolumnsdelegate.cpp.
00013 { 00014 // printf("Paint row %d, col %d\n", index.row(), index.column()); 00015 QItemDelegate::paint(painter, option, index); 00016 }
1.5.5