home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.6)
-
- from PyQt4 import QtCore, QtGui
-
- try:
- _fromUtf8 = QtCore.QString.fromUtf8
- except AttributeError:
-
- _fromUtf8 = lambda s: s
-
-
- class Ui_Form(object):
-
- def setupUi(self, Form):
- Form.setObjectName(_fromUtf8('Form'))
- Form.resize(400, 300)
- self.gridLayout = QtGui.QGridLayout(Form)
- self.gridLayout.setObjectName(_fromUtf8('gridLayout'))
- spacerItem = QtGui.QSpacerItem(20, 246, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Expanding)
- self.gridLayout.addItem(spacerItem, 2, 0, 1, 1)
- self.opt_inline_toc = QtGui.QCheckBox(Form)
- self.opt_inline_toc.setObjectName(_fromUtf8('opt_inline_toc'))
- self.gridLayout.addWidget(self.opt_inline_toc, 0, 0, 1, 1)
- self.opt_sectionize_chapters = QtGui.QCheckBox(Form)
- self.opt_sectionize_chapters.setObjectName(_fromUtf8('opt_sectionize_chapters'))
- self.gridLayout.addWidget(self.opt_sectionize_chapters, 1, 0, 1, 1)
- self.retranslateUi(Form)
- QtCore.QMetaObject.connectSlotsByName(Form)
-
-
- def retranslateUi(self, Form):
- Form.setWindowTitle(_('Form'))
- self.opt_inline_toc.setText(_('&Inline TOC'))
- self.opt_sectionize_chapters.setText(_('Sectionize Chapters (Use with care!)'))
-
-
-