]> SALOME platform Git repositories - tools/eficas.git/blob - UiQT4/desSelectVal.py
Salome HOME
CCAR: rabattre la version V1_15a4 dans la branche principale
[tools/eficas.git] / UiQT4 / desSelectVal.py
1 # -*- coding: utf-8 -*-
2
3 # Form implementation generated from reading ui file 'desSelectVal.ui'
4 #
5 # Created: Tue Nov 18 17:37:25 2008
6 #      by: PyQt4 UI code generator 4.4.2
7 #
8 # WARNING! All changes made in this file will be lost!
9
10 from PyQt4 import QtCore, QtGui
11
12 class Ui_DSelVal(object):
13     def setupUi(self, DSelVal):
14         DSelVal.setObjectName("DSelVal")
15         DSelVal.resize(469,624)
16         self.TBtext = QtGui.QTextEdit(DSelVal)
17         self.TBtext.setGeometry(QtCore.QRect(9,9,451,476))
18         self.TBtext.setObjectName("TBtext")
19         self.BImportSel = QtGui.QPushButton(DSelVal)
20         self.BImportSel.setGeometry(QtCore.QRect(220,520,208,27))
21         self.BImportSel.setObjectName("BImportSel")
22         self.BImportTout = QtGui.QPushButton(DSelVal)
23         self.BImportTout.setGeometry(QtCore.QRect(220,560,208,27))
24         self.BImportTout.setObjectName("BImportTout")
25         self.BGSeparateur = QtGui.QGroupBox(DSelVal)
26         self.BGSeparateur.setGeometry(QtCore.QRect(20,500,188,103))
27         self.BGSeparateur.setObjectName("BGSeparateur")
28         self.Bespace = QtGui.QRadioButton(self.BGSeparateur)
29         self.Bespace.setGeometry(QtCore.QRect(20,20,148,23))
30         self.Bespace.setChecked(True)
31         self.Bespace.setObjectName("Bespace")
32         self.Bvirgule = QtGui.QRadioButton(self.BGSeparateur)
33         self.Bvirgule.setGeometry(QtCore.QRect(20,40,148,23))
34         self.Bvirgule.setObjectName("Bvirgule")
35         self.BpointVirgule = QtGui.QRadioButton(self.BGSeparateur)
36         self.BpointVirgule.setGeometry(QtCore.QRect(20,60,148,23))
37         self.BpointVirgule.setObjectName("BpointVirgule")
38
39         self.retranslateUi(DSelVal)
40         QtCore.QMetaObject.connectSlotsByName(DSelVal)
41
42     def retranslateUi(self, DSelVal):
43         DSelVal.setWindowTitle(QtGui.QApplication.translate("DSelVal", "Sélection de valeurs", None, QtGui.QApplication.UnicodeUTF8))
44         self.BImportSel.setText(QtGui.QApplication.translate("DSelVal", "Ajouter Selection", None, QtGui.QApplication.UnicodeUTF8))
45         self.BImportTout.setText(QtGui.QApplication.translate("DSelVal", "Importer Tout", None, QtGui.QApplication.UnicodeUTF8))
46         self.BGSeparateur.setTitle(QtGui.QApplication.translate("DSelVal", "Separateur", None, QtGui.QApplication.UnicodeUTF8))
47         self.Bespace.setText(QtGui.QApplication.translate("DSelVal", "espace", None, QtGui.QApplication.UnicodeUTF8))
48         self.Bvirgule.setText(QtGui.QApplication.translate("DSelVal", "virgule", None, QtGui.QApplication.UnicodeUTF8))
49         self.BpointVirgule.setText(QtGui.QApplication.translate("DSelVal", "point-virgule", None, QtGui.QApplication.UnicodeUTF8))
50
51
52 if __name__ == "__main__":
53     import sys
54     app = QtGui.QApplication(sys.argv)
55     DSelVal = QtGui.QWidget()
56     ui = Ui_DSelVal()
57     ui.setupUi(DSelVal)
58     DSelVal.show()
59     sys.exit(app.exec_())
60