# SVN changeset patch # User ralonso # Date 2010-05-24 15:43:53.788498 # Revision 70 Index: bk_manager/trunk/ui/Ui_Parameters2.py =================================================================== diff --git a/bk_manager/trunk/ui/Ui_Parameters2.py b/bk_manager/trunk/ui/Ui_Parameters2.py deleted file mode 10644 --- a/bk_manager/trunk/ui/Ui_Parameters2.py (revision 69) +++ /dev/null (revision 70) @@ -1,77 +0,0 @@ -# -*- coding: utf-8 -*- - -# Form implementation generated from reading ui file '/home/ricardoar/JRO_SVN/eric4/jro_backup_manager/ui/Parameters2.ui' -# -# Created: Mon May 24 08:52:43 2010 -# by: PyQt4 UI code generator 4.6 -# -# WARNING! All changes made in this file will be lost! - -from PyQt4 import QtCore, QtGui - -class Ui_Dialog(object): - def setupUi(self, Dialog): - Dialog.setObjectName("Dialog") - Dialog.resize(207, 152) - self.verticalLayout = QtGui.QVBoxLayout(Dialog) - self.verticalLayout.setObjectName("verticalLayout") - self.horizontalLayout_3 = QtGui.QHBoxLayout() - self.horizontalLayout_3.setObjectName("horizontalLayout_3") - self.verticalLayout_2 = QtGui.QVBoxLayout() - self.verticalLayout_2.setObjectName("verticalLayout_2") - self.label = QtGui.QLabel(Dialog) - self.label.setObjectName("label") - self.verticalLayout_2.addWidget(self.label) - self.label_3 = QtGui.QLabel(Dialog) - self.label_3.setObjectName("label_3") - self.verticalLayout_2.addWidget(self.label_3) - self.label_2 = QtGui.QLabel(Dialog) - self.label_2.setObjectName("label_2") - self.verticalLayout_2.addWidget(self.label_2) - self.horizontalLayout_3.addLayout(self.verticalLayout_2) - self.verticalLayout_3 = QtGui.QVBoxLayout() - self.verticalLayout_3.setObjectName("verticalLayout_3") - self.txtNcopys = QtGui.QSpinBox(Dialog) - self.txtNcopys.setMinimum(1) - self.txtNcopys.setMaximum(999) - self.txtNcopys.setObjectName("txtNcopys") - self.verticalLayout_3.addWidget(self.txtNcopys) - self.txtDisc = QtGui.QSpinBox(Dialog) - self.txtDisc.setMinimum(1) - self.txtDisc.setMaximum(999999) - self.txtDisc.setObjectName("txtDisc") - self.verticalLayout_3.addWidget(self.txtDisc) - self.txtCopy = QtGui.QSpinBox(Dialog) - self.txtCopy.setMinimum(1) - self.txtCopy.setMaximum(999) - self.txtCopy.setObjectName("txtCopy") - self.verticalLayout_3.addWidget(self.txtCopy) - self.horizontalLayout_3.addLayout(self.verticalLayout_3) - self.verticalLayout.addLayout(self.horizontalLayout_3) - self.buttonBox = QtGui.QDialogButtonBox(Dialog) - self.buttonBox.setOrientation(QtCore.Qt.Horizontal) - self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.Ok) - self.buttonBox.setObjectName("buttonBox") - self.verticalLayout.addWidget(self.buttonBox) - - self.retranslateUi(Dialog) - QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL("accepted()"), Dialog.accept) - QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL("rejected()"), Dialog.reject) - QtCore.QMetaObject.connectSlotsByName(Dialog) - - def retranslateUi(self, Dialog): - Dialog.setWindowTitle(QtGui.QApplication.translate("Dialog", "Dialog", None, QtGui.QApplication.UnicodeUTF8)) - self.label.setText(QtGui.QApplication.translate("Dialog", "N° Copys", None, QtGui.QApplication.UnicodeUTF8)) - self.label_3.setText(QtGui.QApplication.translate("Dialog", "Disc", None, QtGui.QApplication.UnicodeUTF8)) - self.label_2.setText(QtGui.QApplication.translate("Dialog", "Copy", None, QtGui.QApplication.UnicodeUTF8)) - - -if __name__ == "__main__": - import sys - app = QtGui.QApplication(sys.argv) - Dialog = QtGui.QDialog() - ui = Ui_Dialog() - ui.setupUi(Dialog) - Dialog.show() - sys.exit(app.exec_()) -