Skip to content

Commit

Permalink
[processing] update layer selector widget
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Nov 17, 2014
1 parent 20682a7 commit c4e5ff7
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 24 deletions.
48 changes: 24 additions & 24 deletions python/plugins/processing/gui/InputLayerSelectorPanel.py
Expand Up @@ -26,33 +26,33 @@
__revision__ = '$Format:%H$'

import os
from PyQt4 import QtGui, QtCore

from PyQt4.QtGui import *
from PyQt4.QtCore import *

class InputLayerSelectorPanel(QtGui.QWidget):
from processing.ui.ui_widgetLayerSelector import Ui_Form


class InputLayerSelectorPanel(QWidget, Ui_Form):

def __init__(self, options, param):
super(InputLayerSelectorPanel, self).__init__(None)
QWidget.__init__(self)
self.setupUi(self)

self.btnIterate.setIcon(
QIcon(os.path.dirname(__file__) + '/../images/iterate.png'))
self.btnIterate.hide()

self.param = param
self.horizontalLayout = QtGui.QHBoxLayout(self)
self.horizontalLayout.setSpacing(2)
self.horizontalLayout.setMargin(0)
self.text = QtGui.QComboBox()

for (name, value) in options:
self.text.addItem(name, value)
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)
self.cmbText.addItem(name, value)

self.btnSelect.clicked.connect(self.showSelectionDialog)

def showSelectionDialog(self):
# Find the file dialog's working directory
settings = QtCore.QSettings()
text = unicode(self.text.currentText())
settings = QSettings()
text = unicode(self.cmbText.currentText())
if os.path.isdir(text):
path = text
elif os.path.isdir(os.path.dirname(text)):
Expand All @@ -62,13 +62,13 @@ def showSelectionDialog(self):
else:
path = ''

filename = QtGui.QFileDialog.getOpenFileName(self, self.param.description, path,
self.tr('All files(*.*);;') + self.param.getFileFilter())
filename = QFileDialog.getOpenFileName(self, self.tr('Select file'),
path, self.tr('All files (*.*);;') + self.param.getFileFilter())
if filename:
self.text.addItem(filename, filename)
self.text.setCurrentIndex(self.text.count() - 1)
self.cmbText.addItem(filename, filename)
self.cmbText.setCurrentIndex(self.cmbText.count() - 1)
settings.setValue('/Processing/LastInputPath',
os.path.dirname(unicode(filename)))

def getValue(self):
return self.text.itemData(self.text.currentIndex())
return self.cmbText.itemData(self.cmbText.currentIndex())
50 changes: 50 additions & 0 deletions python/plugins/processing/ui/widgetLayerSelector.ui
@@ -0,0 +1,50 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>Form</class>
<widget class="QWidget" name="Form">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>250</width>
<height>23</height>
</rect>
</property>
<property name="windowTitle">
<string>Form</string>
</property>
<layout class="QHBoxLayout" name="horizontalLayout">
<property name="spacing">
<number>2</number>
</property>
<property name="margin">
<number>0</number>
</property>
<item>
<widget class="QComboBox" name="cmbText"/>
</item>
<item>
<widget class="QToolButton" name="btnSelect">
<property name="text">
<string>...</string>
</property>
</widget>
</item>
<item>
<widget class="QToolButton" name="btnIterate">
<property name="toolTip">
<string>Iterate over this layer</string>
</property>
<property name="text">
<string>...</string>
</property>
<property name="checkable">
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</widget>
<resources/>
<connections/>
</ui>

0 comments on commit c4e5ff7

Please sign in to comment.