home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2011 January / maximum-cd-2011-01.iso / DiscContents / calibre-0.7.26.msi / file_1201 (.txt) < prev    next >
Encoding:
Python Compiled Bytecode  |  2010-10-31  |  1.7 KB  |  34 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.6)
  3.  
  4. from PyQt4 import QtCore, QtGui
  5.  
  6. try:
  7.     _fromUtf8 = QtCore.QString.fromUtf8
  8. except AttributeError:
  9.     
  10.     _fromUtf8 = lambda s: s
  11.  
  12.  
  13. class Ui_Form(object):
  14.     
  15.     def setupUi(self, Form):
  16.         Form.setObjectName(_fromUtf8('Form'))
  17.         Form.resize(400, 300)
  18.         self.gridLayout = QtGui.QGridLayout(Form)
  19.         self.gridLayout.setObjectName(_fromUtf8('gridLayout'))
  20.         spacerItem = QtGui.QSpacerItem(20, 213, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Expanding)
  21.         self.gridLayout.addItem(spacerItem, 1, 0, 1, 1)
  22.         self.opt_no_inline_fb2_toc = QtGui.QCheckBox(Form)
  23.         self.opt_no_inline_fb2_toc.setObjectName(_fromUtf8('opt_no_inline_fb2_toc'))
  24.         self.gridLayout.addWidget(self.opt_no_inline_fb2_toc, 0, 0, 1, 1)
  25.         self.retranslateUi(Form)
  26.         QtCore.QMetaObject.connectSlotsByName(Form)
  27.  
  28.     
  29.     def retranslateUi(self, Form):
  30.         Form.setWindowTitle(_('Form'))
  31.         self.opt_no_inline_fb2_toc.setText(_('Do not insert a &Table of Contents at the beginning of the book.'))
  32.  
  33.  
  34.