Mercurial > hg > Feedworm
view FeedEntryItemDelegate.py @ 169:91a24f499318
introdue an abstraction for the name of the database so it can be changed via commandline parameter
author | dirk |
---|---|
date | Fri, 09 Sep 2011 14:52:54 +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)