view FeedEntryItemDelegate.py @ 254:156edbd0733a pyqt5

the pyqt5 branch was merged into the default branch
author Dirk Olmes <dirk@xanthippe.ping.de>
date Fri, 10 Nov 2017 01:45:55 +0100
parents 3ce39af93e77
children
line wrap: on
line source

# -*- coding: utf-8 -*-
from PyQt5.QtGui import QFont
from PyQt5.QtWidgets import QStyledItemDelegate

class FeedEntryItemDelegate(QStyledItemDelegate):
    def __init__(self):
        super(FeedEntryItemDelegate, self).__init__(None)

    def paint(self, painter, style, index):
        entry = index.internalPointer()
        if entry.read:
            style.font.setWeight(QFont.Normal)
        else:
            style.font.setWeight(QFont.Bold)
        super(FeedEntryItemDelegate, self).paint(painter, style, index)