mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
12 lines
433 B
Python
12 lines
433 B
Python
|
from sextante.outputs.Output import Output
|
||
|
|
||
|
class OutputTable(Output):
|
||
|
|
||
|
def getFileFilter(self,alg):
|
||
|
exts = alg.provider.getSupportedOutputTableExtensions()
|
||
|
for i in range(len(exts)):
|
||
|
exts[i] = exts[i].upper() + " files(*." + exts[i].lower() + ")"
|
||
|
return ";;".join(exts)
|
||
|
|
||
|
def getDefaultFileExtension(self, alg):
|
||
|
return alg.provider.getSupportedOutputTableExtensions()[0]
|