home *** CD-ROM | disk | FTP | other *** search
Wrap
# 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(470, 300) self.gridLayout = QtGui.QGridLayout(Form) self.gridLayout.setObjectName(_fromUtf8('gridLayout')) self.opt_single_line_paras = QtGui.QCheckBox(Form) self.opt_single_line_paras.setObjectName(_fromUtf8('opt_single_line_paras')) self.gridLayout.addWidget(self.opt_single_line_paras, 0, 0, 1, 1) self.opt_print_formatted_paras = QtGui.QCheckBox(Form) self.opt_print_formatted_paras.setObjectName(_fromUtf8('opt_print_formatted_paras')) self.gridLayout.addWidget(self.opt_print_formatted_paras, 1, 0, 1, 1) self.opt_markdown = QtGui.QCheckBox(Form) self.opt_markdown.setObjectName(_fromUtf8('opt_markdown')) self.gridLayout.addWidget(self.opt_markdown, 2, 0, 1, 1) self.label = QtGui.QLabel(Form) self.label.setWordWrap(True) self.label.setOpenExternalLinks(True) self.label.setObjectName(_fromUtf8('label')) self.gridLayout.addWidget(self.label, 3, 0, 1, 1) self.opt_markdown_disable_toc = QtGui.QCheckBox(Form) self.opt_markdown_disable_toc.setObjectName(_fromUtf8('opt_markdown_disable_toc')) self.gridLayout.addWidget(self.opt_markdown_disable_toc, 4, 0, 1, 1) spacerItem = QtGui.QSpacerItem(20, 213, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Expanding) self.gridLayout.addItem(spacerItem, 6, 0, 1, 1) self.opt_preserve_spaces = QtGui.QCheckBox(Form) self.opt_preserve_spaces.setObjectName(_fromUtf8('opt_preserve_spaces')) self.gridLayout.addWidget(self.opt_preserve_spaces, 5, 0, 1, 1) self.retranslateUi(Form) QtCore.QObject.connect(self.opt_markdown, QtCore.SIGNAL(_fromUtf8('toggled(bool)')), self.opt_markdown_disable_toc.setEnabled) QtCore.QMetaObject.connectSlotsByName(Form) def retranslateUi(self, Form): Form.setWindowTitle(_('Form')) self.opt_single_line_paras.setText(_('Treat each &line as a paragraph')) self.opt_print_formatted_paras.setText(_('Assume print formatting')) self.opt_markdown.setText(_('Process using markdown')) self.label.setText(_('<p>Markdown is a simple markup language for text files, that allows for advanced formatting. To learn more visit <a href="http://daringfireball.net/projects/markdown">markdown</a>.')) self.opt_markdown_disable_toc.setText(_('Do not insert Table of Contents into output text when using markdown')) self.opt_preserve_spaces.setText(_('Preserve &spaces'))