home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.6)
-
- from PyQt4 import QtCore, QtGui
-
- class Ui_Form(object):
-
- def setupUi(self, Form):
- Form.setObjectName('Form')
- Form.resize(400, 39)
- self.hboxlayout = QtGui.QHBoxLayout(Form)
- self.hboxlayout.setObjectName('hboxlayout')
- self.field = QtGui.QComboBox(Form)
- self.field.setObjectName('field')
- self.hboxlayout.addWidget(self.field)
- self.label = QtGui.QLabel(Form)
- self.label.setObjectName('label')
- self.hboxlayout.addWidget(self.label)
- self.text = QtGui.QLineEdit(Form)
- self.text.setObjectName('text')
- self.hboxlayout.addWidget(self.text)
- self.negate = QtGui.QCheckBox(Form)
- self.negate.setObjectName('negate')
- self.hboxlayout.addWidget(self.negate)
- self.retranslateUi(Form)
- QtCore.QMetaObject.connectSlotsByName(Form)
-
-
- def retranslateUi(self, Form):
- Form.setWindowTitle(_('Form'))
- self.label.setText(_('contains'))
- self.text.setToolTip(_('The text to search for. It is interpreted as a regular expression.'))
- self.negate.setToolTip(_('<p>Negate this match. That is, only return results that <b>do not</b> match this query.'))
- self.negate.setText(_('Negate'))
-
-
-