view FeedEntryItemDelegate.py @ 110:43c234c8fe87

store the number of days to keep feed entries as preference setting in the database. The feed update process reads and uses that value.
author Dirk Olmes <dirk@xanthippe.ping.de>
date Wed, 30 Mar 2011 02:59:22 +0200
parents 0f9b3e57cff0
children babe14449162
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):
        row = index.row()
        entry = self.entries[row]
        if entry.read:
            style.font.setWeight(QFont.Normal)
        else:
            style.font.setWeight(QFont.Bold)
        QtGui.QStyledItemDelegate.paint(self, painter, style, index)