mirror of
https://github.com/qgis/QGIS.git
synced 2025-12-05 00:04:40 -05:00
36 lines
1.4 KiB
Python
36 lines
1.4 KiB
Python
from PyQt4 import QtGui, QtCore
|
|
from sextante.core.SextanteUtils import SextanteUtils
|
|
|
|
class FileSelectionPanel(QtGui.QWidget):
|
|
|
|
def __init__(self, isFolder):
|
|
super(FileSelectionPanel, self).__init__(None)
|
|
self.isFolder = isFolder;
|
|
self.horizontalLayout = QtGui.QHBoxLayout(self)
|
|
self.horizontalLayout.setSpacing(2)
|
|
self.horizontalLayout.setMargin(0)
|
|
self.text = QtGui.QLineEdit()
|
|
self.text.setSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Expanding)
|
|
self.horizontalLayout.addWidget(self.text)
|
|
self.pushButton = QtGui.QPushButton()
|
|
self.pushButton.setText("...")
|
|
self.pushButton.clicked.connect(self.showSelectionDialog)
|
|
self.horizontalLayout.addWidget(self.pushButton)
|
|
self.setLayout(self.horizontalLayout)
|
|
|
|
def showSelectionDialog(self):
|
|
if self.isFolder:
|
|
folder = QtGui.QFileDialog.getExistingDirectory (self, "Select folder")
|
|
if folder:
|
|
self.text.setText(str(folder))
|
|
else:
|
|
filenames = QtGui.QFileDialog.getOpenFileNames(self, "Open file", QtCore.QString(""), "*.*")
|
|
if filenames:
|
|
self.text.setText(str(filenames.join(";")))
|
|
|
|
def getValue(self):
|
|
s = str(self.text.text())
|
|
if SextanteUtils.isWindows():
|
|
s = s.replace("/", "\\")
|
|
return s
|