home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2010 November / maximum-cd-2010-11.iso / DiscContents / calibre-0.7.13.msi / file_1275 (.txt) < prev    next >
Encoding:
Python Compiled Bytecode  |  2010-08-06  |  1.7 KB  |  37 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.6)
  3.  
  4. from PyQt4 import QtCore, QtGui
  5.  
  6. class Ui_Form(object):
  7.     
  8.     def setupUi(self, Form):
  9.         Form.setObjectName('Form')
  10.         Form.resize(400, 39)
  11.         self.hboxlayout = QtGui.QHBoxLayout(Form)
  12.         self.hboxlayout.setObjectName('hboxlayout')
  13.         self.field = QtGui.QComboBox(Form)
  14.         self.field.setObjectName('field')
  15.         self.hboxlayout.addWidget(self.field)
  16.         self.label = QtGui.QLabel(Form)
  17.         self.label.setObjectName('label')
  18.         self.hboxlayout.addWidget(self.label)
  19.         self.text = QtGui.QLineEdit(Form)
  20.         self.text.setObjectName('text')
  21.         self.hboxlayout.addWidget(self.text)
  22.         self.negate = QtGui.QCheckBox(Form)
  23.         self.negate.setObjectName('negate')
  24.         self.hboxlayout.addWidget(self.negate)
  25.         self.retranslateUi(Form)
  26.         QtCore.QMetaObject.connectSlotsByName(Form)
  27.  
  28.     
  29.     def retranslateUi(self, Form):
  30.         Form.setWindowTitle(_('Form'))
  31.         self.label.setText(_('contains'))
  32.         self.text.setToolTip(_('The text to search for. It is interpreted as a regular expression.'))
  33.         self.negate.setToolTip(_('<p>Negate this match. That is, only return results that <b>do not</b> match this query.'))
  34.         self.negate.setText(_('Negate'))
  35.  
  36.  
  37.