home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.6)
-
- __license__ = 'GPL 3'
- __copyright__ = '2009, John Schember <john@nachtimwald.com>'
- __docformat__ = 'restructuredtext en'
- from calibre.gui2.convert.rb_output_ui import Ui_Form
- from calibre.gui2.convert import Widget
- format_model = None
-
- class PluginWidget(Widget, Ui_Form):
- TITLE = _('RB Output')
- HELP = _('Options specific to') + ' RB ' + _('output')
-
- def __init__(self, parent, get_option, get_help, db = None, book_id = None):
- Widget.__init__(self, parent, 'rb_output', [
- 'inline_toc'])
- self.db = db
- self.book_id = book_id
- self.initialize_options(get_option, get_help, db, book_id)
-
-
-