Mercurial > hg > Feedworm
view FeedEntryItemDelegate.py @ 82:2dd6e6894772
update the status bar when opening a feed's rss url via WebView or external browser
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Thu, 19 Aug 2010 07:03:32 +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)