|
| 1 | +# -*- coding: utf-8 -*- |
| 2 | + |
| 3 | +# Form implementation generated from reading ui file 'python/plugins/processing/ui/DlgAutofill.ui' |
| 4 | +# |
| 5 | +# Created: Wed Oct 2 20:49:45 2013 |
| 6 | +# by: PyQt4 UI code generator 4.9.1 |
| 7 | +# |
| 8 | +# WARNING! All changes made in this file will be lost! |
| 9 | + |
| 10 | +from PyQt4 import QtCore, QtGui |
| 11 | + |
| 12 | +try: |
| 13 | + _fromUtf8 = QtCore.QString.fromUtf8 |
| 14 | +except AttributeError: |
| 15 | + _fromUtf8 = lambda s: s |
| 16 | + |
| 17 | +class Ui_DlgAutofill(object): |
| 18 | + def setupUi(self, DlgAutofill): |
| 19 | + DlgAutofill.setObjectName(_fromUtf8("DlgAutofill")) |
| 20 | + DlgAutofill.resize(400, 104) |
| 21 | + self.gridLayout = QtGui.QGridLayout(DlgAutofill) |
| 22 | + self.gridLayout.setObjectName(_fromUtf8("gridLayout")) |
| 23 | + self.label = QtGui.QLabel(DlgAutofill) |
| 24 | + self.label.setObjectName(_fromUtf8("label")) |
| 25 | + self.gridLayout.addWidget(self.label, 0, 0, 1, 1) |
| 26 | + self.cmbFillType = QtGui.QComboBox(DlgAutofill) |
| 27 | + self.cmbFillType.setObjectName(_fromUtf8("cmbFillType")) |
| 28 | + self.cmbFillType.addItem(_fromUtf8("")) |
| 29 | + self.cmbFillType.addItem(_fromUtf8("")) |
| 30 | + self.cmbFillType.addItem(_fromUtf8("")) |
| 31 | + self.gridLayout.addWidget(self.cmbFillType, 0, 1, 1, 1) |
| 32 | + self.lblParameters = QtGui.QLabel(DlgAutofill) |
| 33 | + self.lblParameters.setEnabled(False) |
| 34 | + self.lblParameters.setObjectName(_fromUtf8("lblParameters")) |
| 35 | + self.gridLayout.addWidget(self.lblParameters, 1, 0, 1, 1) |
| 36 | + self.cmbParameters = QtGui.QComboBox(DlgAutofill) |
| 37 | + self.cmbParameters.setEnabled(False) |
| 38 | + sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Fixed) |
| 39 | + sizePolicy.setHorizontalStretch(0) |
| 40 | + sizePolicy.setVerticalStretch(0) |
| 41 | + sizePolicy.setHeightForWidth(self.cmbParameters.sizePolicy().hasHeightForWidth()) |
| 42 | + self.cmbParameters.setSizePolicy(sizePolicy) |
| 43 | + self.cmbParameters.setObjectName(_fromUtf8("cmbParameters")) |
| 44 | + self.gridLayout.addWidget(self.cmbParameters, 1, 1, 1, 1) |
| 45 | + self.buttonBox = QtGui.QDialogButtonBox(DlgAutofill) |
| 46 | + self.buttonBox.setOrientation(QtCore.Qt.Horizontal) |
| 47 | + self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.Ok) |
| 48 | + self.buttonBox.setObjectName(_fromUtf8("buttonBox")) |
| 49 | + self.gridLayout.addWidget(self.buttonBox, 2, 0, 1, 2) |
| 50 | + |
| 51 | + self.retranslateUi(DlgAutofill) |
| 52 | + QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("accepted()")), DlgAutofill.accept) |
| 53 | + QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("rejected()")), DlgAutofill.reject) |
| 54 | + QtCore.QMetaObject.connectSlotsByName(DlgAutofill) |
| 55 | + |
| 56 | + def retranslateUi(self, DlgAutofill): |
| 57 | + DlgAutofill.setWindowTitle(QtGui.QApplication.translate("DlgAutofill", "Autofill settings", None, QtGui.QApplication.UnicodeUTF8)) |
| 58 | + self.label.setText(QtGui.QApplication.translate("DlgAutofill", "Autofill mode", None, QtGui.QApplication.UnicodeUTF8)) |
| 59 | + self.cmbFillType.setItemText(0, QtGui.QApplication.translate("DlgAutofill", "Do not autofill", None, QtGui.QApplication.UnicodeUTF8)) |
| 60 | + self.cmbFillType.setItemText(1, QtGui.QApplication.translate("DlgAutofill", "Fill with numbers", None, QtGui.QApplication.UnicodeUTF8)) |
| 61 | + self.cmbFillType.setItemText(2, QtGui.QApplication.translate("DlgAutofill", "Fill with parameter values", None, QtGui.QApplication.UnicodeUTF8)) |
| 62 | + self.lblParameters.setText(QtGui.QApplication.translate("DlgAutofill", "Parameter to use", None, QtGui.QApplication.UnicodeUTF8)) |
| 63 | + |
0 commit comments