mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-11-22 22:43:02 -05:00
236 lines
7.9 KiB
Python
236 lines
7.9 KiB
Python
#!/usr/bin/env python
|
|
__license__ = 'GPL v3'
|
|
__copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net'
|
|
__docformat__ = 'restructuredtext en'
|
|
|
|
'''
|
|
Module to implement the Cover Flow feature
|
|
'''
|
|
|
|
import sys, os, time
|
|
|
|
from PyQt4.Qt import QImage, QSizePolicy, QTimer, QDialog, Qt, QSize, \
|
|
QStackedLayout, QLabel
|
|
|
|
from calibre import plugins
|
|
from calibre.gui2 import config, available_height, available_width
|
|
|
|
pictureflow, pictureflowerror = plugins['pictureflow']
|
|
|
|
if pictureflow is not None:
|
|
|
|
class EmptyImageList(pictureflow.FlowImages):
|
|
def __init__(self):
|
|
pictureflow.FlowImages.__init__(self)
|
|
|
|
class FileSystemImages(pictureflow.FlowImages):
|
|
|
|
def __init__(self, dirpath):
|
|
pictureflow.FlowImages.__init__(self)
|
|
self.images = []
|
|
self.captions = []
|
|
for f in os.listdir(dirpath):
|
|
f = os.path.join(dirpath, f)
|
|
img = QImage(f)
|
|
if not img.isNull():
|
|
self.images.append(img)
|
|
self.captions.append(os.path.basename(f))
|
|
|
|
def count(self):
|
|
return len(self.images)
|
|
|
|
def image(self, index):
|
|
return self.images[index]
|
|
|
|
def caption(self, index):
|
|
return self.captions[index]
|
|
|
|
def currentChanged(self, index):
|
|
print 'current changed:', index
|
|
|
|
class DatabaseImages(pictureflow.FlowImages):
|
|
|
|
def __init__(self, model, buffer=20):
|
|
pictureflow.FlowImages.__init__(self)
|
|
self.model = model
|
|
self.model.modelReset.connect(self.reset)
|
|
|
|
def count(self):
|
|
return self.model.count()
|
|
|
|
def caption(self, index):
|
|
try:
|
|
ans = self.model.title(index)
|
|
if not ans:
|
|
ans = ''
|
|
except:
|
|
ans = ''
|
|
return ans
|
|
|
|
def reset(self):
|
|
#self.dataChanged.emit()
|
|
pass
|
|
|
|
def image(self, index):
|
|
return self.model.cover(index)
|
|
|
|
|
|
class CoverFlow(pictureflow.PictureFlow):
|
|
|
|
def __init__(self, parent=None):
|
|
pictureflow.PictureFlow.__init__(self, parent,
|
|
config['cover_flow_queue_length']+1)
|
|
self.setMinimumSize(QSize(300, 150))
|
|
self.setFocusPolicy(Qt.WheelFocus)
|
|
self.setSizePolicy(QSizePolicy(QSizePolicy.Expanding,
|
|
QSizePolicy.Expanding))
|
|
self.setZoomFactor(150)
|
|
|
|
def sizeHint(self):
|
|
return self.minimumSize()
|
|
|
|
def wheelEvent(self, ev):
|
|
ev.accept()
|
|
if ev.delta() < 0:
|
|
self.showNext()
|
|
elif ev.delta() > 0:
|
|
self.showPrevious()
|
|
|
|
|
|
else:
|
|
CoverFlow = None
|
|
DatabaseImages = None
|
|
FileSystemImages = None
|
|
|
|
class CoverFlowMixin(object):
|
|
|
|
def __init__(self):
|
|
self.cover_flow = None
|
|
if CoverFlow is not None:
|
|
self.cf_last_updated_at = None
|
|
self.cover_flow_sync_timer = QTimer(self)
|
|
self.cover_flow_sync_timer.timeout.connect(self.cover_flow_do_sync)
|
|
self.cover_flow_sync_flag = True
|
|
self.cover_flow = CoverFlow(parent=self)
|
|
self.cover_flow.currentChanged.connect(self.sync_listview_to_cf)
|
|
self.library_view.selectionModel().currentRowChanged.connect(
|
|
self.sync_cf_to_listview)
|
|
self.db_images = DatabaseImages(self.library_view.model())
|
|
self.cover_flow.setImages(self.db_images)
|
|
else:
|
|
self.cover_flow = QLabel('<p>'+_('Cover browser could not be loaded')
|
|
+'<br>'+pictureflowerror)
|
|
self.cover_flow.setWordWrap(True)
|
|
if config['separate_cover_flow']:
|
|
self.cb_splitter.button.clicked.connect(self.toggle_cover_browser)
|
|
if CoverFlow is not None:
|
|
self.cover_flow.stop.connect(self.hide_cover_browser)
|
|
else:
|
|
self.cb_splitter.insertWidget(self.cb_splitter.side_index, self.cover_flow)
|
|
if CoverFlow is not None:
|
|
self.cover_flow.stop.connect(self.cb_splitter.hide_side_pane)
|
|
self.cb_splitter.button.toggled.connect(self.cover_browser_toggled)
|
|
|
|
def toggle_cover_browser(self):
|
|
cbd = getattr(self, 'cb_dialog', None)
|
|
if cbd is not None:
|
|
self.hide_cover_browser()
|
|
else:
|
|
self.show_cover_browser()
|
|
|
|
def cover_browser_toggled(self, *args):
|
|
if self.cb_splitter.button.isChecked():
|
|
self.cover_browser_shown()
|
|
else:
|
|
self.cover_browser_hidden()
|
|
|
|
def cover_browser_shown(self):
|
|
self.cover_flow.setFocus(Qt.OtherFocusReason)
|
|
if CoverFlow is not None:
|
|
self.cover_flow.setCurrentSlide(self.library_view.currentIndex().row())
|
|
self.cover_flow_sync_timer.start(500)
|
|
self.library_view.setCurrentIndex(
|
|
self.library_view.currentIndex())
|
|
self.library_view.scroll_to_row(self.library_view.currentIndex().row())
|
|
|
|
def cover_browser_hidden(self):
|
|
if CoverFlow is not None:
|
|
self.cover_flow_sync_timer.stop()
|
|
idx = self.library_view.model().index(self.cover_flow.currentSlide(), 0)
|
|
if idx.isValid():
|
|
sm = self.library_view.selectionModel()
|
|
sm.select(idx, sm.ClearAndSelect|sm.Rows)
|
|
self.library_view.setCurrentIndex(idx)
|
|
self.library_view.scroll_to_row(idx.row())
|
|
|
|
|
|
def show_cover_browser(self):
|
|
d = QDialog(self)
|
|
ah, aw = available_height(), available_width()
|
|
d.resize(int(aw/1.5), ah-60)
|
|
d._layout = QStackedLayout()
|
|
d.setLayout(d._layout)
|
|
d.setWindowTitle(_('Browse by covers'))
|
|
d.layout().addWidget(self.cover_flow)
|
|
self.cover_flow.setVisible(True)
|
|
self.cover_flow.setFocus(Qt.OtherFocusReason)
|
|
d.show()
|
|
self.cb_splitter.button.set_state_to_hide()
|
|
d.finished.connect(self.cb_splitter.button.set_state_to_show)
|
|
self.cb_dialog = d
|
|
|
|
def hide_cover_browser(self):
|
|
cbd = getattr(self, 'cb_dialog', None)
|
|
if cbd is not None:
|
|
cbd.accept()
|
|
self.cb_dialog = None
|
|
|
|
def sync_cf_to_listview(self, current, previous):
|
|
if self.cover_flow_sync_flag and self.cover_flow.isVisible() and \
|
|
self.cover_flow.currentSlide() != current.row():
|
|
self.cover_flow.setCurrentSlide(current.row())
|
|
self.cover_flow_sync_flag = True
|
|
|
|
def cover_flow_do_sync(self):
|
|
self.cover_flow_sync_flag = True
|
|
try:
|
|
if self.cover_flow.isVisible() and self.cf_last_updated_at is not None and \
|
|
time.time() - self.cf_last_updated_at > 0.5:
|
|
self.cf_last_updated_at = None
|
|
row = self.cover_flow.currentSlide()
|
|
m = self.library_view.model()
|
|
index = m.index(row, 0)
|
|
if self.library_view.currentIndex().row() != row and index.isValid():
|
|
self.cover_flow_sync_flag = False
|
|
self.library_view.scroll_to_row(index.row())
|
|
sm = self.library_view.selectionModel()
|
|
sm.select(index, sm.ClearAndSelect|sm.Rows)
|
|
self.library_view.setCurrentIndex(index)
|
|
except:
|
|
pass
|
|
|
|
|
|
def sync_listview_to_cf(self, row):
|
|
self.cf_last_updated_at = time.time()
|
|
|
|
|
|
def main(args=sys.argv):
|
|
return 0
|
|
|
|
if __name__ == '__main__':
|
|
from PyQt4.QtGui import QApplication, QMainWindow
|
|
app = QApplication([])
|
|
w = QMainWindow()
|
|
cf = CoverFlow()
|
|
cf.resize(int(available_width()/1.5), available_height()-60)
|
|
w.resize(cf.size()+QSize(30, 20))
|
|
path = sys.argv[1]
|
|
model = FileSystemImages(sys.argv[1])
|
|
cf.currentChanged[int].connect(model.currentChanged)
|
|
cf.setImages(model)
|
|
w.setCentralWidget(cf)
|
|
|
|
w.show()
|
|
cf.setFocus(Qt.OtherFocusReason)
|
|
sys.exit(app.exec_())
|