/usr/share/pyshared/UiQT4/desUniqueASSD.py is in eficas 6.4.0-1-1.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 | # -*- coding: utf-8 -*-
# Form implementation generated from reading ui file '/local01/salome/V6_4_0rc2/tools/src/Eficasv1-V6_4_0rc2-py266-qt463p1-sip4112-pyqt481-cm285/UiQT4/desUniqueASSD.ui'
#
# Created: Mon Dec 5 18:57:13 2011
# by: PyQt4 UI code generator 4.8.1
#
# WARNING! All changes made in this file will be lost!
from PyQt4 import QtCore, QtGui
try:
_fromUtf8 = QtCore.QString.fromUtf8
except AttributeError:
_fromUtf8 = lambda s: s
class Ui_DUnASSD(object):
def setupUi(self, DUnASSD):
DUnASSD.setObjectName(_fromUtf8("DUnASSD"))
DUnASSD.resize(482, 480)
DUnASSD.setMinimumSize(QtCore.QSize(0, 0))
self.gridlayout = QtGui.QGridLayout(DUnASSD)
self.gridlayout.setObjectName(_fromUtf8("gridlayout"))
self.tabuniqueinto = QtGui.QTabWidget(DUnASSD)
self.tabuniqueinto.setObjectName(_fromUtf8("tabuniqueinto"))
self.Widget8 = QtGui.QWidget()
self.Widget8.setObjectName(_fromUtf8("Widget8"))
self.gridLayout = QtGui.QGridLayout(self.Widget8)
self.gridLayout.setObjectName(_fromUtf8("gridLayout"))
self.textLabel2 = QtGui.QLabel(self.Widget8)
self.textLabel2.setMinimumSize(QtCore.QSize(436, 50))
self.textLabel2.setWordWrap(False)
self.textLabel2.setObjectName(_fromUtf8("textLabel2"))
self.gridLayout.addWidget(self.textLabel2, 0, 0, 1, 1)
self.listBoxASSD = QtGui.QListWidget(self.Widget8)
self.listBoxASSD.setObjectName(_fromUtf8("listBoxASSD"))
self.gridLayout.addWidget(self.listBoxASSD, 1, 0, 1, 1)
self.Commentaire = QtGui.QLabel(self.Widget8)
self.Commentaire.setMinimumSize(QtCore.QSize(380, 30))
self.Commentaire.setText(_fromUtf8(""))
self.Commentaire.setWordWrap(False)
self.Commentaire.setObjectName(_fromUtf8("Commentaire"))
self.gridLayout.addWidget(self.Commentaire, 2, 0, 1, 1)
self.horizontalLayout = QtGui.QHBoxLayout()
self.horizontalLayout.setObjectName(_fromUtf8("horizontalLayout"))
spacerItem = QtGui.QSpacerItem(138, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum)
self.horizontalLayout.addItem(spacerItem)
self.bOk = QtGui.QPushButton(self.Widget8)
self.bOk.setMinimumSize(QtCore.QSize(160, 30))
self.bOk.setAutoDefault(True)
self.bOk.setDefault(True)
self.bOk.setObjectName(_fromUtf8("bOk"))
self.horizontalLayout.addWidget(self.bOk)
spacerItem1 = QtGui.QSpacerItem(138, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum)
self.horizontalLayout.addItem(spacerItem1)
self.gridLayout.addLayout(self.horizontalLayout, 3, 0, 1, 1)
self.tabuniqueinto.addTab(self.Widget8, _fromUtf8(""))
self.gridlayout.addWidget(self.tabuniqueinto, 0, 0, 1, 1)
self.retranslateUi(DUnASSD)
QtCore.QMetaObject.connectSlotsByName(DUnASSD)
def retranslateUi(self, DUnASSD):
DUnASSD.setWindowTitle(QtGui.QApplication.translate("DUnASSD", "DUnIn", None, QtGui.QApplication.UnicodeUTF8))
self.textLabel2.setText(QtGui.QApplication.translate("DUnASSD", "<font size=\"+1\"><p align=\"center\">Structures de données du type\n"
"requis par l\'objet courant :</p></font>", None, QtGui.QApplication.UnicodeUTF8))
self.bOk.setToolTip(QtGui.QApplication.translate("DUnASSD", "validation de la saisie", None, QtGui.QApplication.UnicodeUTF8))
self.bOk.setText(QtGui.QApplication.translate("DUnASSD", "&Valider", None, QtGui.QApplication.UnicodeUTF8))
self.bOk.setShortcut(QtGui.QApplication.translate("DUnASSD", "Shift+A, Alt+A, Alt+A, Alt+A", None, QtGui.QApplication.UnicodeUTF8))
self.tabuniqueinto.setTabText(self.tabuniqueinto.indexOf(self.Widget8), QtGui.QApplication.translate("DUnASSD", "Saisir Valeur", None, QtGui.QApplication.UnicodeUTF8))
if __name__ == "__main__":
import sys
app = QtGui.QApplication(sys.argv)
DUnASSD = QtGui.QWidget()
ui = Ui_DUnASSD()
ui.setupUi(DUnASSD)
DUnASSD.show()
sys.exit(app.exec_())
|