Start work on page layout preferences UI

This commit is contained in:
Kovid Goyal 2016-09-25 19:33:38 +05:30
parent 01fb47f880
commit 2401335784
2 changed files with 51 additions and 0 deletions

View File

@ -0,0 +1,47 @@
# vim:fileencoding=utf-8
# License: GPL v3 Copyright: 2016, Kovid Goyal <kovid at kovidgoyal.net>
from __python__ import hash_literals, bound_methods
from gettext import gettext as _
from dom import add_extra_css, build_rule, unique_id, element
from book_list.globals import get_session_data
from elementmaker import E
CONTAINER = unique_id('reader-page-layout')
MARGINS = unique_id('reader-page-margins')
add_extra_css(def():
sel = '#' + MARGINS
style = build_rule(sel, margin_left='2em', margin_top='-1em')
style += build_rule(sel + ' td', padding='1ex 1em')
return style
)
def create_layout_panel(container):
container.appendChild(E.div(id=CONTAINER))
container = container.lastChild
sd = get_session_data()
container.appendChild(E.p(_('Change the page margins below'), style='margin:1ex 1em; padding: 1ex 0'))
container.appendChild(E.table(id=MARGINS))
labels = {'top':_('Top:'), 'bottom':_('Bottom:'), 'left':_('Left:'), 'right':_('Right:')}
for which in 'top bottom left right'.split(' '):
container.lastChild.appendChild(E.tr(
E.td(labels[which]), E.td(E.input(type='number', min='0', step='1', name=which, value=str(sd.get('margin_'+which))))
))
develop = create_layout_panel
def commit_layout(onchange, container):
was_changed = False
sd = get_session_data()
for which in 'top bottom left right'.split(' '):
i = element(MARGINS, '[name={}]'.format(which))
try:
val = int(i.value)
except:
continue
if val is not sd.get('margin_' + which):
was_changed = True
sd.set('margin_' + which, val)
if was_changed:
onchange()

View File

@ -7,6 +7,7 @@ from dom import svgicon, ensure_id, clear
from elementmaker import E
from book_list.item_list import build_list, create_item
from read_book.prefs.colors import create_colors_panel, commit_colors
from read_book.prefs.layout import create_layout_panel, commit_layout
class Prefs:
@ -70,7 +71,10 @@ class Prefs:
def display_layout(self, container):
document.getElementById(self.title_id).textContent = _('Page Layout')
create_layout_panel(container)
def close_layout(self):
commit_layout(self.onchange, self.container)
def create_prefs_panel(container, close_func, on_change):
Prefs(container, close_func, on_change)