Salome HOME
CCAR: rabattre la version V1_15a4 dans la branche principale
[tools/eficas.git] / UiQT4 / OptionsPdf.py
1 # -*- coding: utf-8 -*-
2
3 # Form implementation generated from reading ui file 'OptionsPdf.ui'
4 #
5 # Created: Tue Nov 18 17:37:26 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_desPdf(object):
13     def setupUi(self, desPdf):
14         desPdf.setObjectName("desPdf")
15         desPdf.resize(538,142)
16         self.textLabel1_2 = QtGui.QLabel(desPdf)
17         self.textLabel1_2.setGeometry(QtCore.QRect(20,10,280,20))
18         self.textLabel1_2.setWordWrap(False)
19         self.textLabel1_2.setObjectName("textLabel1_2")
20         self.BCancel = QtGui.QPushButton(desPdf)
21         self.BCancel.setGeometry(QtCore.QRect(450,90,70,31))
22         self.BCancel.setObjectName("BCancel")
23         self.LERepPdf = QtGui.QLineEdit(desPdf)
24         self.LERepPdf.setGeometry(QtCore.QRect(20,40,501,31))
25         self.LERepPdf.setObjectName("LERepPdf")
26         self.Bok = QtGui.QPushButton(desPdf)
27         self.Bok.setGeometry(QtCore.QRect(350,90,70,31))
28         self.Bok.setObjectName("Bok")
29
30         self.retranslateUi(desPdf)
31         desPdf.setTabOrder(self.LERepPdf,self.Bok)
32         desPdf.setTabOrder(self.Bok,self.BCancel)
33
34     def retranslateUi(self, desPdf):
35         desPdf.setWindowTitle(QtGui.QApplication.translate("desPdf", "desPdf", None, QtGui.QApplication.UnicodeUTF8))
36         self.textLabel1_2.setText(QtGui.QApplication.translate("desPdf", "Lecteur Pdf", None, QtGui.QApplication.UnicodeUTF8))
37         self.BCancel.setText(QtGui.QApplication.translate("desPdf", "Cancel", None, QtGui.QApplication.UnicodeUTF8))
38         self.LERepPdf.setText(QtGui.QApplication.translate("desPdf", "acroread", None, QtGui.QApplication.UnicodeUTF8))
39         self.Bok.setText(QtGui.QApplication.translate("desPdf", "Ok", None, QtGui.QApplication.UnicodeUTF8))
40
41
42 if __name__ == "__main__":
43     import sys
44     app = QtGui.QApplication(sys.argv)
45     desPdf = QtGui.QDialog()
46     ui = Ui_desPdf()
47     ui.setupUi(desPdf)
48     desPdf.show()
49     sys.exit(app.exec_())
50