mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-08 18:54:09 -04:00
PDF Output: Add separate, pdf specific, page margin settings that override the common settings
This commit is contained in:
parent
98f4712f0d
commit
9aea1e6fc8
@ -44,25 +44,25 @@ class DOCXOutput(OutputFormatPlugin):
|
||||
OptionRecommendation(name='docx_page_margin_left', recommended_value=72.0,
|
||||
level=OptionRecommendation.LOW,
|
||||
help=_('The size of the left page margin, in pts. Default is 72pt.'
|
||||
' Overrides the main left page margin setting.')
|
||||
' Overrides the common left page margin setting.')
|
||||
),
|
||||
|
||||
OptionRecommendation(name='docx_page_margin_top', recommended_value=72.0,
|
||||
level=OptionRecommendation.LOW,
|
||||
help=_('The size of the top page margin, in pts. Default is 72pt.'
|
||||
' Overrides the main top page margin setting, unless set to zero.')
|
||||
' Overrides the common top page margin setting, unless set to zero.')
|
||||
),
|
||||
|
||||
OptionRecommendation(name='docx_page_margin_right', recommended_value=72.0,
|
||||
level=OptionRecommendation.LOW,
|
||||
help=_('The size of the right page margin, in pts. Default is 72pt.'
|
||||
' Overrides the main right page margin setting, unless set to zero.')
|
||||
' Overrides the common right page margin setting, unless set to zero.')
|
||||
),
|
||||
|
||||
OptionRecommendation(name='docx_page_margin_bottom', recommended_value=72.0,
|
||||
level=OptionRecommendation.LOW,
|
||||
help=_('The size of the bottom page margin, in pts. Default is 72pt.'
|
||||
' Overrides the main bottom page margin setting, unless set to zero.')
|
||||
' Overrides the common bottom page margin setting, unless set to zero.')
|
||||
),
|
||||
|
||||
}
|
||||
|
@ -117,7 +117,31 @@ class PDFOutput(OutputFormatPlugin):
|
||||
OptionRecommendation(name='toc_title', recommended_value=None,
|
||||
help=_('Title for generated table of contents.')
|
||||
),
|
||||
])
|
||||
|
||||
OptionRecommendation(name='pdf_page_margin_left', recommended_value=72.0,
|
||||
level=OptionRecommendation.LOW,
|
||||
help=_('The size of the left page margin, in pts. Default is 72pt.'
|
||||
' Overrides the common left page margin setting.')
|
||||
),
|
||||
|
||||
OptionRecommendation(name='pdf_page_margin_top', recommended_value=72.0,
|
||||
level=OptionRecommendation.LOW,
|
||||
help=_('The size of the top page margin, in pts. Default is 72pt.'
|
||||
' Overrides the common top page margin setting, unless set to zero.')
|
||||
),
|
||||
|
||||
OptionRecommendation(name='pdf_page_margin_right', recommended_value=72.0,
|
||||
level=OptionRecommendation.LOW,
|
||||
help=_('The size of the right page margin, in pts. Default is 72pt.'
|
||||
' Overrides the common right page margin setting, unless set to zero.')
|
||||
),
|
||||
|
||||
OptionRecommendation(name='pdf_page_margin_bottom', recommended_value=72.0,
|
||||
level=OptionRecommendation.LOW,
|
||||
help=_('The size of the bottom page margin, in pts. Default is 72pt.'
|
||||
' Overrides the common bottom page margin setting, unless set to zero.')
|
||||
),
|
||||
])
|
||||
|
||||
def convert(self, oeb_book, output_path, input_plugin, opts, log):
|
||||
from calibre.gui2 import must_use_qt, load_builtin_fonts
|
||||
|
@ -185,10 +185,16 @@ class PDFWriter(QObject):
|
||||
opts = self.opts
|
||||
page_size = get_page_size(self.opts)
|
||||
xdpi, ydpi = self.view.logicalDpiX(), self.view.logicalDpiY()
|
||||
|
||||
def margin(which):
|
||||
val = getattr(opts, 'pdf_page_margin_' + which)
|
||||
if val == 0.0:
|
||||
val = getattr(opts, 'margin_' + which)
|
||||
return val
|
||||
ml, mr, mt, mb = map(margin, 'left right top bottom'.split())
|
||||
# We cannot set the side margins in the webview as there is no right
|
||||
# margin for the last page (the margins are implemented with
|
||||
# -webkit-column-gap)
|
||||
ml, mr = opts.margin_left, opts.margin_right
|
||||
self.doc = PdfDevice(out_stream, page_size=page_size, left_margin=ml,
|
||||
top_margin=0, right_margin=mr, bottom_margin=0,
|
||||
xdpi=xdpi, ydpi=ydpi, errors=self.log.error,
|
||||
@ -204,18 +210,18 @@ class PDFWriter(QObject):
|
||||
if self.header:
|
||||
self.header = self.header.strip()
|
||||
min_margin = 1.5 * opts._final_base_font_size
|
||||
if self.footer and opts.margin_bottom < min_margin:
|
||||
if self.footer and mb < min_margin:
|
||||
self.log.warn('Bottom margin is too small for footer, increasing it to %.1fpts' % min_margin)
|
||||
opts.margin_bottom = min_margin
|
||||
if self.header and opts.margin_top < min_margin:
|
||||
mb = min_margin
|
||||
if self.header and mt < min_margin:
|
||||
self.log.warn('Top margin is too small for header, increasing it to %.1fpts' % min_margin)
|
||||
opts.margin_top = min_margin
|
||||
mt = min_margin
|
||||
|
||||
self.page.setViewportSize(QSize(self.doc.width(), self.doc.height()))
|
||||
self.render_queue = items
|
||||
self.total_items = len(items)
|
||||
|
||||
mt, mb = map(self.doc.to_px, (opts.margin_top, opts.margin_bottom))
|
||||
mt, mb = map(self.doc.to_px, (mt, mb))
|
||||
self.margin_top, self.margin_bottom = map(lambda x:int(floor(x)), (mt, mb))
|
||||
|
||||
self.painter = QPainter(self.doc)
|
||||
|
@ -4,6 +4,9 @@ __license__ = 'GPL 3'
|
||||
__copyright__ = '2009, John Schember <john@nachtimwald.com>'
|
||||
__docformat__ = 'restructuredtext en'
|
||||
|
||||
|
||||
from PyQt5.Qt import QHBoxLayout, QFormLayout, QDoubleSpinBox
|
||||
|
||||
from calibre.gui2.convert.pdf_output_ui import Ui_Form
|
||||
from calibre.gui2.convert import Widget
|
||||
from calibre.utils.localization import localize_user_manual_link
|
||||
@ -26,6 +29,7 @@ class PluginWidget(Widget, Ui_Form):
|
||||
'pdf_sans_family', 'pdf_mono_family', 'pdf_standard_font',
|
||||
'pdf_default_font_size', 'pdf_mono_font_size', 'pdf_page_numbers',
|
||||
'pdf_footer_template', 'pdf_header_template', 'pdf_add_toc', 'toc_title',
|
||||
'pdf_page_margin_left', 'pdf_page_margin_top', 'pdf_page_margin_right', 'pdf_page_margin_bottom',
|
||||
])
|
||||
self.db, self.book_id = db, book_id
|
||||
try:
|
||||
@ -45,3 +49,20 @@ class PluginWidget(Widget, Ui_Form):
|
||||
self.layout().setFieldGrowthPolicy(self.layout().ExpandingFieldsGrow)
|
||||
self.template_box.layout().setFieldGrowthPolicy(self.layout().AllNonFixedFieldsGrow)
|
||||
|
||||
def setupUi(self, *a):
|
||||
Ui_Form.setupUi(self, *a)
|
||||
h = self.page_margins_box.h = QHBoxLayout(self.page_margins_box)
|
||||
l = self.page_margins_box.l = QFormLayout()
|
||||
r = self.page_margins_box.r = QFormLayout()
|
||||
h.addLayout(l), h.addLayout(r)
|
||||
|
||||
def margin(which):
|
||||
w = QDoubleSpinBox(self)
|
||||
w.setRange(-100, 500), w.setSuffix(' pt'), w.setDecimals(1)
|
||||
setattr(self, 'opt_pdf_page_margin_' + which, w)
|
||||
return w
|
||||
|
||||
l.addRow(_('&Left:'), margin('left'))
|
||||
l.addRow(_('&Right:'), margin('right'))
|
||||
r.addRow(_('&Top:'), margin('top'))
|
||||
r.addRow(_('&Bottom:'), margin('bottom'))
|
||||
|
@ -104,7 +104,7 @@
|
||||
<item row="10" column="0">
|
||||
<widget class="QLabel" name="label_4">
|
||||
<property name="text">
|
||||
<string>Se&rif family:</string>
|
||||
<string>Serif famil&y:</string>
|
||||
</property>
|
||||
<property name="buddy">
|
||||
<cstring>opt_pdf_serif_family</cstring>
|
||||
@ -117,7 +117,7 @@
|
||||
<item row="11" column="0">
|
||||
<widget class="QLabel" name="label_5">
|
||||
<property name="text">
|
||||
<string>&Sans family:</string>
|
||||
<string>Sans fami&ly:</string>
|
||||
</property>
|
||||
<property name="buddy">
|
||||
<cstring>opt_pdf_sans_family</cstring>
|
||||
@ -187,7 +187,7 @@
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="16" column="0" colspan="2">
|
||||
<item row="17" column="0" colspan="2">
|
||||
<widget class="QGroupBox" name="template_box">
|
||||
<property name="title">
|
||||
<string>Page headers and footers</string>
|
||||
@ -255,6 +255,13 @@
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="16" column="0" colspan="2">
|
||||
<widget class="QGroupBox" name="page_margins_box">
|
||||
<property name="title">
|
||||
<string>Page margins</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<resources/>
|
||||
|
Loading…
x
Reference in New Issue
Block a user