Mercurial > hg > Feedworm
view FeedEntryItemDelegate.py @ 190:b7d41325386b
switch to the couchdb backend as default
author | dirk |
---|---|
date | Wed, 21 Sep 2011 12:52:34 +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)