home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2011 January / maximum-cd-2011-01.iso / DiscContents / calibre-0.7.26.msi / file_1293 (.txt) < prev    next >
Encoding:
Python Compiled Bytecode  |  2010-10-31  |  2.0 KB  |  44 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, 39)
  18.         self.hboxlayout = QtGui.QHBoxLayout(Form)
  19.         self.hboxlayout.setObjectName(_fromUtf8('hboxlayout'))
  20.         self.field = QtGui.QComboBox(Form)
  21.         self.field.setObjectName(_fromUtf8('field'))
  22.         self.hboxlayout.addWidget(self.field)
  23.         self.label = QtGui.QLabel(Form)
  24.         self.label.setObjectName(_fromUtf8('label'))
  25.         self.hboxlayout.addWidget(self.label)
  26.         self.text = QtGui.QLineEdit(Form)
  27.         self.text.setObjectName(_fromUtf8('text'))
  28.         self.hboxlayout.addWidget(self.text)
  29.         self.negate = QtGui.QCheckBox(Form)
  30.         self.negate.setObjectName(_fromUtf8('negate'))
  31.         self.hboxlayout.addWidget(self.negate)
  32.         self.retranslateUi(Form)
  33.         QtCore.QMetaObject.connectSlotsByName(Form)
  34.  
  35.     
  36.     def retranslateUi(self, Form):
  37.         Form.setWindowTitle(_('Form'))
  38.         self.label.setText(_('contains'))
  39.         self.text.setToolTip(_('The text to search for. It is interpreted as a regular expression.'))
  40.         self.negate.setToolTip(_('<p>Negate this match. That is, only return results that <b>do not</b> match this query.'))
  41.         self.negate.setText(_('Negate'))
  42.  
  43.  
  44.