Skip to content

Commit

Permalink
[processing] updated compiled version of widgets
Browse files Browse the repository at this point in the history
  • Loading branch information
volaya committed May 22, 2014
1 parent 24e98e0 commit 486fb13
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 9 deletions.
25 changes: 16 additions & 9 deletions python/plugins/processing/ui/ui_widgetNumberInput.py
Expand Up @@ -2,8 +2,8 @@

# Form implementation generated from reading ui file 'widgetNumberInput.ui'
#
# Created: Wed May 21 11:41:55 2014
# by: PyQt4 UI code generator 4.9.1
# Created: Thu May 22 12:21:43 2014
# by: PyQt4 UI code generator 4.9.6
#
# WARNING! All changes made in this file will be lost!

Expand All @@ -12,15 +12,22 @@
try:
_fromUtf8 = QtCore.QString.fromUtf8
except AttributeError:
_fromUtf8 = lambda s: s
def _fromUtf8(s):
return s

try:
_encoding = QtGui.QApplication.UnicodeUTF8
def _translate(context, text, disambig):
return QtGui.QApplication.translate(context, text, disambig, _encoding)
except AttributeError:
def _translate(context, text, disambig):
return QtGui.QApplication.translate(context, text, disambig)

class Ui_widgetNumberInput(object):
def setupUi(self, widgetNumberInput):
widgetNumberInput.setObjectName(_fromUtf8("widgetNumberInput"))
widgetNumberInput.resize(205, 24)
widgetNumberInput.setSpacing(0)
widgetNumberInput.resize(251, 24)
self.horizontalLayout = QtGui.QHBoxLayout(widgetNumberInput)
self.horizontalLayout.setSpacing(2)
self.horizontalLayout.setMargin(0)
self.horizontalLayout.setObjectName(_fromUtf8("horizontalLayout"))
self.spnValue = QtGui.QDoubleSpinBox(widgetNumberInput)
Expand All @@ -37,7 +44,7 @@ def setupUi(self, widgetNumberInput):
QtCore.QMetaObject.connectSlotsByName(widgetNumberInput)

def retranslateUi(self, widgetNumberInput):
widgetNumberInput.setWindowTitle(QtGui.QApplication.translate("widgetNumberInput", "Form", None, QtGui.QApplication.UnicodeUTF8))
self.btnCalc.setToolTip(QtGui.QApplication.translate("widgetNumberInput", "Open number input dialog", None, QtGui.QApplication.UnicodeUTF8))
self.btnCalc.setText(QtGui.QApplication.translate("widgetNumberInput", "...", None, QtGui.QApplication.UnicodeUTF8))
widgetNumberInput.setWindowTitle(_translate("widgetNumberInput", "Form", None))
self.btnCalc.setToolTip(_translate("widgetNumberInput", "Open number input dialog", None))
self.btnCalc.setText(_translate("widgetNumberInput", "...", None))

47 changes: 47 additions & 0 deletions python/plugins/processing/ui/ui_widgetOutputSelect.py
@@ -0,0 +1,47 @@
# -*- coding: utf-8 -*-

# Form implementation generated from reading ui file 'widgetOutputSelect.ui'
#
# Created: Thu May 22 11:43:10 2014
# by: PyQt4 UI code generator 4.9.6
#
# WARNING! All changes made in this file will be lost!

from PyQt4 import QtCore, QtGui

try:
_fromUtf8 = QtCore.QString.fromUtf8
except AttributeError:
def _fromUtf8(s):
return s

try:
_encoding = QtGui.QApplication.UnicodeUTF8
def _translate(context, text, disambig):
return QtGui.QApplication.translate(context, text, disambig, _encoding)
except AttributeError:
def _translate(context, text, disambig):
return QtGui.QApplication.translate(context, text, disambig)

class Ui_widgetOutputSelect(object):
def setupUi(self, widgetOutputSelect):
widgetOutputSelect.setObjectName(_fromUtf8("widgetOutputSelect"))
widgetOutputSelect.resize(400, 24)
self.horizontalLayout = QtGui.QHBoxLayout(widgetOutputSelect)
self.horizontalLayout.setSpacing(2)
self.horizontalLayout.setMargin(0)
self.horizontalLayout.setObjectName(_fromUtf8("horizontalLayout"))
self.text = QtGui.QLineEdit(widgetOutputSelect)
self.text.setObjectName(_fromUtf8("text"))
self.horizontalLayout.addWidget(self.text)
self.btnBrowse = QtGui.QToolButton(widgetOutputSelect)
self.btnBrowse.setObjectName(_fromUtf8("btnBrowse"))
self.horizontalLayout.addWidget(self.btnBrowse)

self.retranslateUi(widgetOutputSelect)
QtCore.QMetaObject.connectSlotsByName(widgetOutputSelect)

def retranslateUi(self, widgetOutputSelect):
widgetOutputSelect.setWindowTitle(_translate("widgetOutputSelect", "Form", None))
self.btnBrowse.setText(_translate("widgetOutputSelect", "...", None))

0 comments on commit 486fb13

Please sign in to comment.