home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.6)
-
- __license__ = 'GPL v3'
- __copyright__ = '2010, Kovid Goyal <kovid@kovidgoyal.net>'
- __docformat__ = 'restructuredtext en'
- from calibre.gui2.preferences import ConfigWidgetBase, test_widget
- from calibre.gui2.preferences.look_feel_ui import Ui_Form
- from calibre.gui2 import config, gprefs
- from calibre.utils.localization import available_translations, get_language, get_lang
- from calibre.utils.config import prefs
-
- class ConfigWidget(ConfigWidgetBase, Ui_Form):
-
- def genesis(self, gui):
- self.gui = gui
- r = self.register
- r('gui_layout', config, restart_required = True, choices = [
- (_('Wide'), 'wide'),
- (_('Narrow'), 'narrow')])
- r('cover_flow_queue_length', config, restart_required = True)
- lang = get_lang()
- if lang is None or lang not in available_translations():
- lang = 'en'
-
- items = _[1]
- items.sort(cmp = (lambda x, y: cmp(x[1].lower(), y[1].lower())))
- choices = [ (y, x) for x, y in items ]
- choices = [
- (get_language(lang), lang)] + choices
- r('language', prefs, choices = choices, restart_required = True)
- r('show_avg_rating', config)
- r('disable_animations', config)
- r('systray_icon', config, restart_required = True)
- r('show_splash_screen', gprefs)
- r('disable_tray_notification', config)
- r('use_roman_numerals_for_series_number', config)
- r('separate_cover_flow', config, restart_required = True)
- r('search_as_you_type', config)
- r('show_child_bar', gprefs)
- choices = [
- (_('Small'), 'small'),
- (_('Medium'), 'medium'),
- (_('Large'), 'large')]
- r('toolbar_icon_size', gprefs, choices = choices)
- choices = [
- (_('Automatic'), 'auto'),
- (_('Always'), 'always'),
- (_('Never'), 'never')]
- r('toolbar_text', gprefs, choices = choices)
-
-
- def refresh_gui(self, gui):
- gui.search.search_as_you_type(config['search_as_you_type'])
-
-
- if __name__ == '__main__':
- from PyQt4.Qt import QApplication
- app = QApplication([])
- test_widget('Interface', 'Look & Feel')
-
-