# -*- coding: utf-8 -*- # Form implementation generated from reading ui file 'DlgConfig.ui' # # Created: Fri Nov 21 13:25:47 2014 # by: PyQt4 UI code generator 4.11.1 # # WARNING! All changes made in this file will be lost! from PyQt4 import QtCore, QtGui try: _fromUtf8 = QtCore.QString.fromUtf8 except AttributeError: def _fromUtf8(s): return s try: _encoding = QtGui.QApplication.UnicodeUTF8 def _translate(context, text, disambig): return QtGui.QApplication.translate(context, text, disambig, _encoding) except AttributeError: def _translate(context, text, disambig): return QtGui.QApplication.translate(context, text, disambig) class Ui_DlgConfig(object): def setupUi(self, DlgConfig): DlgConfig.setObjectName(_fromUtf8("DlgConfig")) DlgConfig.resize(640, 450) self.verticalLayout = QtGui.QVBoxLayout(DlgConfig) self.verticalLayout.setSpacing(6) self.verticalLayout.setMargin(9) self.verticalLayout.setObjectName(_fromUtf8("verticalLayout")) self.searchBox = QgsFilterLineEdit(DlgConfig) self.searchBox.setObjectName(_fromUtf8("searchBox")) self.verticalLayout.addWidget(self.searchBox) self.tree = QtGui.QTreeView(DlgConfig) self.tree.setAlternatingRowColors(True) self.tree.setSelectionBehavior(QtGui.QAbstractItemView.SelectItems) self.tree.setObjectName(_fromUtf8("tree")) self.verticalLayout.addWidget(self.tree) self.buttonBox = QtGui.QDialogButtonBox(DlgConfig) self.buttonBox.setOrientation(QtCore.Qt.Horizontal) self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.Ok) self.buttonBox.setObjectName(_fromUtf8("buttonBox")) self.verticalLayout.addWidget(self.buttonBox) self.retranslateUi(DlgConfig) QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("accepted()")), DlgConfig.accept) QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("rejected()")), DlgConfig.reject) QtCore.QMetaObject.connectSlotsByName(DlgConfig) def retranslateUi(self, DlgConfig): DlgConfig.setWindowTitle(_translate("DlgConfig", "Processing options", None)) self.searchBox.setToolTip(_translate("DlgConfig", "Enter setting name to filter list", None)) from qgis.gui import QgsFilterLineEdit