home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.6)
-
- from __future__ import with_statement
- __license__ = 'GPL v3'
- __copyright__ = '2009, Kovid Goyal <kovid@kovidgoyal.net>'
- __docformat__ = 'restructuredtext en'
- from PyQt4.Qt import SIGNAL, QVariant
- from calibre.gui2.convert.look_and_feel_ui import Ui_Form
- from calibre.gui2.convert import Widget
-
- class LookAndFeelWidget(Widget, Ui_Form):
- TITLE = _('Look & Feel')
- ICON = I('lookfeel.svg')
- HELP = _('Control the look and feel of the output')
-
- def __init__(self, parent, get_option, get_help, db = None, book_id = None):
- Widget.__init__(self, parent, 'look_and_feel', [
- 'change_justification',
- 'extra_css',
- 'base_font_size',
- 'font_size_mapping',
- 'line_height',
- 'linearize_tables',
- 'disable_font_rescaling',
- 'insert_blank_line',
- 'remove_paragraph_spacing',
- 'remove_paragraph_spacing_indent_size',
- 'input_encoding',
- 'asciiize',
- 'keep_ligatures'])
- for val, text in [
- ('original', _('Original')),
- ('left', _('Left align')),
- ('justify', _('Justify text'))]:
- self.opt_change_justification.addItem(text, QVariant(val))
-
- self.db = db
- self.book_id = book_id
- self.initialize_options(get_option, get_help, db, book_id)
- self.opt_disable_font_rescaling.toggle()
- self.opt_disable_font_rescaling.toggle()
- self.connect(self.button_font_key, SIGNAL('clicked()'), self.font_key_wizard)
- self.opt_remove_paragraph_spacing.toggle()
- self.opt_remove_paragraph_spacing.toggle()
-
-
- def get_value_handler(self, g):
- if g is self.opt_change_justification:
- ans = unicode(g.itemData(g.currentIndex()).toString())
- return ans
- return Widget.get_value_handler(self, g)
-
-
- def set_value_handler(self, g, val):
- if g is self.opt_change_justification:
- for i in range(g.count()):
- c = unicode(g.itemData(i).toString())
- if val == c:
- g.setCurrentIndex(i)
- break
- continue
-
- return True
-
-
- def font_key_wizard(self):
- FontKeyChooser = FontKeyChooser
- import calibre.gui2.convert.font_key
- d = FontKeyChooser(self, self.opt_base_font_size.value(), unicode(self.opt_font_size_mapping.text()).strip())
-
-
-