本文整理汇总了Python中processing.gui.MultipleFileInputDialog.MultipleFileInputDialog.exec_方法的典型用法代码示例。如果您正苦于以下问题:Python MultipleFileInputDialog.exec_方法的具体用法?Python MultipleFileInputDialog.exec_怎么用?Python MultipleFileInputDialog.exec_使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类processing.gui.MultipleFileInputDialog.MultipleFileInputDialog
的用法示例。
在下文中一共展示了MultipleFileInputDialog.exec_方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: showSelectionDialog
# 需要导入模块: from processing.gui.MultipleFileInputDialog import MultipleFileInputDialog [as 别名]
# 或者: from processing.gui.MultipleFileInputDialog.MultipleFileInputDialog import exec_ [as 别名]
def showSelectionDialog(self):
if self.datatype == QgsProcessing.TypeFile:
dlg = MultipleFileInputDialog(self.selectedoptions)
else:
dlg = MultipleInputDialog(self.options, self.selectedoptions, datatype=self.datatype)
dlg.exec_()
if dlg.selectedoptions is not None:
self.selectedoptions = dlg.selectedoptions
self.leText.setText(
self.tr('{0} elements selected').format(len(self.selectedoptions)))
self.selectionChanged.emit()
示例2: showSelectionDialog
# 需要导入模块: from processing.gui.MultipleFileInputDialog import MultipleFileInputDialog [as 别名]
# 或者: from processing.gui.MultipleFileInputDialog.MultipleFileInputDialog import exec_ [as 别名]
def showSelectionDialog(self):
dlg = MultipleFileInputDialog(self.selectedoptions)
dlg.exec_()
if dlg.selectedoptions != None:
self.selectedoptions = dlg.selectedoptions
self.label.setText(self.tr('%d elements selected') % len(self.selectedoptions))