]> SALOME platform Git repositories - tools/eficas.git/commitdiff
Salome HOME
*** empty log message ***
authorPascale Noyret <pascale.noyret@edf.fr>
Fri, 10 Oct 2008 12:38:20 +0000 (12:38 +0000)
committerPascale Noyret <pascale.noyret@edf.fr>
Fri, 10 Oct 2008 12:38:20 +0000 (12:38 +0000)
UiQT4/__init__.py [new file with mode: 0644]
UiQT4/desViewTexte.py [new file with mode: 0644]
UiQT4/desViewTexte.ui [new file with mode: 0644]
UiQT4/myMain.ui~ [deleted file]

diff --git a/UiQT4/__init__.py b/UiQT4/__init__.py
new file mode 100644 (file)
index 0000000..21d22fb
--- /dev/null
@@ -0,0 +1,24 @@
+# -*- coding: utf-8 -*-
+#            CONFIGURATION MANAGEMENT OF EDF VERSION
+# ======================================================================
+# COPYRIGHT (C) 1991 - 2002  EDF R&D                  WWW.CODE-ASTER.ORG
+# THIS PROGRAM IS FREE SOFTWARE; YOU CAN REDISTRIBUTE IT AND/OR MODIFY
+# IT UNDER THE TERMS OF THE GNU GENERAL PUBLIC LICENSE AS PUBLISHED BY
+# THE FREE SOFTWARE FOUNDATION; EITHER VERSION 2 OF THE LICENSE, OR
+# (AT YOUR OPTION) ANY LATER VERSION.
+#
+# THIS PROGRAM IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, BUT
+# WITHOUT ANY WARRANTY; WITHOUT EVEN THE IMPLIED WARRANTY OF
+# MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. SEE THE GNU
+# GENERAL PUBLIC LICENSE FOR MORE DETAILS.
+#
+# YOU SHOULD HAVE RECEIVED A COPY OF THE GNU GENERAL PUBLIC LICENSE
+# ALONG WITH THIS PROGRAM; IF NOT, WRITE TO EDF R&D CODE_ASTER,
+#    1 AVENUE DU GENERAL DE GAULLE, 92141 CLAMART CEDEX, FRANCE.
+#
+#
+# ======================================================================
+"""
+    Ce package contient les fonctionnalités  nécessaires
+    pour l'éditeur graphique QT
+"""
diff --git a/UiQT4/desViewTexte.py b/UiQT4/desViewTexte.py
new file mode 100644 (file)
index 0000000..dac56f7
--- /dev/null
@@ -0,0 +1,47 @@
+# -*- coding: utf-8 -*-
+
+# Form implementation generated from reading ui file 'desViewTexte.ui'
+#
+# Created: Tue Sep  9 18:09:46 2008
+#      by: PyQt4 UI code generator 4.4.2
+#
+# WARNING! All changes made in this file will be lost!
+
+from PyQt4 import QtCore, QtGui
+
+class Ui_dView(object):
+    def setupUi(self, dView):
+        dView.setObjectName("dView")
+        dView.resize(400,322)
+        self.gridLayout = QtGui.QGridLayout(dView)
+        self.gridLayout.setObjectName("gridLayout")
+        self.view = QtGui.QTextBrowser(dView)
+        self.view.setObjectName("view")
+        self.gridLayout.addWidget(self.view,0,0,1,4)
+        spacerItem = QtGui.QSpacerItem(209,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
+        self.gridLayout.addItem(spacerItem,1,0,1,1)
+        self.bclose = QtGui.QPushButton(dView)
+        self.bclose.setObjectName("bclose")
+        self.gridLayout.addWidget(self.bclose,1,2,1,1)
+        self.bsave = QtGui.QPushButton(dView)
+        self.bsave.setObjectName("bsave")
+        self.gridLayout.addWidget(self.bsave,1,1,1,1)
+
+        self.retranslateUi(dView)
+        QtCore.QMetaObject.connectSlotsByName(dView)
+
+    def retranslateUi(self, dView):
+        dView.setWindowTitle(QtGui.QApplication.translate("dView", "Dialog", None, QtGui.QApplication.UnicodeUTF8))
+        self.bclose.setText(QtGui.QApplication.translate("dView", "Fermer", None, QtGui.QApplication.UnicodeUTF8))
+        self.bsave.setText(QtGui.QApplication.translate("dView", "Sauver", None, QtGui.QApplication.UnicodeUTF8))
+
+
+if __name__ == "__main__":
+    import sys
+    app = QtGui.QApplication(sys.argv)
+    dView = QtGui.QDialog()
+    ui = Ui_dView()
+    ui.setupUi(dView)
+    dView.show()
+    sys.exit(app.exec_())
+
diff --git a/UiQT4/desViewTexte.ui b/UiQT4/desViewTexte.ui
new file mode 100644 (file)
index 0000000..6cfa950
--- /dev/null
@@ -0,0 +1,53 @@
+<ui version="4.0" >
+ <class>dView</class>
+ <widget class="QDialog" name="dView" >
+  <property name="geometry" >
+   <rect>
+    <x>0</x>
+    <y>0</y>
+    <width>400</width>
+    <height>322</height>
+   </rect>
+  </property>
+  <property name="windowTitle" >
+   <string>Dialog</string>
+  </property>
+  <layout class="QGridLayout" name="gridLayout" >
+   <item row="0" column="0" colspan="4" >
+    <widget class="QTextBrowser" name="view" />
+   </item>
+   <item row="1" column="0" >
+    <spacer name="horizontalSpacer" >
+     <property name="orientation" >
+      <enum>Qt::Horizontal</enum>
+     </property>
+     <property name="sizeHint" stdset="0" >
+      <size>
+       <width>209</width>
+       <height>20</height>
+      </size>
+     </property>
+    </spacer>
+   </item>
+   <item row="1" column="2" >
+    <widget class="QPushButton" name="bclose" >
+     <property name="text" >
+      <string>Fermer</string>
+     </property>
+    </widget>
+   </item>
+   <item row="1" column="1" >
+    <widget class="QPushButton" name="bsave" >
+     <property name="text" >
+      <string>Sauver</string>
+     </property>
+    </widget>
+   </item>
+  </layout>
+  <zorder>view</zorder>
+  <zorder>bclose</zorder>
+  <zorder>bsave</zorder>
+ </widget>
+ <resources/>
+ <connections/>
+</ui>
diff --git a/UiQT4/myMain.ui~ b/UiQT4/myMain.ui~
deleted file mode 100644 (file)
index a636a0e..0000000
+++ /dev/null
@@ -1,699 +0,0 @@
-<!DOCTYPE UI><UI version="3.3" stdsetdef="1">
-<class>Eficas</class>
-<widget class="QMainWindow">
-    <property name="name">
-        <cstring>Eficas</cstring>
-    </property>
-    <property name="enabled">
-        <bool>true</bool>
-    </property>
-    <property name="geometry">
-        <rect>
-            <x>0</x>
-            <y>0</y>
-            <width>902</width>
-            <height>575</height>
-        </rect>
-    </property>
-    <property name="sizePolicy">
-        <sizepolicy>
-            <hsizetype>1</hsizetype>
-            <vsizetype>1</vsizetype>
-            <horstretch>0</horstretch>
-            <verstretch>0</verstretch>
-        </sizepolicy>
-    </property>
-    <property name="minimumSize">
-        <size>
-            <width>21</width>
-            <height>323</height>
-        </size>
-    </property>
-    <property name="backgroundOrigin">
-        <enum>WidgetOrigin</enum>
-    </property>
-    <property name="font">
-        <font>
-        </font>
-    </property>
-    <property name="caption">
-        <string>Eficas </string>
-    </property>
-    <widget class="Line">
-        <property name="name">
-            <cstring>line1</cstring>
-        </property>
-        <property name="geometry">
-            <rect>
-                <x>-30</x>
-                <y>-10</y>
-                <width>930</width>
-                <height>20</height>
-            </rect>
-        </property>
-        <property name="frameShape">
-            <enum>HLine</enum>
-        </property>
-        <property name="frameShadow">
-            <enum>Sunken</enum>
-        </property>
-        <property name="orientation">
-            <enum>Horizontal</enum>
-        </property>
-    </widget>
-</widget>
-<menubar>
-    <property name="name">
-        <cstring>MenuBar</cstring>
-    </property>
-    <property name="margin">
-        <number>2</number>
-    </property>
-    <item text="&amp;Fichier" name="Fichier">
-        <action name="fileNewAction"/>
-        <action name="fileNewInclude"/>
-        <action name="fileOpenAction"/>
-        <action name="fileSaveAction"/>
-        <action name="fileSaveAsAction"/>
-        <action name="fileCloseAction"/>
-        <action name="fileCloseAllAction"/>
-        <separator/>
-        <separator/>
-        <action name="fileExitAction"/>
-    </item>
-    <item text="&amp;Edition" name="Edition">
-        <separator/>
-        <action name="editCutAction"/>
-        <action name="editCopyAction"/>
-        <action name="editPasteAction"/>
-    </item>
-    <item text="JdC" name="JdC">
-        <action name="jdcRapportDeValidationAction"/>
-        <action name="jdcFichierSourceAction"/>
-        <action name="jdcFichierResultatAction"/>
-    </item>
-    <item text="&amp;Aide" name="Aide">
-        <action name="aidenew_itemAction"/>
-    </item>
-    <item text="Options" name="Options">
-        <action name="optionEditeurAction"/>
-        <action name="optionPdfAction"/>
-    </item>
-    <item text="Traduction" name="Traduction">
-        <action name="traduitV7V8Action"/>
-    </item>
-    <item text="Patrons" name="Patrons">
-    </item>
-</menubar>
-<toolbars>
-    <toolbar dock="2">
-        <property name="name">
-            <cstring>toolBar</cstring>
-        </property>
-        <property name="frameShape">
-            <enum>MenuBarPanel</enum>
-        </property>
-        <property name="horizontallyStretchable">
-            <bool>false</bool>
-        </property>
-        <property name="label">
-            <string>Tools</string>
-        </property>
-        <action name="fileNewAction"/>
-        <action name="fileSaveAction"/>
-        <action name="fileOpenAction"/>
-        <action name="fileSaveAsAction"/>
-        <action name="editCutAction"/>
-        <action name="editPasteAction"/>
-        <action name="jdcFichierResultatAction"/>
-        <action name="fileExitAction"/>
-        <separator/>
-    </toolbar>
-</toolbars>
-<actions>
-    <action>
-        <property name="name">
-            <cstring>fileNewAction</cstring>
-        </property>
-        <property name="iconSet">
-            <iconset>image0</iconset>
-        </property>
-        <property name="text">
-            <string>Nouveau</string>
-        </property>
-        <property name="menuText">
-            <string>&amp;Nouveau</string>
-        </property>
-        <property name="accel">
-            <string>Ctrl+N</string>
-        </property>
-    </action>
-    <action>
-        <property name="name">
-            <cstring>fileOpenAction</cstring>
-        </property>
-        <property name="iconSet">
-            <iconset>image1</iconset>
-        </property>
-        <property name="text">
-            <string>Ouvrir</string>
-        </property>
-        <property name="menuText">
-            <string>&amp;Ouvrir</string>
-        </property>
-        <property name="accel">
-            <string>Ctrl+O</string>
-        </property>
-    </action>
-    <action>
-        <property name="name">
-            <cstring>fileSaveAction</cstring>
-        </property>
-        <property name="iconSet">
-            <iconset>image2</iconset>
-        </property>
-        <property name="text">
-            <string>Enregistrer</string>
-        </property>
-        <property name="menuText">
-            <string>&amp;Enregister</string>
-        </property>
-        <property name="accel">
-            <string>Ctrl+E</string>
-        </property>
-    </action>
-    <action>
-        <property name="name">
-            <cstring>fileSaveAsAction</cstring>
-        </property>
-        <property name="text">
-            <string>Enregister Sous</string>
-        </property>
-        <property name="menuText">
-            <string>Enregister Sous</string>
-        </property>
-        <property name="accel">
-            <string></string>
-        </property>
-    </action>
-    <action>
-        <property name="name">
-            <cstring>fileExitAction</cstring>
-        </property>
-        <property name="text">
-            <string>Quitter</string>
-        </property>
-        <property name="menuText">
-            <string>Q&amp;uitter</string>
-        </property>
-        <property name="accel">
-            <string></string>
-        </property>
-    </action>
-    <action>
-        <property name="name">
-            <cstring>editUndoAction</cstring>
-        </property>
-        <property name="enabled">
-            <bool>false</bool>
-        </property>
-        <property name="iconSet">
-            <iconset>image3</iconset>
-        </property>
-        <property name="text">
-            <string>Undo</string>
-        </property>
-        <property name="menuText">
-            <string>&amp;Undo</string>
-        </property>
-        <property name="accel">
-            <string>Ctrl+Z</string>
-        </property>
-    </action>
-    <action>
-        <property name="name">
-            <cstring>editRedoAction</cstring>
-        </property>
-        <property name="enabled">
-            <bool>false</bool>
-        </property>
-        <property name="iconSet">
-            <iconset>image4</iconset>
-        </property>
-        <property name="text">
-            <string>Redo</string>
-        </property>
-        <property name="menuText">
-            <string>&amp;Redo</string>
-        </property>
-        <property name="accel">
-            <string>Ctrl+Y</string>
-        </property>
-    </action>
-    <action>
-        <property name="name">
-            <cstring>editCutAction</cstring>
-        </property>
-        <property name="iconSet">
-            <iconset>image5</iconset>
-        </property>
-        <property name="text">
-            <string>Couper</string>
-        </property>
-        <property name="menuText">
-            <string>C&amp;ouper</string>
-        </property>
-        <property name="accel">
-            <string>Ctrl+X</string>
-        </property>
-    </action>
-    <action>
-        <property name="name">
-            <cstring>editCopyAction</cstring>
-        </property>
-        <property name="iconSet">
-            <iconset>image6</iconset>
-        </property>
-        <property name="text">
-            <string>Copier</string>
-        </property>
-        <property name="menuText">
-            <string>&amp;Copier</string>
-        </property>
-        <property name="accel">
-            <string>Ctrl+C</string>
-        </property>
-    </action>
-    <action>
-        <property name="name">
-            <cstring>editPasteAction</cstring>
-        </property>
-        <property name="iconSet">
-            <iconset>image7</iconset>
-        </property>
-        <property name="text">
-            <string>Coller</string>
-        </property>
-        <property name="menuText">
-            <string>&amp;Coller</string>
-        </property>
-        <property name="accel">
-            <string>Ctrl+V</string>
-        </property>
-    </action>
-    <action>
-        <property name="name">
-            <cstring>jdcFichierResultatAction</cstring>
-        </property>
-        <property name="enabled">
-            <bool>true</bool>
-        </property>
-        <property name="iconSet">
-            <iconset>image8</iconset>
-        </property>
-        <property name="text">
-            <string>Fichier Resultat</string>
-        </property>
-        <property name="menuText">
-            <string>Fichier Resultat</string>
-        </property>
-        <property name="accel">
-            <string>Ctrl+F</string>
-        </property>
-    </action>
-    <action>
-        <property name="name">
-            <cstring>helpContentsAction</cstring>
-        </property>
-        <property name="text">
-            <string>Contents</string>
-        </property>
-        <property name="menuText">
-            <string>&amp;Contents...</string>
-        </property>
-        <property name="accel">
-            <string></string>
-        </property>
-    </action>
-    <action>
-        <property name="name">
-            <cstring>helpIndexAction</cstring>
-        </property>
-        <property name="text">
-            <string>Index</string>
-        </property>
-        <property name="menuText">
-            <string>&amp;Index...</string>
-        </property>
-        <property name="accel">
-            <string></string>
-        </property>
-    </action>
-    <action>
-        <property name="name">
-            <cstring>helpAboutAction</cstring>
-        </property>
-        <property name="on">
-            <bool>false</bool>
-        </property>
-        <property name="text">
-            <string>About</string>
-        </property>
-        <property name="menuText">
-            <string>&amp;About</string>
-        </property>
-        <property name="accel">
-            <string></string>
-        </property>
-    </action>
-    <action>
-        <property name="name">
-            <cstring>fileSaveCloseAction</cstring>
-        </property>
-        <property name="text">
-            <string>Fermer</string>
-        </property>
-        <property name="menuText">
-            <string>Fermer</string>
-        </property>
-    </action>
-    <action>
-        <property name="name">
-            <cstring>fileCloseAction</cstring>
-        </property>
-        <property name="text">
-            <string>Fermer</string>
-        </property>
-        <property name="menuText">
-            <string>Fermer</string>
-        </property>
-        <property name="accel">
-            <string>Ctrl+W</string>
-        </property>
-    </action>
-    <action>
-        <property name="name">
-            <cstring>fileNewViewAction</cstring>
-        </property>
-        <property name="enabled">
-            <bool>false</bool>
-        </property>
-        <property name="text">
-            <string>New view</string>
-        </property>
-    </action>
-    <action>
-        <property name="name">
-            <cstring>fileCloseAllAction</cstring>
-        </property>
-        <property name="text">
-            <string>Tout Fermer</string>
-        </property>
-        <property name="menuText">
-            <string>Tout Fermer</string>
-        </property>
-    </action>
-    <action>
-        <property name="name">
-            <cstring>jdcRapportDeValidationAction</cstring>
-        </property>
-        <property name="text">
-            <string>Rapport de validation</string>
-        </property>
-        <property name="menuText">
-            <string>Rapport de validation</string>
-        </property>
-        <property name="accel">
-            <string>Ctrl+R</string>
-        </property>
-    </action>
-    <action>
-        <property name="name">
-            <cstring>jdcFichierSourceAction</cstring>
-        </property>
-        <property name="text">
-            <string>Fichier source</string>
-        </property>
-        <property name="menuText">
-            <string>Fichier source</string>
-        </property>
-        <property name="accel">
-            <string>Ctrl+B</string>
-        </property>
-    </action>
-    <action>
-        <property name="name">
-            <cstring>traduitV7V8Action</cstring>
-        </property>
-        <property name="text">
-            <string>traduitV7V8</string>
-        </property>
-        <property name="menuText">
-            <string>traduitV7V8</string>
-        </property>
-    </action>
-    <action>
-        <property name="name">
-            <cstring>aidenew_itemAction</cstring>
-        </property>
-        <property name="text">
-            <string>Eficas</string>
-        </property>
-    </action>
-    <action>
-        <property name="name">
-            <cstring>fileNewInclude</cstring>
-        </property>
-        <property name="text">
-            <string>Nouvel Include</string>
-        </property>
-        <property name="menuText">
-            <string>Nouvel Include</string>
-        </property>
-    </action>
-    <action>
-        <property name="name">
-            <cstring>optionEditeurAction</cstring>
-        </property>
-        <property name="text">
-            <string>Parametres Eficas</string>
-        </property>
-        <property name="menuText">
-            <string>Parametres Eficas</string>
-        </property>
-    </action>
-    <action>
-        <property name="name">
-            <cstring>optionPdfAction</cstring>
-        </property>
-        <property name="text">
-            <string>Lecteur Pdf</string>
-        </property>
-        <property name="menuText">
-            <string>Lecteur Pdf</string>
-        </property>
-    </action>
-</actions>
-<images>
-    <image name="image0">
-        <data format="PNG" length="173">89504e470d0a1a0a0000000d4948445200000016000000160806000000c4b46c3b0000007449444154388dedd5c109c0200c05d06fe936812c10b2ffdd85d25385b6a991480f053f081af0291210f828c5a9d9c4de96cd2b9ad9eb0000660e2fe0c2519839c4f70c4c446d5e6b3538cf928245e4b2f6f014acaa8fda1d4fc1a5741b22079f9d111d96ea8a912c78c10bee64e60719f57e9203ad452a04cc4e50200000000049454e44ae426082</data>
-    </image>
-    <image name="image1">
-        <data format="PNG" length="210">89504e470d0a1a0a0000000d4948445200000016000000160806000000c4b46c3b0000009949444154388ded94410e85200c445f89c7367f61bc775d2848a42860ffced9548bbe8e13043e1d928177f481a123dc2b34f6f47a3de2b865a8843f4001982a0b3d5f62c58300aa1ad70550449ab9d507a773a8a4ba4f92a2df333c64c63bebbd82e5b8addecbcc7820eb4266c639745dfa80f36faf66c66fa19c3f882fb470ec05cdc0bed07893f68e171492635f686c3eeff6ba3c8fdd366dc4c0452c8781f8080000000049454e44ae426082</data>
-    </image>
-    <image name="image2">
-        <data format="PNG" length="217">89504e470d0a1a0a0000000d4948445200000016000000160806000000c4b46c3b000000a049444154388dd5954d0a802010859fd14668e18de662d222bc98376a21b4ac451992c66469e0b7f187f1f11c47052a218e762daddbfb9e99f6568f80b5364b8588ce35440400e80a398ce8f99034d2292cc37c8ebd530feb583a05e954341f8a027b2a7d3a1f09bf854dc5d5d953aa396e4f38cab199e2d2e108abe156f82e30977fcb4d8ff942d75dbebed2e143953a93f6caad3d6111f44b7d4f820ff9c0069bb51ecded318c5c0000000049454e44ae426082</data>
-    </image>
-    <image name="image3">
-        <data format="PNG" length="172">89504e470d0a1a0a0000000d4948445200000016000000160806000000c4b46c3b0000007349444154388ded92c10e80200840b1ef661d1cff4d876aa888a17669f9360f283ed80060f159425f3a71f53602e08e992b098801d02854176ae47f21ce1fb5b05d38eddc9060d0f11379635b3bc92bd518e239a943ec1d5ab7785cee107be4b215af4091f894de47181ecea59ede9ec59f380062ac28b1e3d701d90000000049454e44ae426082</data>
-    </image>
-    <image name="image4">
-        <data format="PNG" length="173">89504e470d0a1a0a0000000d4948445200000016000000160806000000c4b46c3b0000007449444154388ded92c10ac02008406ddf2d3b84ffed0ea3586a26d165e0830ea53e8504487e4b910f5489f19ea5a3ca0f8a896365b306c42dd613c649bdc2598316136219f0f936c0a2ef00d75a62614d3ab22996f2a362ffa337c5ebede962aad1a2e84aaaa2f750dd12748c0fd0ab9324677800596e28b1743f46860000000049454e44ae426082</data>
-    </image>
-    <image name="image5">
-        <data format="PNG" length="187">89504e470d0a1a0a0000000d4948445200000016000000160806000000c4b46c3b0000008249444154388dcdd341128020080550e8e02ebc38ad3273503e48537fe3e48c4f2425fa28e29c6f39920bf9276cb60185358877611388c2576418cda015f520b4e6b55be109dc0622b8e22acf31056e18dfdff80606aa551cc63564c4dcf80cd0201d577a5c85a8845fdc025ea5307afccd07e23a1df283ec2b37d9ad5fb4dfefd49cfbf72fac98c8cc890000000049454e44ae426082</data>
-    </image>
-    <image name="image6">
-        <data format="PNG" length="248">89504e470d0a1a0a0000000d4948445200000016000000160806000000c4b46c3b000000bf49444154388dd593410a83301045df488ee51dbc8c3ba98bf46a9eabd385350d266362444a3f0c4266fcf3f824f06f12402b66da8c55f3de2212cf9d92cb98c0ba2d7c4544cf9a07638bbad53c4491235ecf7cc1623697a92540c11ff4fda75275015d24a9389e7d6f53df4fe4ccab323eea0f03c0c4b2a0712ce6add89b59b7661c3be095985f261679ee4ebcc22c9788551fe6a2cbc4969a894bcb6f23ee361aab62e252c57294dfbfb610bbf2c897b8a46cc6677eaa519571fa087ea83762da9abacb20235f0000000049454e44ae426082</data>
-    </image>
-    <image name="image7">
-        <data format="PNG" length="270">89504e470d0a1a0a0000000d4948445200000016000000160806000000c4b46c3b000000d549444154388dc5955d0a84300c8427e2a90a9e6c8b0f4b3dd982d7ca3e58d7fe4cd0ba5d7640024df265da0a057e2439c9eb8d9eaa8841a0c9aad8c82ab32f9c425be1e30e0dcf00c00308f0b3a7a07410a9d7142e00b42c5a5fab696b979b1c837fc0c316b6e4165b64f78d716359919bdc4570de47c04732dd5e5bcc35f0c97762ae787936dccf7513577e79f48c4b27aa0f1327b240f5117fcbe348aa33b6e0224b054d0746b8025e2e3b3e73cde0dd1c97f02e8ed9d0af1db381224bdf33eee698a934a0f617b45540d00bcf4ca08fc0dff406e325c1981bc418760000000049454e44ae426082</data>
-    </image>
-    <image name="image8">
-        <data format="PNG" length="662">89504e470d0a1a0a0000000d4948445200000016000000160806000000c4b46c3b0000025d49444154388dd593a172db4010863f670a56ecc42278d0653693a0c21c68d6c2e60df21a818111349499c254a8329b55f0e089ddb15ba602b79d6692d699b6d399fee86e67e7db7f77efe07fd3e2c74bd775b3730eef3d5115002382b5166b2d5757578b1729bf02b76d3b0f8703b92d58aed7600400ef1ce3c70306a8aa8aebebeb57c117dfa06ddb525dd754efb600a82a49138a123532ec3ac42b9bcde655ce2ffabe9f87c340fde13dcb4d8daaa24e48ee12c6823808c107969b1a8a9ce3f1f8aa515c38e7c8ada5aa6b00c45f129c67d223938c88e6c860d118b1d592d139baae9bcf83a78965b5465134801b1d2e1f4945c0e350096408ea154490c2e0bd3fef5853c2e486a0019f4d84f58418418362b0408e8b23c924501093314dd359f01b809814112025144015f1964c0bbc1b484b07e4688880c029ebd78e4141f5b434fd76864c053f1e084b0f8580265440634044ce838bbcc03987a61350a3a2285e1d5a4414d0708aa598082162ad3d0fb6d6e287cfa498508d274050447370428c91af8d10fd4481608c390b5e00dcddddcd8e80a9de420248e804840856f03e02907d729465c9ba5ae3468731e6a79fe50260b55a6102c4ee40a6894c33f2cb0cb106512814f8f899b22cb9b9b959b8d1f1f8f848d334b46dfbe29bfe5eadeffbf9783c323a871881ecb4200d1151a8eb9aed76bb00188661eeba8efd7e8f3186ed76cb6ab57ae2fe591b5dd7cdde7b628c8808799e63ada5aaaa67b9bbdd6e6e9a06ef3d755d3f29fec7eafb7ebebdbd9dadb5735996f3fdfdfdfca2e3dfd5c3c3c3dc340dd334b1d96cfe1e184e63dceff7a494fe26f61fe90bbc4c5e59d614caf40000000049454e44ae426082</data>
-    </image>
-</images>
-<connections>
-    <connection>
-        <sender>fileNewAction</sender>
-        <signal>activated()</signal>
-        <receiver>Eficas</receiver>
-        <slot>fileNew()</slot>
-    </connection>
-    <connection>
-        <sender>fileOpenAction</sender>
-        <signal>activated()</signal>
-        <receiver>Eficas</receiver>
-        <slot>fileOpen()</slot>
-    </connection>
-    <connection>
-        <sender>fileSaveAction</sender>
-        <signal>activated()</signal>
-        <receiver>Eficas</receiver>
-        <slot>fileSave()</slot>
-    </connection>
-    <connection>
-        <sender>fileSaveAsAction</sender>
-        <signal>activated()</signal>
-        <receiver>Eficas</receiver>
-        <slot>fileSaveAs()</slot>
-    </connection>
-    <connection>
-        <sender>fileExitAction</sender>
-        <signal>activated()</signal>
-        <receiver>Eficas</receiver>
-        <slot>fileExit()</slot>
-    </connection>
-    <connection>
-        <sender>editUndoAction</sender>
-        <signal>activated()</signal>
-        <receiver>Eficas</receiver>
-        <slot>editUndo()</slot>
-    </connection>
-    <connection>
-        <sender>editRedoAction</sender>
-        <signal>activated()</signal>
-        <receiver>Eficas</receiver>
-        <slot>editRedo()</slot>
-    </connection>
-    <connection>
-        <sender>editCutAction</sender>
-        <signal>activated()</signal>
-        <receiver>Eficas</receiver>
-        <slot>editCut()</slot>
-    </connection>
-    <connection>
-        <sender>editPasteAction</sender>
-        <signal>activated()</signal>
-        <receiver>Eficas</receiver>
-        <slot>editPaste()</slot>
-    </connection>
-    <connection>
-        <sender>jdcFichierResultatAction</sender>
-        <signal>activated()</signal>
-        <receiver>Eficas</receiver>
-        <slot>visuJdcPy()</slot>
-    </connection>
-    <connection>
-        <sender>helpIndexAction</sender>
-        <signal>activated()</signal>
-        <receiver>Eficas</receiver>
-        <slot>helpIndex()</slot>
-    </connection>
-    <connection>
-        <sender>helpContentsAction</sender>
-        <signal>activated()</signal>
-        <receiver>Eficas</receiver>
-        <slot>helpContents()</slot>
-    </connection>
-    <connection>
-        <sender>helpAboutAction</sender>
-        <signal>activated()</signal>
-        <receiver>Eficas</receiver>
-        <slot>helpAbout()</slot>
-    </connection>
-    <connection>
-        <sender>fileCloseAction</sender>
-        <signal>activated()</signal>
-        <receiver>Eficas</receiver>
-        <slot>fileClose()</slot>
-    </connection>
-    <connection>
-        <sender>fileNewViewAction</sender>
-        <signal>activated()</signal>
-        <receiver>Eficas</receiver>
-        <slot>fileNewView()</slot>
-    </connection>
-    <connection>
-        <sender>fileCloseAllAction</sender>
-        <signal>activated()</signal>
-        <receiver>Eficas</receiver>
-        <slot>fileCloseAll()</slot>
-    </connection>
-    <connection>
-        <sender>editCopyAction</sender>
-        <signal>activated()</signal>
-        <receiver>Eficas</receiver>
-        <slot>editCopy()</slot>
-    </connection>
-    <connection>
-        <sender>jdcRapportDeValidationAction</sender>
-        <signal>activated()</signal>
-        <receiver>Eficas</receiver>
-        <slot>jdcRapport()</slot>
-    </connection>
-    <connection>
-        <sender>jdcFichierSourceAction</sender>
-        <signal>activated()</signal>
-        <receiver>Eficas</receiver>
-        <slot>jdcFichierSource()</slot>
-    </connection>
-    <connection>
-        <sender>traduitV7V8Action</sender>
-        <signal>activated()</signal>
-        <receiver>Eficas</receiver>
-        <slot>traductionV7V8()</slot>
-    </connection>
-    <connection>
-        <sender>aidenew_itemAction</sender>
-        <signal>activated()</signal>
-        <receiver>Eficas</receiver>
-        <slot>helpAbout()</slot>
-    </connection>
-    <connection>
-        <sender>fileNewInclude</sender>
-        <signal>activated()</signal>
-        <receiver>Eficas</receiver>
-        <slot>NewInclude()</slot>
-    </connection>
-    <connection>
-        <sender>optionEditeurAction</sender>
-        <signal>activated()</signal>
-        <receiver>Eficas</receiver>
-        <slot>optionEditeur()</slot>
-    </connection>
-    <connection>
-        <sender>optionPdfAction</sender>
-        <signal>activated()</signal>
-        <receiver>Eficas</receiver>
-        <slot>optionPdf()</slot>
-    </connection>
-</connections>
-<slots>
-    <slot>fileNew()</slot>
-    <slot>fileOpen()</slot>
-    <slot>fileSave()</slot>
-    <slot>fileSaveAs()</slot>
-    <slot>filePrint()</slot>
-    <slot>fileExit()</slot>
-    <slot>editUndo()</slot>
-    <slot>editRedo()</slot>
-    <slot>jdcFichierSource()</slot>
-    <slot>fileNewView()</slot>
-    <slot>editPaste()</slot>
-    <slot>visuJdcPy()</slot>
-    <slot>helpIndex()</slot>
-    <slot>helpContents()</slot>
-    <slot>helpAbout()</slot>
-    <slot>fileClose()</slot>
-    <slot>fileCloseAll()</slot>
-    <slot>jdcRapport()</slot>
-    <slot>editCut()</slot>
-    <slot>editCopy()</slot>
-    <slot>traductionV7V8()</slot>
-    <slot>NewInclude()</slot>
-    <slot>optionEditeur()</slot>
-    <slot>optionPdf()</slot>
-</slots>
-<layoutdefaults spacing="2" margin="2"/>
-</UI>