00001 #include <QColor> 00002 #include <QString> 00003 00004 #include "coloredtableitem.h" 00005 00006 ColoredTableItem::ColoredTableItem(const QColor &col, bool override, const QString & text) 00007 : QTableWidgetItem(text), 00008 m_Override(override), 00009 m_CellColor(col) 00010 { 00011 #if QT_VERSION >= 0x040200 00012 setForeground(col); 00013 00014 if (override) { 00015 setBackground(QColor(240,240,240,255)); 00016 } else { 00017 setBackground(Qt::white); 00018 } 00019 #endif 00020 } 00021
1.5.6