[processing] some minor changes for batch processing interface

This commit is contained in:
volaya 2016-09-19 13:33:06 +02:00
parent d33e33874a
commit c605c67b8c
2 changed files with 4 additions and 6 deletions

View File

@ -62,7 +62,7 @@ class BatchInputSelectionPanel(QWidget):
self.text.setObjectName('text')
self.text.setMinimumWidth(300)
self.setValue('')
self.text.editingFinished.connect(self.on_text_EditingFinished)
self.text.editingFinished.connect(self.textEditingFinished)
self.text.setSizePolicy(QSizePolicy.Expanding,
QSizePolicy.Expanding)
self.horizontalLayout.addWidget(self.text)
@ -159,7 +159,7 @@ class BatchInputSelectionPanel(QWidget):
self._table().cellWidget(i + self.row,
self.col).setValue(f)
def on_text_EditingFinished(self):
def textEditingFinished(self):
self._value = self.text.text()
self.valueChanged.emit()
@ -170,6 +170,6 @@ class BatchInputSelectionPanel(QWidget):
self._value = value
if isinstance(value, QgsMapLayer):
self.text.setText(value.name())
else: # should be basestring
else: #  should be basestring
self.text.setText(value)
self.valueChanged.emit()

View File

@ -399,9 +399,7 @@ class MultipleInputWidgetWrapper(WidgetWrapper):
opts = [getExtendedLayerName(opt) for opt in options]
return MultipleInputPanel(opts)
elif self.dialogType == DIALOG_BATCH:
widget = BatchInputSelectionPanel(self.param, self.row, self.col, self.dialog)
widget.textChanged
return widget
return BatchInputSelectionPanel(self.param, self.row, self.col, self.dialog)
else:
options = [self.dialog.resolveValueDescription(opt) for opt in self._getOptions()]
return MultipleInputPanel(options)