view FeedEntryItemDelegate.py @ 217:bb3c851b18b1

add source file endcoding header
author Dirk Olmes <dirk@xanthippe.ping.de>
date Sun, 27 Apr 2014 05:33:34 +0200
parents babe14449162
children 699d8f1cebd4
line wrap: on
line source

# -*- coding: utf-8 -*-
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)