mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Move setting affiliate in the results structure. Add the heart to the list of stores. Initialize 'affiliate' in the thread.
This commit is contained in:
parent
ddb7afffa9
commit
07716ef801
@ -623,6 +623,8 @@ class StoreBase(Plugin): # {{{
|
||||
headquarters = ''
|
||||
# All formats the store distributes ebooks in.
|
||||
formats = []
|
||||
# Is this store on an affiliate program?
|
||||
affiliate = False
|
||||
|
||||
def load_actual_plugin(self, gui):
|
||||
'''
|
||||
|
@ -8,7 +8,7 @@ __docformat__ = 'restructuredtext en'
|
||||
|
||||
from functools import partial
|
||||
|
||||
from PyQt4.Qt import QMenu
|
||||
from PyQt4.Qt import QMenu, QIcon, QSize
|
||||
|
||||
from calibre.gui2 import error_dialog
|
||||
from calibre.gui2.actions import InterfaceAction
|
||||
@ -32,7 +32,12 @@ class StoreAction(InterfaceAction):
|
||||
self.store_menu.addAction(_('Search for this book'), self.search_author_title)
|
||||
self.store_menu.addSeparator()
|
||||
self.store_list_menu = self.store_menu.addMenu(_('Stores'))
|
||||
icon = QIcon()
|
||||
icon.addFile(I('donate.png'), QSize(16, 16))
|
||||
for n, p in sorted(self.gui.istores.items(), key=lambda x: x[0].lower()):
|
||||
if p.base_plugin.affiliate:
|
||||
self.store_list_menu.addAction(icon, n, partial(self.open_store, p))
|
||||
else:
|
||||
self.store_list_menu.addAction(n, partial(self.open_store, p))
|
||||
self.store_menu.addSeparator()
|
||||
self.store_menu.addAction(_('Choose stores'), self.choose)
|
||||
|
@ -120,6 +120,7 @@ class SearchThread(Thread):
|
||||
if not self._run:
|
||||
return
|
||||
res.store_name = store_name
|
||||
res.affiliate = store_plugin.base_plugin.affiliate
|
||||
self.results.put((res, store_plugin))
|
||||
self.tasks.task_done()
|
||||
except:
|
||||
|
@ -76,7 +76,6 @@ class Matches(QAbstractItemModel):
|
||||
self.reset()
|
||||
|
||||
def add_result(self, result, store_plugin):
|
||||
result.affiliate = getattr(store_plugin.base_plugin, 'affiliate', False)
|
||||
if result not in self.all_matches:
|
||||
self.layoutAboutToBeChanged.emit()
|
||||
self.all_matches.append(result)
|
||||
@ -178,6 +177,8 @@ class Matches(QAbstractItemModel):
|
||||
return QVariant(self.DRM_UNKNOWN_ICON)
|
||||
if col == 5:
|
||||
if result.affiliate:
|
||||
# For some reason the size(16, 16) is forgotten if the icon
|
||||
# is a class attribute. Don't know why...
|
||||
icon = QIcon()
|
||||
icon.addFile(I('donate.png'), QSize(16, 16))
|
||||
return QVariant(icon)
|
||||
@ -197,6 +198,7 @@ class Matches(QAbstractItemModel):
|
||||
elif col == 4:
|
||||
return QVariant('<p>%s</p>' % result.formats)
|
||||
elif col == 5:
|
||||
if result.affiliate:
|
||||
return QVariant(_('Buying from this store supports a calibre developer'))
|
||||
elif role == Qt.SizeHintRole:
|
||||
return QSize(64, 64)
|
||||
|
Loading…
x
Reference in New Issue
Block a user