mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-08 18:54:09 -04:00
calibre now has two layout modes - wide and narrow, chooseable from Preferences->Interface. The default is wide, the old layout is narrow. Fixes #5756 (Some small layout changes)
This commit is contained in:
parent
5303ee2fc7
commit
65e12335b8
@ -100,7 +100,7 @@ def _config():
|
|||||||
c.add_opt('tag_browser_hidden_categories', default=set(),
|
c.add_opt('tag_browser_hidden_categories', default=set(),
|
||||||
help=_('tag browser categories not to display'))
|
help=_('tag browser categories not to display'))
|
||||||
c.add_opt('gui_layout', choices=['wide', 'narrow'],
|
c.add_opt('gui_layout', choices=['wide', 'narrow'],
|
||||||
help=_('The layout of the user interface'), default='narrow')
|
help=_('The layout of the user interface'), default='wide')
|
||||||
return ConfigProxy(c)
|
return ConfigProxy(c)
|
||||||
|
|
||||||
config = _config()
|
config = _config()
|
||||||
|
@ -8,16 +8,18 @@ __docformat__ = 'restructuredtext en'
|
|||||||
import os, collections
|
import os, collections
|
||||||
|
|
||||||
from PyQt4.Qt import QLabel, QPixmap, QSize, QWidget, Qt, pyqtSignal, \
|
from PyQt4.Qt import QLabel, QPixmap, QSize, QWidget, Qt, pyqtSignal, \
|
||||||
QVBoxLayout, QScrollArea, QPropertyAnimation, QEasingCurve
|
QVBoxLayout, QScrollArea, QPropertyAnimation, QEasingCurve, \
|
||||||
|
QSizePolicy, QPainter, QRect, pyqtProperty
|
||||||
|
|
||||||
from calibre import fit_image, prepare_string_for_xml
|
from calibre import fit_image, prepare_string_for_xml
|
||||||
from calibre.gui2.widgets import IMAGE_EXTENSIONS
|
from calibre.gui2.widgets import IMAGE_EXTENSIONS
|
||||||
from calibre.ebooks import BOOK_EXTENSIONS
|
from calibre.ebooks import BOOK_EXTENSIONS
|
||||||
from calibre.constants import preferred_encoding
|
from calibre.constants import preferred_encoding
|
||||||
|
from calibre.library.comments import comments_to_html
|
||||||
|
|
||||||
# render_rows(data) {{{
|
# render_rows(data) {{{
|
||||||
WEIGHTS = collections.defaultdict(lambda : 100)
|
WEIGHTS = collections.defaultdict(lambda : 100)
|
||||||
WEIGHTS[_('Path')] = 0
|
WEIGHTS[_('Path')] = 5
|
||||||
WEIGHTS[_('Formats')] = 1
|
WEIGHTS[_('Formats')] = 1
|
||||||
WEIGHTS[_('Collections')] = 2
|
WEIGHTS[_('Collections')] = 2
|
||||||
WEIGHTS[_('Series')] = 3
|
WEIGHTS[_('Series')] = 3
|
||||||
@ -29,7 +31,7 @@ def render_rows(data):
|
|||||||
rows = []
|
rows = []
|
||||||
for key in keys:
|
for key in keys:
|
||||||
txt = data[key]
|
txt = data[key]
|
||||||
if key in ('id', _('Comments')) or not txt or not txt.strip() or \
|
if key in ('id', _('Comments')) or not hasattr(txt, 'strip') or not txt.strip() or \
|
||||||
txt == 'None':
|
txt == 'None':
|
||||||
continue
|
continue
|
||||||
if isinstance(key, str):
|
if isinstance(key, str):
|
||||||
@ -41,7 +43,8 @@ def render_rows(data):
|
|||||||
if 'id' in data:
|
if 'id' in data:
|
||||||
if key == _('Path'):
|
if key == _('Path'):
|
||||||
txt = '...'+os.sep+os.sep.join(txt.split(os.sep)[-2:])
|
txt = '...'+os.sep+os.sep.join(txt.split(os.sep)[-2:])
|
||||||
txt = u'<a href="path:%s">%s</a>'%(data['id'], txt)
|
txt = u'<a href="path:%s">%s</a>'%(data['id'],
|
||||||
|
_('Click to open'))
|
||||||
if key == _('Formats') and txt and txt != _('None'):
|
if key == _('Formats') and txt and txt != _('None'):
|
||||||
fmts = [x.strip() for x in txt.split(',')]
|
fmts = [x.strip() for x in txt.split(',')]
|
||||||
fmts = [u'<a href="format:%s:%s">%s</a>' % (data['id'], x, x) for x
|
fmts = [u'<a href="format:%s:%s">%s</a>' % (data['id'], x, x) for x
|
||||||
@ -52,53 +55,91 @@ def render_rows(data):
|
|||||||
|
|
||||||
# }}}
|
# }}}
|
||||||
|
|
||||||
class CoverView(QLabel): # {{{
|
class CoverView(QWidget): # {{{
|
||||||
|
|
||||||
|
|
||||||
def __init__(self, parent=None):
|
def __init__(self, parent=None):
|
||||||
QLabel.__init__(self, parent)
|
QWidget.__init__(self, parent)
|
||||||
self.animation = QPropertyAnimation(self, 'size', self)
|
self.setMaximumSize(QSize(120, 120))
|
||||||
|
self.setMinimumSize(QSize(120, 1))
|
||||||
|
self._current_pixmap_size = self.maximumSize()
|
||||||
|
|
||||||
|
self.animation = QPropertyAnimation(self, 'current_pixmap_size', self)
|
||||||
self.animation.setEasingCurve(QEasingCurve(QEasingCurve.OutExpo))
|
self.animation.setEasingCurve(QEasingCurve(QEasingCurve.OutExpo))
|
||||||
self.animation.setDuration(1000)
|
self.animation.setDuration(1000)
|
||||||
self.animation.setStartValue(QSize(0, 0))
|
self.animation.setStartValue(QSize(0, 0))
|
||||||
|
self.animation.valueChanged.connect(self.value_changed)
|
||||||
|
|
||||||
|
self.setSizePolicy(QSizePolicy.Expanding, QSizePolicy.Expanding)
|
||||||
|
|
||||||
self.default_pixmap = QPixmap(I('book.svg'))
|
self.default_pixmap = QPixmap(I('book.svg'))
|
||||||
self.max_width, self.max_height = 120, 120
|
self.pixmap = self.default_pixmap
|
||||||
self.setScaledContents(True)
|
self.pwidth = self.pheight = None
|
||||||
self.setPixmap(self.default_pixmap)
|
self.data = {}
|
||||||
|
|
||||||
|
self.do_layout()
|
||||||
|
|
||||||
|
def value_changed(self, val):
|
||||||
|
self.update()
|
||||||
|
|
||||||
|
def setCurrentPixmapSize(self, val):
|
||||||
|
self._current_pixmap_size = val
|
||||||
|
|
||||||
def do_layout(self):
|
def do_layout(self):
|
||||||
pixmap = self.pixmap()
|
pixmap = self.pixmap
|
||||||
pwidth, pheight = pixmap.width(), pixmap.height()
|
pwidth, pheight = pixmap.width(), pixmap.height()
|
||||||
width, height = fit_image(pwidth, pheight,
|
self.pwidth, self.pheight = fit_image(pwidth, pheight,
|
||||||
self.max_width, self.max_height)[1:]
|
self.maximumWidth(), self.maximumHeight())[1:]
|
||||||
self.setMaximumWidth(width)
|
self.current_pixmap_size = QSize(self.pwidth, self.pheight)
|
||||||
try:
|
self.animation.setEndValue(self.current_pixmap_size)
|
||||||
aspect_ratio = pwidth/float(pheight)
|
|
||||||
except ZeroDivisionError:
|
|
||||||
aspect_ratio = 1
|
|
||||||
mh = min(self.max_height, int(width/aspect_ratio))
|
|
||||||
self.setMaximumHeight(mh)
|
|
||||||
self.animation.setEndValue(self.maximumSize())
|
|
||||||
|
|
||||||
def setPixmap(self, pixmap):
|
|
||||||
QLabel.setPixmap(self, pixmap)
|
|
||||||
self.do_layout()
|
|
||||||
self.animation.start()
|
|
||||||
|
|
||||||
|
|
||||||
def sizeHint(self):
|
|
||||||
return QSize(self.maximumWidth(), self.maximumHeight())
|
|
||||||
|
|
||||||
def relayout(self, parent_size):
|
def relayout(self, parent_size):
|
||||||
self.max_height = int(parent_size.height()/3.)
|
self.setMaximumSize(parent_size.width(),
|
||||||
self.max_width = parent_size.width()
|
int(parent_size.height()/3.)+1)
|
||||||
|
self.resize(self.maximumSize())
|
||||||
|
self.animation.stop()
|
||||||
self.do_layout()
|
self.do_layout()
|
||||||
|
|
||||||
|
def sizeHint(self):
|
||||||
|
return self.maximumSize()
|
||||||
|
|
||||||
def show_data(self, data):
|
def show_data(self, data):
|
||||||
|
self.animation.stop()
|
||||||
|
if data.get('id', None) == self.data.get('id', None):
|
||||||
|
return
|
||||||
|
self.data = {'id':data.get('id', None)}
|
||||||
if data.has_key('cover'):
|
if data.has_key('cover'):
|
||||||
self.setPixmap(QPixmap.fromImage(data.pop('cover')))
|
self.pixmap = QPixmap.fromImage(data.pop('cover'))
|
||||||
|
if self.pixmap.isNull():
|
||||||
|
self.pixmap = self.default_pixmap
|
||||||
else:
|
else:
|
||||||
self.setPixmap(self.default_pixmap)
|
self.pixmap = self.default_pixmap
|
||||||
|
self.do_layout()
|
||||||
|
self.update()
|
||||||
|
self.animation.start()
|
||||||
|
|
||||||
|
def paintEvent(self, event):
|
||||||
|
canvas_size = self.rect()
|
||||||
|
width = self.current_pixmap_size.width()
|
||||||
|
extrax = canvas_size.width() - width
|
||||||
|
if extrax < 0: extrax = 0
|
||||||
|
x = int(extrax/2.)
|
||||||
|
height = self.current_pixmap_size.height()
|
||||||
|
extray = canvas_size.height() - height
|
||||||
|
if extray < 0: extray = 0
|
||||||
|
y = int(extray/2.)
|
||||||
|
target = QRect(x, y, width, height)
|
||||||
|
p = QPainter(self)
|
||||||
|
p.setRenderHints(QPainter.Antialiasing | QPainter.SmoothPixmapTransform)
|
||||||
|
p.drawPixmap(target, self.pixmap.scaled(target.size(),
|
||||||
|
Qt.KeepAspectRatio, Qt.SmoothTransformation))
|
||||||
|
p.end()
|
||||||
|
|
||||||
|
current_pixmap_size = pyqtProperty('QSize',
|
||||||
|
fget=lambda self: self._current_pixmap_size,
|
||||||
|
fset=setCurrentPixmapSize
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
# }}}
|
# }}}
|
||||||
|
|
||||||
@ -108,10 +149,12 @@ class Label(QLabel):
|
|||||||
link_clicked = pyqtSignal(object)
|
link_clicked = pyqtSignal(object)
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
|
QLabel.__init__(self)
|
||||||
self.setText('')
|
self.setText('')
|
||||||
self.setWordWrap(True)
|
self.setWordWrap(True)
|
||||||
self.linkActivated.connect(self.link_activated)
|
self.linkActivated.connect(self.link_activated)
|
||||||
self._link_clicked = False
|
self._link_clicked = False
|
||||||
|
self.setSizePolicy(QSizePolicy.Expanding, QSizePolicy.Expanding)
|
||||||
|
|
||||||
def link_activated(self, link):
|
def link_activated(self, link):
|
||||||
self._link_clicked = True
|
self._link_clicked = True
|
||||||
@ -133,13 +176,17 @@ class BookInfo(QScrollArea):
|
|||||||
self.setWidget(self.label)
|
self.setWidget(self.label)
|
||||||
self.link_clicked = self.label.link_clicked
|
self.link_clicked = self.label.link_clicked
|
||||||
self.mr = self.label.mr
|
self.mr = self.label.mr
|
||||||
|
self.setHorizontalScrollBarPolicy(Qt.ScrollBarAlwaysOff)
|
||||||
|
|
||||||
def show_data(self, data):
|
def show_data(self, data):
|
||||||
self.label.setText('')
|
self.label.setText('')
|
||||||
self.data = data.copy()
|
rows = render_rows(data)
|
||||||
rows = render_rows(self.data)
|
|
||||||
rows = u'\n'.join([u'<tr><td valign="top"><b>%s:</b></td><td valign="top">%s</td></tr>'%(k,t) for
|
rows = u'\n'.join([u'<tr><td valign="top"><b>%s:</b></td><td valign="top">%s</td></tr>'%(k,t) for
|
||||||
k, t in rows])
|
k, t in rows])
|
||||||
|
if _('Comments') in data and data[_('Comments')]:
|
||||||
|
comments = comments_to_html(data[_('Comments')])
|
||||||
|
rows += u'<tr><td colspan="2">%s</td></tr>'%comments
|
||||||
|
|
||||||
self.label.setText(u'<table>%s</table>'%rows)
|
self.label.setText(u'<table>%s</table>'%rows)
|
||||||
|
|
||||||
class BookDetails(QWidget):
|
class BookDetails(QWidget):
|
||||||
@ -188,13 +235,14 @@ class BookDetails(QWidget):
|
|||||||
|
|
||||||
self.setLayout(self._layout)
|
self.setLayout(self._layout)
|
||||||
self.cover_view = CoverView(self)
|
self.cover_view = CoverView(self)
|
||||||
self.cover_view.relayout()
|
self.cover_view.relayout(self.size())
|
||||||
self.resized.connect(self.cover_view.relayout, type=Qt.QueuedConnection)
|
self.resized.connect(self.cover_view.relayout, type=Qt.QueuedConnection)
|
||||||
self._layout.addWidget(self.cover_view)
|
self._layout.addWidget(self.cover_view, alignment=Qt.AlignHCenter)
|
||||||
self.book_info = BookInfo(self)
|
self.book_info = BookInfo(self)
|
||||||
self._layout.addWidget(self.book_info)
|
self._layout.addWidget(self.book_info)
|
||||||
self.book_info.link_clicked.connect(self._link_clicked)
|
self.book_info.link_clicked.connect(self._link_clicked)
|
||||||
self.book_info.mr.connect(self.mouseReleaseEvent)
|
self.book_info.mr.connect(self.mouseReleaseEvent)
|
||||||
|
self.setMinimumSize(QSize(190, 200))
|
||||||
|
|
||||||
def _link_clicked(self, link):
|
def _link_clicked(self, link):
|
||||||
typ, _, val = link.partition(':')
|
typ, _, val = link.partition(':')
|
||||||
@ -219,3 +267,4 @@ class BookDetails(QWidget):
|
|||||||
self.show_data({})
|
self.show_data({})
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -483,6 +483,14 @@ class ConfigDialog(ResizableDialog, Ui_Dialog):
|
|||||||
self.port.editingFinished.connect(self.check_port_value)
|
self.port.editingFinished.connect(self.check_port_value)
|
||||||
self.show_splash_screen.setChecked(gprefs.get('show_splash_screen',
|
self.show_splash_screen.setChecked(gprefs.get('show_splash_screen',
|
||||||
True))
|
True))
|
||||||
|
li = None
|
||||||
|
for i, z in enumerate([('wide', _('Wide')),
|
||||||
|
('narrow', _('Narrow'))]):
|
||||||
|
x, y = z
|
||||||
|
self.opt_gui_layout.addItem(y, QVariant(x))
|
||||||
|
if x == config['gui_layout']:
|
||||||
|
li = i
|
||||||
|
self.opt_gui_layout.setCurrentIndex(li)
|
||||||
|
|
||||||
def check_port_value(self, *args):
|
def check_port_value(self, *args):
|
||||||
port = self.port.value()
|
port = self.port.value()
|
||||||
@ -863,6 +871,8 @@ class ConfigDialog(ResizableDialog, Ui_Dialog):
|
|||||||
if self.viewer.item(i).checkState() == Qt.Checked:
|
if self.viewer.item(i).checkState() == Qt.Checked:
|
||||||
fmts.append(str(self.viewer.item(i).text()))
|
fmts.append(str(self.viewer.item(i).text()))
|
||||||
config['internally_viewed_formats'] = fmts
|
config['internally_viewed_formats'] = fmts
|
||||||
|
val = self.opt_gui_layout.itemData(self.opt_gui_layout.currentIndex()).toString()
|
||||||
|
config['gui_layout'] = unicode(val)
|
||||||
|
|
||||||
if not path or not os.path.exists(path) or not os.path.isdir(path):
|
if not path or not os.path.exists(path) or not os.path.isdir(path):
|
||||||
d = error_dialog(self, _('Invalid database location'),
|
d = error_dialog(self, _('Invalid database location'),
|
||||||
|
@ -89,8 +89,8 @@
|
|||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>608</width>
|
<width>604</width>
|
||||||
<height>683</height>
|
<height>679</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<layout class="QGridLayout" name="gridLayout_7">
|
<layout class="QGridLayout" name="gridLayout_7">
|
||||||
@ -332,7 +332,7 @@
|
|||||||
</widget>
|
</widget>
|
||||||
<widget class="QWidget" name="page">
|
<widget class="QWidget" name="page">
|
||||||
<layout class="QGridLayout" name="gridLayout_8">
|
<layout class="QGridLayout" name="gridLayout_8">
|
||||||
<item row="0" column="0">
|
<item row="1" column="0">
|
||||||
<widget class="QCheckBox" name="roman_numerals">
|
<widget class="QCheckBox" name="roman_numerals">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Use &Roman numerals for series number</string>
|
<string>Use &Roman numerals for series number</string>
|
||||||
@ -342,35 +342,35 @@
|
|||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="1" column="0">
|
<item row="2" column="0">
|
||||||
<widget class="QCheckBox" name="systray_icon">
|
<widget class="QCheckBox" name="systray_icon">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Enable system &tray icon (needs restart)</string>
|
<string>Enable system &tray icon (needs restart)</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="1" column="1">
|
<item row="2" column="1">
|
||||||
<widget class="QCheckBox" name="systray_notifications">
|
<widget class="QCheckBox" name="systray_notifications">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Show &notifications in system tray</string>
|
<string>Show &notifications in system tray</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="2" column="0" colspan="2">
|
<item row="3" column="0" colspan="2">
|
||||||
<widget class="QCheckBox" name="show_splash_screen">
|
<widget class="QCheckBox" name="show_splash_screen">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Show &splash screen at startup</string>
|
<string>Show &splash screen at startup</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="3" column="0" colspan="2">
|
<item row="4" column="0" colspan="2">
|
||||||
<widget class="QCheckBox" name="separate_cover_flow">
|
<widget class="QCheckBox" name="separate_cover_flow">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Show cover &browser in a separate window (needs restart)</string>
|
<string>Show cover &browser in a separate window (needs restart)</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="4" column="0">
|
<item row="5" column="0">
|
||||||
<widget class="QCheckBox" name="search_as_you_type">
|
<widget class="QCheckBox" name="search_as_you_type">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Search as you type</string>
|
<string>Search as you type</string>
|
||||||
@ -380,21 +380,21 @@
|
|||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="5" column="0" colspan="2">
|
<item row="6" column="0" colspan="2">
|
||||||
<widget class="QCheckBox" name="sync_news">
|
<widget class="QCheckBox" name="sync_news">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Automatically send downloaded &news to ebook reader</string>
|
<string>Automatically send downloaded &news to ebook reader</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="6" column="0" colspan="2">
|
<item row="7" column="0" colspan="2">
|
||||||
<widget class="QCheckBox" name="delete_news">
|
<widget class="QCheckBox" name="delete_news">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>&Delete news from library when it is automatically sent to reader</string>
|
<string>&Delete news from library when it is automatically sent to reader</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="7" column="0" colspan="2">
|
<item row="8" column="0" colspan="2">
|
||||||
<layout class="QHBoxLayout" name="horizontalLayout">
|
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||||
<item>
|
<item>
|
||||||
<widget class="QLabel" name="label_6">
|
<widget class="QLabel" name="label_6">
|
||||||
@ -411,7 +411,7 @@
|
|||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
<item row="8" column="0" colspan="2">
|
<item row="9" column="0" colspan="2">
|
||||||
<widget class="QGroupBox" name="groupBox_2">
|
<widget class="QGroupBox" name="groupBox_2">
|
||||||
<property name="title">
|
<property name="title">
|
||||||
<string>Toolbar</string>
|
<string>Toolbar</string>
|
||||||
@ -459,7 +459,7 @@
|
|||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="9" column="0" colspan="2">
|
<item row="10" column="0" colspan="2">
|
||||||
<layout class="QHBoxLayout" name="horizontalLayout_7">
|
<layout class="QHBoxLayout" name="horizontalLayout_7">
|
||||||
<item>
|
<item>
|
||||||
<widget class="QGroupBox" name="groupBox">
|
<widget class="QGroupBox" name="groupBox">
|
||||||
@ -625,6 +625,26 @@
|
|||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
|
<item row="0" column="0">
|
||||||
|
<widget class="QLabel" name="label_17">
|
||||||
|
<property name="text">
|
||||||
|
<string>User Interface &layout (needs restart):</string>
|
||||||
|
</property>
|
||||||
|
<property name="buddy">
|
||||||
|
<cstring>opt_gui_layout</cstring>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="0" column="1">
|
||||||
|
<widget class="QComboBox" name="opt_gui_layout">
|
||||||
|
<property name="maximumSize">
|
||||||
|
<size>
|
||||||
|
<width>250</width>
|
||||||
|
<height>16777215</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QWidget" name="page_6">
|
<widget class="QWidget" name="page_6">
|
||||||
|
@ -17,6 +17,8 @@ from calibre.gui2 import config, is_widescreen
|
|||||||
from calibre.gui2.library.views import BooksView, DeviceBooksView
|
from calibre.gui2.library.views import BooksView, DeviceBooksView
|
||||||
from calibre.gui2.widgets import Splitter
|
from calibre.gui2.widgets import Splitter
|
||||||
from calibre.gui2.tag_view import TagBrowserWidget
|
from calibre.gui2.tag_view import TagBrowserWidget
|
||||||
|
from calibre.gui2.status import StatusBar, HStatusBar
|
||||||
|
from calibre.gui2.book_details import BookDetails
|
||||||
|
|
||||||
_keep_refs = []
|
_keep_refs = []
|
||||||
|
|
||||||
@ -290,9 +292,9 @@ class LibraryViewMixin(object): # {{{
|
|||||||
class LibraryWidget(Splitter): # {{{
|
class LibraryWidget(Splitter): # {{{
|
||||||
|
|
||||||
def __init__(self, parent):
|
def __init__(self, parent):
|
||||||
orientation = Qt.Vertical if config['gui_layout'] == 'narrow' and \
|
orientation = Qt.Vertical
|
||||||
not is_widescreen() else Qt.Horizontal
|
if config['gui_layout'] == 'narrow':
|
||||||
#orientation = Qt.Vertical
|
orientation = Qt.Horizontal if is_widescreen() else Qt.Vertical
|
||||||
idx = 0 if orientation == Qt.Vertical else 1
|
idx = 0 if orientation == Qt.Vertical else 1
|
||||||
size = 300 if orientation == Qt.Vertical else 550
|
size = 300 if orientation == Qt.Vertical else 550
|
||||||
Splitter.__init__(self, 'cover_browser_splitter', _('Cover Browser'),
|
Splitter.__init__(self, 'cover_browser_splitter', _('Cover Browser'),
|
||||||
@ -360,7 +362,6 @@ class LayoutMixin(object): # {{{
|
|||||||
self.setWindowTitle(__appname__)
|
self.setWindowTitle(__appname__)
|
||||||
|
|
||||||
if config['gui_layout'] == 'narrow':
|
if config['gui_layout'] == 'narrow':
|
||||||
from calibre.gui2.status import StatusBar
|
|
||||||
self.status_bar = self.book_details = StatusBar(self)
|
self.status_bar = self.book_details = StatusBar(self)
|
||||||
self.stack = Stack(self)
|
self.stack = Stack(self)
|
||||||
self.bd_splitter = Splitter('book_details_splitter',
|
self.bd_splitter = Splitter('book_details_splitter',
|
||||||
@ -375,8 +376,28 @@ class LayoutMixin(object): # {{{
|
|||||||
l.addWidget(self.sidebar)
|
l.addWidget(self.sidebar)
|
||||||
self.bd_splitter.addWidget(self._layout_mem[0])
|
self.bd_splitter.addWidget(self._layout_mem[0])
|
||||||
self.bd_splitter.addWidget(self.status_bar)
|
self.bd_splitter.addWidget(self.status_bar)
|
||||||
self.bd_splitter.setCollapsible((self.bd_splitter.side_index+1)%2, False)
|
self.bd_splitter.setCollapsible(self.bd_splitter.other_index, False)
|
||||||
self.centralwidget.layout().addWidget(self.bd_splitter)
|
self.centralwidget.layout().addWidget(self.bd_splitter)
|
||||||
|
else:
|
||||||
|
self.status_bar = HStatusBar(self)
|
||||||
|
self.setStatusBar(self.status_bar)
|
||||||
|
self.bd_splitter = Splitter('book_details_splitter',
|
||||||
|
_('Book Details'), I('book.svg'), initial_side_size=200,
|
||||||
|
orientation=Qt.Horizontal, parent=self, side_index=1)
|
||||||
|
self.stack = Stack(self)
|
||||||
|
self.bd_splitter.addWidget(self.stack)
|
||||||
|
self.book_details = BookDetails(self)
|
||||||
|
self.bd_splitter.addWidget(self.book_details)
|
||||||
|
self.bd_splitter.setCollapsible(self.bd_splitter.other_index, False)
|
||||||
|
self.bd_splitter.setSizePolicy(QSizePolicy(QSizePolicy.Expanding,
|
||||||
|
QSizePolicy.Expanding))
|
||||||
|
self.centralwidget.layout().addWidget(self.bd_splitter)
|
||||||
|
|
||||||
|
for x in ('cb', 'tb', 'bd'):
|
||||||
|
button = getattr(self, x+'_splitter').button
|
||||||
|
button.setIconSize(QSize(22, 22))
|
||||||
|
self.status_bar.addPermanentWidget(button)
|
||||||
|
self.status_bar.addPermanentWidget(self.jobs_button)
|
||||||
|
|
||||||
def finalize_layout(self):
|
def finalize_layout(self):
|
||||||
m = self.library_view.model()
|
m = self.library_view.model()
|
||||||
|
@ -274,11 +274,15 @@ class JobsButton(QFrame):
|
|||||||
|
|
||||||
def __init__(self, horizontal=False, size=48, parent=None):
|
def __init__(self, horizontal=False, size=48, parent=None):
|
||||||
QFrame.__init__(self, parent)
|
QFrame.__init__(self, parent)
|
||||||
|
if horizontal:
|
||||||
|
size = 24
|
||||||
self.pi = ProgressIndicator(self, size)
|
self.pi = ProgressIndicator(self, size)
|
||||||
self._jobs = QLabel('<b>'+_('Jobs:')+' 0')
|
self._jobs = QLabel('<b>'+_('Jobs:')+' 0')
|
||||||
|
self._jobs.mouseReleaseEvent = self.mouseReleaseEvent
|
||||||
|
|
||||||
if horizontal:
|
if horizontal:
|
||||||
self.setLayout(QHBoxLayout())
|
self.setLayout(QHBoxLayout())
|
||||||
|
self.layout().setDirection(self.layout().RightToLeft)
|
||||||
else:
|
else:
|
||||||
self.setLayout(QVBoxLayout())
|
self.setLayout(QVBoxLayout())
|
||||||
self._jobs.setAlignment(Qt.AlignHCenter|Qt.AlignBottom)
|
self._jobs.setAlignment(Qt.AlignHCenter|Qt.AlignBottom)
|
||||||
|
@ -554,7 +554,7 @@ void PictureFlowPrivate::resize(int w, int h)
|
|||||||
if (h < 10) h = 10;
|
if (h < 10) h = 10;
|
||||||
slideHeight = int(float(h)/REFLECTION_FACTOR);
|
slideHeight = int(float(h)/REFLECTION_FACTOR);
|
||||||
slideWidth = int(float(slideHeight) * 2/3.);
|
slideWidth = int(float(slideHeight) * 2/3.);
|
||||||
fontSize = MAX(int(h/20.), 12);
|
fontSize = MAX(int(h/15.), 12);
|
||||||
recalc(w, h);
|
recalc(w, h);
|
||||||
resetSlides();
|
resetSlides();
|
||||||
triggerRender();
|
triggerRender();
|
||||||
|
@ -152,7 +152,7 @@ class BookInfoDisplay(QWidget):
|
|||||||
k, t in rows])
|
k, t in rows])
|
||||||
if _('Comments') in self.data:
|
if _('Comments') in self.data:
|
||||||
comments = comments_to_html(self.data[_('Comments')])
|
comments = comments_to_html(self.data[_('Comments')])
|
||||||
comments = '<b>Comments:</b>'+comments
|
comments = ('<b>%s:</b>'%_('Comments'))+comments
|
||||||
left_pane = u'<table>%s</table>'%rows
|
left_pane = u'<table>%s</table>'%rows
|
||||||
right_pane = u'<div>%s</div>'%comments
|
right_pane = u'<div>%s</div>'%comments
|
||||||
self.book_data.setText(u'<table><tr><td valign="top" '
|
self.book_data.setText(u'<table><tr><td valign="top" '
|
||||||
@ -197,6 +197,9 @@ class BookDetailsInterface(object):
|
|||||||
def show_data(self, data):
|
def show_data(self, data):
|
||||||
raise NotImplementedError()
|
raise NotImplementedError()
|
||||||
|
|
||||||
|
class HStatusBar(QStatusBar, StatusBarInterface):
|
||||||
|
pass
|
||||||
|
|
||||||
class StatusBar(QStatusBar, StatusBarInterface, BookDetailsInterface):
|
class StatusBar(QStatusBar, StatusBarInterface, BookDetailsInterface):
|
||||||
|
|
||||||
files_dropped = pyqtSignal(object, object)
|
files_dropped = pyqtSignal(object, object)
|
||||||
|
@ -126,7 +126,8 @@ class Main(MainWindow, Ui_MainWindow, DeviceMixin, ToolbarMixin, # {{{
|
|||||||
# Jobs Button {{{
|
# Jobs Button {{{
|
||||||
self.job_manager = JobManager()
|
self.job_manager = JobManager()
|
||||||
self.jobs_dialog = JobsDialog(self, self.job_manager)
|
self.jobs_dialog = JobsDialog(self, self.job_manager)
|
||||||
self.jobs_button = JobsButton()
|
self.jobs_button = JobsButton(horizontal=config['gui_layout'] !=
|
||||||
|
'narrow')
|
||||||
self.jobs_button.initialize(self.jobs_dialog, self.job_manager)
|
self.jobs_button.initialize(self.jobs_dialog, self.job_manager)
|
||||||
# }}}
|
# }}}
|
||||||
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user