Mercurial > hg > Feedworm
view FeedEntryItemDelegate.py @ 212:1262b1168f1f
calculate the number of unread entries while performing map/reduce
author | dirk |
---|---|
date | Sat, 18 Aug 2012 04:44:51 +0200 |
parents | babe14449162 |
children | bb3c851b18b1 |
line wrap: on
line source
from PyQt4 import QtGui from PyQt4.QtGui import QFont class FeedEntryItemDelegate(QtGui.QStyledItemDelegate): def __init__(self): QtGui.QStyledItemDelegate.__init__(self, None) def paint(self, painter, style, index): feedEntryTableModel = index.model() row = index.row() # this makes assumptions about the type and the properties of the model but there's no # way to get to the feedEntry using proper Qt API entry = feedEntryTableModel.feedEntries[row] if entry.read: style.font.setWeight(QFont.Normal) else: style.font.setWeight(QFont.Bold) QtGui.QStyledItemDelegate.paint(self, painter, style, index)