Mercurial > hg > Feedworm
diff MainWindow.py @ 55:0f9b3e57cff0
pull out FeedEntryItemDelegate into its own file
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Tue, 18 May 2010 03:17:06 +0200 |
parents | 8cca4585eb33 |
children | c82f5538733c |
line wrap: on
line diff
--- a/MainWindow.py Tue May 18 03:12:00 2010 +0200 +++ b/MainWindow.py Tue May 18 03:17:06 2010 +0200 @@ -3,11 +3,11 @@ from DisplayModel import DisplayModel from Feed import Feed from FeedEntry import FeedEntry +from FeedEntryItemDelegate import FeedEntryItemDelegate from FeedSettings import FeedSettings from PreferencesDialog import PreferencesDialog from PyQt4 import QtGui from PyQt4.QtCore import QUrl -from PyQt4.QtGui import QFont from Ui_MainWindow import Ui_MainWindow import subprocess @@ -95,15 +95,3 @@ feedSettings.exec_() -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)