home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2011 January / maximum-cd-2011-01.iso / DiscContents / calibre-0.7.26.msi / file_1367 (.txt) < prev    next >
Encoding:
Python Compiled Bytecode  |  2010-10-31  |  2.3 KB  |  52 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(660, 351)
  18.         self.verticalLayout = QtGui.QVBoxLayout(Form)
  19.         self.verticalLayout.setObjectName(_fromUtf8('verticalLayout'))
  20.         self.label_18 = QtGui.QLabel(Form)
  21.         self.label_18.setWordWrap(True)
  22.         self.label_18.setObjectName(_fromUtf8('label_18'))
  23.         self.verticalLayout.addWidget(self.label_18)
  24.         self.groupBox_6 = QtGui.QGroupBox(Form)
  25.         self.groupBox_6.setObjectName(_fromUtf8('groupBox_6'))
  26.         self.gridLayout_11 = QtGui.QGridLayout(self.groupBox_6)
  27.         self.gridLayout_11.setObjectName(_fromUtf8('gridLayout_11'))
  28.         self.default_tweaks = QtGui.QPlainTextEdit(self.groupBox_6)
  29.         self.default_tweaks.setReadOnly(True)
  30.         self.default_tweaks.setObjectName(_fromUtf8('default_tweaks'))
  31.         self.gridLayout_11.addWidget(self.default_tweaks, 0, 0, 1, 1)
  32.         self.verticalLayout.addWidget(self.groupBox_6)
  33.         self.groupBox_7 = QtGui.QGroupBox(Form)
  34.         self.groupBox_7.setObjectName(_fromUtf8('groupBox_7'))
  35.         self.gridLayout_10 = QtGui.QGridLayout(self.groupBox_7)
  36.         self.gridLayout_10.setObjectName(_fromUtf8('gridLayout_10'))
  37.         self.current_tweaks = QtGui.QPlainTextEdit(self.groupBox_7)
  38.         self.current_tweaks.setObjectName(_fromUtf8('current_tweaks'))
  39.         self.gridLayout_10.addWidget(self.current_tweaks, 0, 0, 1, 1)
  40.         self.verticalLayout.addWidget(self.groupBox_7)
  41.         self.retranslateUi(Form)
  42.         QtCore.QMetaObject.connectSlotsByName(Form)
  43.  
  44.     
  45.     def retranslateUi(self, Form):
  46.         Form.setWindowTitle(_('Form'))
  47.         self.label_18.setText(_('Values for the tweaks are shown below. Edit them to change the behavior of calibre. Your changes will only take effect after a restart of calibre.'))
  48.         self.groupBox_6.setTitle(_('All available tweaks'))
  49.         self.groupBox_7.setTitle(_('&Current tweaks'))
  50.  
  51.  
  52.