]> SALOME platform Git repositories - tools/eficas.git/blob - UiQT4/desError.py
Salome HOME
CCAR: rabattre la version V1_15a4 dans la branche principale
[tools/eficas.git] / UiQT4 / desError.py
1 # -*- coding: utf-8 -*-
2
3 # Form implementation generated from reading ui file 'desError.ui'
4 #
5 # Created: Tue Nov 18 17:37:24 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_DError(object):
13     def setupUi(self, DError):
14         DError.setObjectName("DError")
15         DError.resize(482,480)
16         DError.setMinimumSize(QtCore.QSize(350,0))
17         self.gridLayout = QtGui.QGridLayout(DError)
18         self.gridLayout.setObjectName("gridLayout")
19         self.textBrowser = QtGui.QTextBrowser(DError)
20         self.textBrowser.setObjectName("textBrowser")
21         self.gridLayout.addWidget(self.textBrowser,0,0,1,1)
22         self.hboxlayout = QtGui.QHBoxLayout()
23         self.hboxlayout.setObjectName("hboxlayout")
24         spacerItem = QtGui.QSpacerItem(171,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
25         self.hboxlayout.addItem(spacerItem)
26         self.bSup = QtGui.QPushButton(DError)
27         self.bSup.setAutoDefault(True)
28         self.bSup.setObjectName("bSup")
29         self.hboxlayout.addWidget(self.bSup)
30         spacerItem1 = QtGui.QSpacerItem(171,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
31         self.hboxlayout.addItem(spacerItem1)
32         self.gridLayout.addLayout(self.hboxlayout,1,0,1,1)
33
34         self.retranslateUi(DError)
35         QtCore.QMetaObject.connectSlotsByName(DError)
36
37     def retranslateUi(self, DError):
38         DError.setWindowTitle(QtGui.QApplication.translate("DError", "DInactif", None, QtGui.QApplication.UnicodeUTF8))
39         self.textBrowser.setHtml(QtGui.QApplication.translate("DError", "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">\n"
40 "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
41 "p, li { white-space: pre-wrap; }\n"
42 "</style></head><body style=\" font-family:\'Sans Serif\'; font-size:9pt; font-weight:400; font-style:normal;\">\n"
43 "<p align=\"center\" style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></p>\n"
44 "<p align=\"center\" style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;\"></p>\n"
45 "<p align=\"center\" style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;\"></p>\n"
46 "<p align=\"center\" style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;\"></p>\n"
47 "<p align=\"center\" style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;\">Le noeud selectionné</p>\n"
48 "<p align=\"center\" style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;\">ne correspond pas</p>\n"
49 "<p align=\"center\" style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt; font-weight:600;\">à un noeud actif</p></body></html>", None, QtGui.QApplication.UnicodeUTF8))
50         self.bSup.setToolTip(QtGui.QApplication.translate("DError", "suppression du mot clef", None, QtGui.QApplication.UnicodeUTF8))
51         self.bSup.setText(QtGui.QApplication.translate("DError", "&Supprimer", None, QtGui.QApplication.UnicodeUTF8))
52         self.bSup.setShortcut(QtGui.QApplication.translate("DError", "Alt+S", None, QtGui.QApplication.UnicodeUTF8))
53
54
55 if __name__ == "__main__":
56     import sys
57     app = QtGui.QApplication(sys.argv)
58     DError = QtGui.QWidget()
59     ui = Ui_DError()
60     ui.setupUi(DError)
61     DError.show()
62     sys.exit(app.exec_())
63