Parcourir la source

Nouvel écran édition combattants fonctionnel (sauf attaques et inventaire)
Refonte écran édition décors entamée

unknown il y a 10 ans
Parent
commit
587e6bc51c

+ 5 - 5
lib/Case.py

@@ -91,11 +91,11 @@ class Case(QGraphicsPolygonItem):
         self.setFiltersChildEvents(True)
 
 ##        #pour afficher les coordonnees des cases:        
-        text = QGraphicsSimpleTextItem("{}-{}".format(self.x,self.y), parent=self)
-        if self.plateau.formeCases == "H":
-            text.setPos(QPointF(((self.x*0.866)+0.2886)*self.plateau.hCase,  self.y*self.plateau.hCase))
-        else:
-            text.setPos(QPointF(self.x*self.plateau.hCase,  self.y*self.plateau.hCase))
+##        text = QGraphicsSimpleTextItem("{}-{}".format(self.x,self.y), parent=self)
+##        if self.plateau.formeCases == "H":
+##            text.setPos(QPointF(((self.x*0.866)+0.2886)*self.plateau.hCase,  self.y*self.plateau.hCase))
+##        else:
+##            text.setPos(QPointF(self.x*self.plateau.hCase,  self.y*self.plateau.hCase))
 
         self.logoDep = LogoDep(self)
         self.logoDep.creer()

+ 13 - 12
lib/EcranEditionCombattant.py

@@ -10,6 +10,7 @@ from outilsSvg import *
 from VueEditionForme import VueEditionForme
 from EcranEditionAttaques import EcranEditionAttaques
 import regles
+import ui.dm as dm
 
 
 class EcranEditionCombattant(QDialog):
@@ -84,6 +85,7 @@ class EcranEditionCombattant(QDialog):
             self.ui.edc_logo.majTexte("Choisissez \nun fichier\nimage")
 
         self.vueForme.creer(self.formeCases())
+        self.vueForme.majCouleur(self.combattant.couleur)
         self.vueForme.chargerFormeDef(self.combattant.formeDef[self.formeCases()])
         self.vueForme.chargerImageDef(self.combattant.img)
         self.vueForme.chargerEtiquetteDef(self.combattant.etiquette)
@@ -100,19 +102,18 @@ class EcranEditionCombattant(QDialog):
         self.majListeAttributs()
 
         #page attaques
-        tabAttaques = self.ui.edc_pages.widget(3)
-        editionAttaques = EcranEditionAttaques(self.combattant)
-        editionAttaques.setParent(tabAttaques)
+        ###
+
 
         #page inventaire
         #self.majListeInventaire()
 
         #page_notes
         for detail in self.combattant.details:
-            widget = self.ui.findchild(DmLineEdit, "edc_detail_{}".format(detail))
+            widget = self.ui.edc_pages.findChild(dm.DmLineEdit, "edc_detail_{}".format(detail))
             if widget:
                 widget.majTexte(self.combattant.details[detail])
-        self.ui.edc_notes.setText(self.combattant.notes)
+        self.ui.edc_notes.setText(QString.fromUtf8(self.combattant.notes))
 
         #autre
         self.majActivationEnregistrer()
@@ -237,14 +238,14 @@ class EcranEditionCombattant(QDialog):
         #a voir...
 
         #page notes
-        for detail in self.combattant.details:
-            widget = self.ui.findchild(DmLineEdit, "edc_detail_{}".format(detail))
-            if widget:
-                txt = widget.texte()
-                if len(txt) > 0:
-                    self.combattant.details[detail] = txt
+        listeWidget = self.ui.edc_pages.findChildren(dm.DmLineEdit)
+        for widget in listeWidget:
+            detail = str(widget.objectName()).replace("edc_detail_","")
+            txt = widget.texte()
+            if len(txt) > 0:
+                self.combattant.details[detail] = txt
         
-        self.combattant.notes = str(self.ui.edc_notes.toPlainText())
+        self.combattant.notes = str(self.ui.edc_notes.toPlainText().toUtf8())
 
         enregistrer(self.combattant.id, self.combattant, "lib\\biblio\\combattant")
         self.combattant = None

+ 10 - 4
lib/Pion.py

@@ -196,10 +196,16 @@ class Pion(QGraphicsItem):
                                       Qt.IgnoreAspectRatio, Qt.SmoothTransformation)
                     self.pixGraphique.setPixmap(pix)
 
-                deltaX = self.img.dx + 0.5*(self.plateau.hCase*1.1544 - self._l0)
-                deltaY = self.img.dy + 0.5*(self.plateau.hCase - self._h0)
-
-                self.pixGraphique.setParentItem(self.polygoneGraphique)
+##                deltaX = self.img.dx + 0.5*(self.plateau.hCase*1.1544 - self._l0)
+##                deltaY = self.img.dy + 0.5*(self.plateau.hCase - self._h0)
+                deltaX = self.img.dx + 0.5*(self.plateau.hCase*1.1544 - self.pixGraphique.pixmap().width())
+                deltaY = self.img.dy + 0.5*(self.plateau.hCase - self.pixGraphique.pixmap().height())
+                    
+                if self.img.nomFichier == self.logo:
+                    #si l'image est le logo, elle ne doit pas pivoter
+                    self.pixGraphique.setParentItem(self)
+                else:
+                    self.pixGraphique.setParentItem(self.polygoneGraphique)
                 self.pixGraphique.setRotation(self.img.rotation)
                 self.pixGraphique.setPos(QPointF(deltaX, deltaY))
 

+ 1 - 1
lib/VueEditionForme.py

@@ -330,7 +330,7 @@ class VefImage(QGraphicsPixmapItem):
             k = 1
             if self.scene.formeCases() == "H": k = 1.1544
             deltaX = self._def.dx + 0.5*(120*k - self._pix.width())
-            deltaY = self._def.dy + 0.5*(120 - self._pix.height())
+            deltaY = self._def.dy + 0.5*(120 - self._pix.height())        
             
             self.setPixmap(self._pix)
             self.setPos(QPointF(deltaX, deltaY))

BIN
lib/biblio/combattant


+ 3 - 0
lib/ui/dm.py

@@ -63,6 +63,9 @@ class DmLabelChoixImage(DmLabel):
         """retourne le chemin de l'image chargee"""
         return self._sourceImage
 
+    def chargerImage(self, chemin):
+        self._sourceImage = chemin
+        super(DmLabelChoixImage, self).chargerImage(chemin)
 
 class DmTextEdit(QTextEdit):
     def __init__(self, parent = None):

+ 233 - 0
lib/ui/ecran_editionDecor - Copie.py

@@ -0,0 +1,233 @@
+# -*- coding: utf-8 -*-
+
+# Form implementation generated from reading ui file 'editionDecor.ui'
+#
+# Created: Tue Oct 07 16:41:52 2014
+#      by: PyQt4 UI code generator 4.10.4
+#
+# WARNING! All changes made in this file will be lost!
+
+from PyQt4 import QtCore, QtGui
+
+try:
+    _fromUtf8 = QtCore.QString.fromUtf8
+except AttributeError:
+    def _fromUtf8(s):
+        return s
+
+try:
+    _encoding = QtGui.QApplication.UnicodeUTF8
+    def _translate(context, text, disambig):
+        return QtGui.QApplication.translate(context, text, disambig, _encoding)
+except AttributeError:
+    def _translate(context, text, disambig):
+        return QtGui.QApplication.translate(context, text, disambig)
+
+class Ui_editionDecor(object):
+    def setupUi(self, editionDecor):
+        editionDecor.setObjectName(_fromUtf8("editionDecor"))
+        editionDecor.resize(647, 511)
+        self.nomDecor = QtGui.QLineEdit(editionDecor)
+        self.nomDecor.setGeometry(QtCore.QRect(112, 10, 261, 20))
+        self.nomDecor.setObjectName(_fromUtf8("nomDecor"))
+        self.imgDecor = QtGui.QLineEdit(editionDecor)
+        self.imgDecor.setGeometry(QtCore.QRect(170, 110, 191, 20))
+        self.imgDecor.setObjectName(_fromUtf8("imgDecor"))
+        self.enregistrerDecor = QtGui.QPushButton(editionDecor)
+        self.enregistrerDecor.setEnabled(False)
+        self.enregistrerDecor.setGeometry(QtCore.QRect(120, 460, 81, 23))
+        font = QtGui.QFont()
+        font.setBold(True)
+        font.setWeight(75)
+        self.enregistrerDecor.setFont(font)
+        self.enregistrerDecor.setObjectName(_fromUtf8("enregistrerDecor"))
+        self.escaladeDecor = QtGui.QCheckBox(editionDecor)
+        self.escaladeDecor.setGeometry(QtCore.QRect(430, 50, 81, 17))
+        self.escaladeDecor.setChecked(True)
+        self.escaladeDecor.setObjectName(_fromUtf8("escaladeDecor"))
+        self.couvertDecor = QtGui.QCheckBox(editionDecor)
+        self.couvertDecor.setGeometry(QtCore.QRect(430, 70, 61, 17))
+        self.couvertDecor.setChecked(True)
+        self.couvertDecor.setObjectName(_fromUtf8("couvertDecor"))
+        self.label_3 = QtGui.QLabel(editionDecor)
+        self.label_3.setGeometry(QtCore.QRect(20, 10, 46, 16))
+        self.label_3.setObjectName(_fromUtf8("label_3"))
+        self.label_2 = QtGui.QLabel(editionDecor)
+        self.label_2.setGeometry(QtCore.QRect(110, 80, 41, 21))
+        self.label_2.setObjectName(_fromUtf8("label_2"))
+        self.affichageCouleurDecor = QtGui.QLabel(editionDecor)
+        self.affichageCouleurDecor.setGeometry(QtCore.QRect(100, 40, 51, 21))
+        self.affichageCouleurDecor.setFrameShape(QtGui.QFrame.Box)
+        self.affichageCouleurDecor.setFrameShadow(QtGui.QFrame.Sunken)
+        self.affichageCouleurDecor.setText(_fromUtf8(""))
+        self.affichageCouleurDecor.setObjectName(_fromUtf8("affichageCouleurDecor"))
+        self.franchissableVolDecor = QtGui.QCheckBox(editionDecor)
+        self.franchissableVolDecor.setGeometry(QtCore.QRect(430, 30, 131, 17))
+        self.franchissableVolDecor.setChecked(True)
+        self.franchissableVolDecor.setObjectName(_fromUtf8("franchissableVolDecor"))
+        self.imgLogoDecor = QtGui.QLineEdit(editionDecor)
+        self.imgLogoDecor.setGeometry(QtCore.QRect(170, 80, 191, 20))
+        self.imgLogoDecor.setObjectName(_fromUtf8("imgLogoDecor"))
+        self.label_6 = QtGui.QLabel(editionDecor)
+        self.label_6.setGeometry(QtCore.QRect(430, 110, 101, 21))
+        self.label_6.setObjectName(_fromUtf8("label_6"))
+        self.label_8 = QtGui.QLabel(editionDecor)
+        self.label_8.setGeometry(QtCore.QRect(20, 110, 141, 20))
+        self.label_8.setObjectName(_fromUtf8("label_8"))
+        self.label = QtGui.QLabel(editionDecor)
+        self.label.setGeometry(QtCore.QRect(20, 80, 131, 20))
+        self.label.setObjectName(_fromUtf8("label"))
+        self.supprimerDecor = QtGui.QPushButton(editionDecor)
+        self.supprimerDecor.setEnabled(False)
+        self.supprimerDecor.setGeometry(QtCore.QRect(360, 460, 75, 23))
+        self.supprimerDecor.setObjectName(_fromUtf8("supprimerDecor"))
+        self.label_5 = QtGui.QLabel(editionDecor)
+        self.label_5.setGeometry(QtCore.QRect(170, 40, 191, 21))
+        font = QtGui.QFont()
+        font.setItalic(True)
+        self.label_5.setFont(font)
+        self.label_5.setObjectName(_fromUtf8("label_5"))
+        self.hauteurDecor = QtGui.QDoubleSpinBox(editionDecor)
+        self.hauteurDecor.setGeometry(QtCore.QRect(540, 110, 41, 22))
+        self.hauteurDecor.setPrefix(_fromUtf8(""))
+        self.hauteurDecor.setDecimals(0)
+        self.hauteurDecor.setSingleStep(1.0)
+        self.hauteurDecor.setProperty("value", 1.0)
+        self.hauteurDecor.setObjectName(_fromUtf8("hauteurDecor"))
+        self.label_7 = QtGui.QLabel(editionDecor)
+        self.label_7.setGeometry(QtCore.QRect(110, 110, 41, 21))
+        self.label_7.setObjectName(_fromUtf8("label_7"))
+        self.label_9 = QtGui.QLabel(editionDecor)
+        self.label_9.setGeometry(QtCore.QRect(20, 140, 321, 20))
+        self.label_9.setObjectName(_fromUtf8("label_9"))
+        self.couleurDecor = QtGui.QPushButton(editionDecor)
+        self.couleurDecor.setGeometry(QtCore.QRect(10, 40, 75, 23))
+        self.couleurDecor.setObjectName(_fromUtf8("couleurDecor"))
+        self.franchissablePiedDecor = QtGui.QCheckBox(editionDecor)
+        self.franchissablePiedDecor.setGeometry(QtCore.QRect(430, 10, 151, 20))
+        self.franchissablePiedDecor.setChecked(True)
+        self.franchissablePiedDecor.setObjectName(_fromUtf8("franchissablePiedDecor"))
+        self.vueForme = QtGui.QGraphicsView(editionDecor)
+        self.vueForme.setGeometry(QtCore.QRect(20, 170, 341, 281))
+        self.vueForme.setRenderHints(QtGui.QPainter.Antialiasing|QtGui.QPainter.HighQualityAntialiasing|QtGui.QPainter.TextAntialiasing)
+        self.vueForme.setObjectName(_fromUtf8("vueForme"))
+        self.bruleDecor = QtGui.QCheckBox(editionDecor)
+        self.bruleDecor.setGeometry(QtCore.QRect(430, 90, 61, 17))
+        self.bruleDecor.setChecked(True)
+        self.bruleDecor.setObjectName(_fromUtf8("bruleDecor"))
+        self.groupBox = QtGui.QGroupBox(editionDecor)
+        self.groupBox.setGeometry(QtCore.QRect(370, 160, 141, 291))
+        self.groupBox.setObjectName(_fromUtf8("groupBox"))
+        self.imgAfficherDecor = QtGui.QCheckBox(self.groupBox)
+        self.imgAfficherDecor.setGeometry(QtCore.QRect(100, 10, 21, 21))
+        self.imgAfficherDecor.setText(_fromUtf8(""))
+        self.imgAfficherDecor.setChecked(True)
+        self.imgAfficherDecor.setObjectName(_fromUtf8("imgAfficherDecor"))
+        self.imgPosYDecor = QtGui.QSlider(self.groupBox)
+        self.imgPosYDecor.setGeometry(QtCore.QRect(10, 200, 111, 19))
+        self.imgPosYDecor.setMinimum(-400)
+        self.imgPosYDecor.setMaximum(400)
+        self.imgPosYDecor.setOrientation(QtCore.Qt.Horizontal)
+        self.imgPosYDecor.setObjectName(_fromUtf8("imgPosYDecor"))
+        self.label_12 = QtGui.QLabel(self.groupBox)
+        self.label_12.setGeometry(QtCore.QRect(10, 60, 111, 20))
+        self.label_12.setObjectName(_fromUtf8("label_12"))
+        self.label_13 = QtGui.QLabel(self.groupBox)
+        self.label_13.setGeometry(QtCore.QRect(10, 100, 111, 20))
+        self.label_13.setObjectName(_fromUtf8("label_13"))
+        self.label_14 = QtGui.QLabel(self.groupBox)
+        self.label_14.setGeometry(QtCore.QRect(10, 140, 111, 20))
+        self.label_14.setObjectName(_fromUtf8("label_14"))
+        self.imgTailleXDecor = QtGui.QSlider(self.groupBox)
+        self.imgTailleXDecor.setGeometry(QtCore.QRect(10, 80, 111, 19))
+        self.imgTailleXDecor.setMinimum(0)
+        self.imgTailleXDecor.setProperty("value", 10)
+        self.imgTailleXDecor.setOrientation(QtCore.Qt.Horizontal)
+        self.imgTailleXDecor.setObjectName(_fromUtf8("imgTailleXDecor"))
+        self.imgRotationDecor = QtGui.QSlider(self.groupBox)
+        self.imgRotationDecor.setGeometry(QtCore.QRect(10, 40, 111, 19))
+        self.imgRotationDecor.setMinimum(-180)
+        self.imgRotationDecor.setMaximum(180)
+        self.imgRotationDecor.setOrientation(QtCore.Qt.Horizontal)
+        self.imgRotationDecor.setObjectName(_fromUtf8("imgRotationDecor"))
+        self.label_16 = QtGui.QLabel(self.groupBox)
+        self.label_16.setGeometry(QtCore.QRect(10, 20, 111, 20))
+        self.label_16.setObjectName(_fromUtf8("label_16"))
+        self.imgPosXDecor = QtGui.QSlider(self.groupBox)
+        self.imgPosXDecor.setGeometry(QtCore.QRect(10, 160, 111, 19))
+        self.imgPosXDecor.setMinimum(-400)
+        self.imgPosXDecor.setMaximum(400)
+        self.imgPosXDecor.setOrientation(QtCore.Qt.Horizontal)
+        self.imgPosXDecor.setObjectName(_fromUtf8("imgPosXDecor"))
+        self.label_15 = QtGui.QLabel(self.groupBox)
+        self.label_15.setGeometry(QtCore.QRect(10, 180, 111, 20))
+        self.label_15.setObjectName(_fromUtf8("label_15"))
+        self.imgTailleYDecor = QtGui.QSlider(self.groupBox)
+        self.imgTailleYDecor.setGeometry(QtCore.QRect(10, 120, 111, 19))
+        self.imgTailleYDecor.setMinimum(0)
+        self.imgTailleYDecor.setProperty("value", 10)
+        self.imgTailleYDecor.setOrientation(QtCore.Qt.Horizontal)
+        self.imgTailleYDecor.setObjectName(_fromUtf8("imgTailleYDecor"))
+        self.imgReinitDecor = QtGui.QPushButton(self.groupBox)
+        self.imgReinitDecor.setGeometry(QtCore.QRect(10, 260, 111, 20))
+        self.imgReinitDecor.setObjectName(_fromUtf8("imgReinitDecor"))
+        self.imgPivoteDecor = QtGui.QCheckBox(self.groupBox)
+        self.imgPivoteDecor.setGeometry(QtCore.QRect(10, 220, 101, 17))
+        self.imgPivoteDecor.setObjectName(_fromUtf8("imgPivoteDecor"))
+        self.imgMasqueDecor = QtGui.QCheckBox(self.groupBox)
+        self.imgMasqueDecor.setGeometry(QtCore.QRect(10, 240, 101, 17))
+        self.imgMasqueDecor.setObjectName(_fromUtf8("imgMasqueDecor"))
+        self.idDecor = QtGui.QLineEdit(editionDecor)
+        self.idDecor.setEnabled(False)
+        self.idDecor.setGeometry(QtCore.QRect(42, 10, 31, 20))
+        self.idDecor.setObjectName(_fromUtf8("idDecor"))
+        self.label_4 = QtGui.QLabel(editionDecor)
+        self.label_4.setGeometry(QtCore.QRect(80, 10, 46, 16))
+        self.label_4.setObjectName(_fromUtf8("label_4"))
+        self.annulerDecor = QtGui.QPushButton(editionDecor)
+        self.annulerDecor.setGeometry(QtCore.QRect(460, 460, 81, 23))
+        self.annulerDecor.setObjectName(_fromUtf8("annulerDecor"))
+
+        self.retranslateUi(editionDecor)
+        QtCore.QMetaObject.connectSlotsByName(editionDecor)
+
+    def retranslateUi(self, editionDecor):
+        editionDecor.setWindowTitle(_translate("editionDecor", "Dialog", None))
+        self.enregistrerDecor.setText(_translate("editionDecor", "Enregistrer", None))
+        self.escaladeDecor.setText(_translate("editionDecor", "Escalade", None))
+        self.couvertDecor.setText(_translate("editionDecor", "Couvert", None))
+        self.label_3.setText(_translate("editionDecor", "Id : ", None))
+        self.label_2.setText(_translate("editionDecor", "...img\\", None))
+        self.franchissableVolDecor.setText(_translate("editionDecor", "Franchissable en vol", None))
+        self.label_6.setText(_translate("editionDecor", "Hauteur (en cases)", None))
+        self.label_8.setText(_translate("editionDecor", "Image (.png, .jpg)", None))
+        self.label.setText(_translate("editionDecor", "Logo (.png, .jpg)", None))
+        self.supprimerDecor.setText(_translate("editionDecor", "Supprimer", None))
+        self.label_5.setText(_translate("editionDecor", "(Couleur du décor si pas d\'image)", None))
+        self.label_7.setText(_translate("editionDecor", "...img\\", None))
+        self.label_9.setText(_translate("editionDecor", "Forme du décor : ", None))
+        self.couleurDecor.setText(_translate("editionDecor", "Couleur", None))
+        self.franchissablePiedDecor.setText(_translate("editionDecor", "Franchissable à pied", None))
+        self.bruleDecor.setText(_translate("editionDecor", "Brule", None))
+        self.groupBox.setTitle(_translate("editionDecor", "Image", None))
+        self.label_12.setText(_translate("editionDecor", "Taille (X)", None))
+        self.label_13.setText(_translate("editionDecor", "Taille (Y)", None))
+        self.label_14.setText(_translate("editionDecor", "Position (X)", None))
+        self.label_16.setText(_translate("editionDecor", "Rotation", None))
+        self.label_15.setText(_translate("editionDecor", "Position (Y)", None))
+        self.imgReinitDecor.setText(_translate("editionDecor", "Ré-initialiser", None))
+        self.imgPivoteDecor.setText(_translate("editionDecor", "Image pivote", None))
+        self.imgMasqueDecor.setText(_translate("editionDecor", "Masque auto.", None))
+        self.label_4.setText(_translate("editionDecor", "Nom : ", None))
+        self.annulerDecor.setText(_translate("editionDecor", "Annuler", None))
+
+
+if __name__ == "__main__":
+    import sys
+    app = QtGui.QApplication(sys.argv)
+    editionDecor = QtGui.QDialog()
+    ui = Ui_editionDecor()
+    ui.setupUi(editionDecor)
+    editionDecor.show()
+    sys.exit(app.exec_())
+

+ 230 - 58
lib/ui/editionCombattant.ui

@@ -10,7 +10,7 @@
     <x>0</x>
     <y>0</y>
     <width>667</width>
-    <height>514</height>
+    <height>484</height>
    </rect>
   </property>
   <property name="minimumSize">
@@ -503,7 +503,7 @@
           </size>
          </property>
          <property name="currentIndex">
-          <number>0</number>
+          <number>3</number>
          </property>
          <widget class="QWidget" name="page_nom">
           <widget class="DmLineEdit" name="edc_nom">
@@ -765,11 +765,6 @@ image</string>
             </property>
            </widget>
           </widget>
-          <zorder>edc_nom</zorder>
-          <zorder>edc_logo</zorder>
-          <zorder>label_8</zorder>
-          <zorder>frame_2</zorder>
-          <zorder>edc_menu</zorder>
          </widget>
          <widget class="QWidget" name="page_dep">
           <widget class="QLabel" name="label_9">
@@ -1492,7 +1487,155 @@ image</string>
            </property>
           </widget>
          </widget>
-         <widget class="QWidget" name="page_att"/>
+         <widget class="QWidget" name="page_att">
+          <widget class="QToolButton" name="nouvelleAttaque">
+           <property name="geometry">
+            <rect>
+             <x>390</x>
+             <y>200</y>
+             <width>31</width>
+             <height>21</height>
+            </rect>
+           </property>
+           <property name="text">
+            <string>...</string>
+           </property>
+           <property name="icon">
+            <iconset>
+             <normaloff>img/plus.png</normaloff>img/plus.png</iconset>
+           </property>
+          </widget>
+          <widget class="QTableWidget" name="editionListeAttaques">
+           <property name="geometry">
+            <rect>
+             <x>40</x>
+             <y>20</y>
+             <width>421</width>
+             <height>171</height>
+            </rect>
+           </property>
+           <property name="palette">
+            <palette>
+             <active>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>248</red>
+                 <green>248</green>
+                 <blue>248</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </active>
+             <inactive>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>248</red>
+                 <green>248</green>
+                 <blue>248</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </inactive>
+             <disabled>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>240</red>
+                 <green>240</green>
+                 <blue>240</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </disabled>
+            </palette>
+           </property>
+           <property name="selectionMode">
+            <enum>QAbstractItemView::SingleSelection</enum>
+           </property>
+           <property name="selectionBehavior">
+            <enum>QAbstractItemView::SelectRows</enum>
+           </property>
+          </widget>
+          <widget class="QToolButton" name="supprimerAttaque">
+           <property name="geometry">
+            <rect>
+             <x>430</x>
+             <y>200</y>
+             <width>31</width>
+             <height>21</height>
+            </rect>
+           </property>
+           <property name="text">
+            <string>...</string>
+           </property>
+           <property name="icon">
+            <iconset>
+             <normaloff>img/gomme.png</normaloff>img/gomme.png</iconset>
+           </property>
+          </widget>
+          <widget class="QTextEdit" name="textEdit">
+           <property name="geometry">
+            <rect>
+             <x>40</x>
+             <y>390</y>
+             <width>421</width>
+             <height>51</height>
+            </rect>
+           </property>
+           <property name="palette">
+            <palette>
+             <active>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>248</red>
+                 <green>248</green>
+                 <blue>248</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </active>
+             <inactive>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>248</red>
+                 <green>248</green>
+                 <blue>248</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </inactive>
+             <disabled>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>240</red>
+                 <green>240</green>
+                 <blue>240</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </disabled>
+            </palette>
+           </property>
+          </widget>
+          <widget class="QLabel" name="label">
+           <property name="geometry">
+            <rect>
+             <x>40</x>
+             <y>370</y>
+             <width>46</width>
+             <height>13</height>
+            </rect>
+           </property>
+           <property name="text">
+            <string>Notes : </string>
+           </property>
+          </widget>
+         </widget>
          <widget class="QWidget" name="page_invent">
           <widget class="QTableWidget" name="edc_listeInventaire">
            <property name="geometry">
@@ -1641,7 +1784,7 @@ image</string>
            <property name="geometry">
             <rect>
              <x>20</x>
-             <y>230</y>
+             <y>240</y>
              <width>151</width>
              <height>20</height>
             </rect>
@@ -1659,11 +1802,48 @@ image</string>
            <property name="geometry">
             <rect>
              <x>20</x>
-             <y>257</y>
-             <width>381</width>
+             <y>270</y>
+             <width>411</width>
              <height>171</height>
             </rect>
            </property>
+           <property name="palette">
+            <palette>
+             <active>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>248</red>
+                 <green>248</green>
+                 <blue>248</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </active>
+             <inactive>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>248</red>
+                 <green>248</green>
+                 <blue>248</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </inactive>
+             <disabled>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>240</red>
+                 <green>240</green>
+                 <blue>240</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </disabled>
+            </palette>
+           </property>
            <property name="font">
             <font>
              <family>Verdana</family>
@@ -1673,9 +1853,9 @@ image</string>
           <widget class="DmLineEdit" name="edc_detail_age">
            <property name="geometry">
             <rect>
-             <x>340</x>
-             <y>21</y>
-             <width>61</width>
+             <x>350</x>
+             <y>20</y>
+             <width>81</width>
              <height>20</height>
             </rect>
            </property>
@@ -1725,8 +1905,8 @@ image</string>
           <widget class="QLabel" name="label_16">
            <property name="geometry">
             <rect>
-             <x>290</x>
-             <y>20</y>
+             <x>300</x>
+             <y>19</y>
              <width>41</width>
              <height>21</height>
             </rect>
@@ -1744,8 +1924,8 @@ image</string>
           <widget class="QLabel" name="label_17">
            <property name="geometry">
             <rect>
-             <x>290</x>
-             <y>50</y>
+             <x>300</x>
+             <y>49</y>
              <width>41</width>
              <height>21</height>
             </rect>
@@ -1763,9 +1943,9 @@ image</string>
           <widget class="DmLineEdit" name="edc_detail_sexe">
            <property name="geometry">
             <rect>
-             <x>340</x>
-             <y>50</y>
-             <width>61</width>
+             <x>350</x>
+             <y>49</y>
+             <width>81</width>
              <height>20</height>
             </rect>
            </property>
@@ -1963,10 +2143,10 @@ image</string>
           <widget class="QLabel" name="label_39">
            <property name="geometry">
             <rect>
-             <x>20</x>
-             <y>190</y>
-             <width>91</width>
-             <height>31</height>
+             <x>210</x>
+             <y>140</y>
+             <width>101</width>
+             <height>21</height>
             </rect>
            </property>
            <property name="font">
@@ -1976,15 +2156,14 @@ image</string>
             </font>
            </property>
            <property name="text">
-            <string>Poils /
-Cheveux :</string>
+            <string>Poils /Cheveux :</string>
            </property>
           </widget>
           <widget class="DmLineEdit" name="edc_detail_cheveux">
            <property name="geometry">
             <rect>
-             <x>100</x>
-             <y>200</y>
+             <x>320</x>
+             <y>140</y>
              <width>91</width>
              <height>20</height>
             </rect>
@@ -2113,8 +2292,8 @@ naissance :</string>
           <widget class="QLabel" name="label_41">
            <property name="geometry">
             <rect>
-             <x>290</x>
-             <y>80</y>
+             <x>300</x>
+             <y>79</y>
              <width>41</width>
              <height>21</height>
             </rect>
@@ -2132,9 +2311,9 @@ naissance :</string>
           <widget class="DmLineEdit" name="edc_detail_poids">
            <property name="geometry">
             <rect>
-             <x>340</x>
-             <y>81</y>
-             <width>61</width>
+             <x>350</x>
+             <y>80</y>
+             <width>81</width>
              <height>20</height>
             </rect>
            </property>
@@ -2332,8 +2511,8 @@ naissance :</string>
           <widget class="QLabel" name="label_45">
            <property name="geometry">
             <rect>
-             <x>290</x>
-             <y>110</y>
+             <x>300</x>
+             <y>109</y>
              <width>41</width>
              <height>21</height>
             </rect>
@@ -2351,9 +2530,9 @@ naissance :</string>
           <widget class="DmLineEdit" name="edc_detail_taille">
            <property name="geometry">
             <rect>
-             <x>340</x>
-             <y>110</y>
-             <width>61</width>
+             <x>350</x>
+             <y>109</y>
+             <width>81</width>
              <height>21</height>
             </rect>
            </property>
@@ -2481,10 +2660,10 @@ Croyances :</string>
           <widget class="DmLineEdit" name="edc_detail_langues">
            <property name="geometry">
             <rect>
-             <x>210</x>
-             <y>170</y>
-             <width>191</width>
-             <height>51</height>
+             <x>100</x>
+             <y>200</y>
+             <width>331</width>
+             <height>20</height>
             </rect>
            </property>
            <property name="palette">
@@ -2524,22 +2703,14 @@ Croyances :</string>
              </disabled>
             </palette>
            </property>
-           <property name="font">
-            <font>
-             <family>Verdana</family>
-            </font>
-           </property>
-           <property name="text">
-            <string/>
-           </property>
           </widget>
-          <widget class="QLabel" name="label_46">
+          <widget class="QLabel" name="label_47">
            <property name="geometry">
             <rect>
-             <x>210</x>
-             <y>140</y>
-             <width>101</width>
-             <height>31</height>
+             <x>20</x>
+             <y>190</y>
+             <width>61</width>
+             <height>41</height>
             </rect>
            </property>
            <property name="font">
@@ -2549,7 +2720,8 @@ Croyances :</string>
             </font>
            </property>
            <property name="text">
-            <string>Langues parlées :</string>
+            <string>Langues
+parlées : </string>
            </property>
           </widget>
          </widget>
@@ -2581,7 +2753,7 @@ Croyances :</string>
           </property>
           <property name="geometry">
            <rect>
-            <x>330</x>
+            <x>370</x>
             <y>10</y>
             <width>91</width>
             <height>31</height>

+ 2016 - 587
lib/ui/editionDecor.ui

@@ -1,602 +1,2031 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <ui version="4.0">
- <class>editionDecor</class>
- <widget class="QDialog" name="editionDecor">
+ <class>Dialog</class>
+ <widget class="QDialog" name="Dialog">
   <property name="geometry">
    <rect>
     <x>0</x>
     <y>0</y>
-    <width>607</width>
-    <height>507</height>
+    <width>679</width>
+    <height>528</height>
    </rect>
   </property>
   <property name="windowTitle">
    <string>Dialog</string>
   </property>
-  <widget class="QLineEdit" name="nomDecor">
-   <property name="geometry">
-    <rect>
-     <x>112</x>
-     <y>10</y>
-     <width>261</width>
-     <height>20</height>
-    </rect>
-   </property>
-  </widget>
-  <widget class="QLineEdit" name="imgDecor">
-   <property name="geometry">
-    <rect>
-     <x>170</x>
-     <y>110</y>
-     <width>191</width>
-     <height>20</height>
-    </rect>
-   </property>
-  </widget>
-  <widget class="QPushButton" name="enregistrerDecor">
-   <property name="enabled">
-    <bool>false</bool>
-   </property>
-   <property name="geometry">
-    <rect>
-     <x>120</x>
-     <y>460</y>
-     <width>81</width>
-     <height>23</height>
-    </rect>
-   </property>
-   <property name="font">
-    <font>
-     <weight>75</weight>
-     <bold>true</bold>
-    </font>
-   </property>
-   <property name="text">
-    <string>Enregistrer</string>
-   </property>
-  </widget>
-  <widget class="QCheckBox" name="escaladeDecor">
-   <property name="geometry">
-    <rect>
-     <x>430</x>
-     <y>50</y>
-     <width>81</width>
-     <height>17</height>
-    </rect>
-   </property>
-   <property name="text">
-    <string>Escalade</string>
-   </property>
-   <property name="checked">
-    <bool>true</bool>
-   </property>
-  </widget>
-  <widget class="QCheckBox" name="couvertDecor">
-   <property name="geometry">
-    <rect>
-     <x>430</x>
-     <y>70</y>
-     <width>61</width>
-     <height>17</height>
-    </rect>
-   </property>
-   <property name="text">
-    <string>Couvert</string>
-   </property>
-   <property name="checked">
-    <bool>true</bool>
-   </property>
-  </widget>
-  <widget class="QLabel" name="label_3">
-   <property name="geometry">
-    <rect>
-     <x>20</x>
-     <y>10</y>
-     <width>46</width>
-     <height>16</height>
-    </rect>
-   </property>
-   <property name="text">
-    <string>Id : </string>
-   </property>
-  </widget>
-  <widget class="QLabel" name="label_2">
-   <property name="geometry">
-    <rect>
-     <x>110</x>
-     <y>80</y>
-     <width>41</width>
-     <height>21</height>
-    </rect>
-   </property>
-   <property name="text">
-    <string>...img\</string>
-   </property>
-  </widget>
-  <widget class="QLabel" name="affichageCouleurDecor">
-   <property name="geometry">
-    <rect>
-     <x>100</x>
-     <y>40</y>
-     <width>51</width>
-     <height>21</height>
-    </rect>
-   </property>
-   <property name="frameShape">
-    <enum>QFrame::Box</enum>
-   </property>
-   <property name="frameShadow">
-    <enum>QFrame::Sunken</enum>
-   </property>
-   <property name="text">
-    <string/>
-   </property>
-  </widget>
-  <widget class="QCheckBox" name="franchissableVolDecor">
-   <property name="geometry">
-    <rect>
-     <x>430</x>
-     <y>30</y>
-     <width>131</width>
-     <height>17</height>
-    </rect>
-   </property>
-   <property name="text">
-    <string>Franchissable en vol</string>
-   </property>
-   <property name="checked">
-    <bool>true</bool>
-   </property>
-  </widget>
-  <widget class="QLineEdit" name="imgLogoDecor">
-   <property name="geometry">
-    <rect>
-     <x>170</x>
-     <y>80</y>
-     <width>191</width>
-     <height>20</height>
-    </rect>
-   </property>
-  </widget>
-  <widget class="QLabel" name="label_6">
-   <property name="geometry">
-    <rect>
-     <x>430</x>
-     <y>110</y>
-     <width>101</width>
-     <height>21</height>
-    </rect>
-   </property>
-   <property name="text">
-    <string>Hauteur (en cases)</string>
-   </property>
-  </widget>
-  <widget class="QLabel" name="label_8">
-   <property name="geometry">
-    <rect>
-     <x>20</x>
-     <y>110</y>
-     <width>141</width>
-     <height>20</height>
-    </rect>
-   </property>
-   <property name="text">
-    <string>Image (.png, .jpg)</string>
-   </property>
-  </widget>
-  <widget class="QLabel" name="label">
-   <property name="geometry">
-    <rect>
-     <x>20</x>
-     <y>80</y>
-     <width>131</width>
-     <height>20</height>
-    </rect>
-   </property>
-   <property name="text">
-    <string>Logo (.png, .jpg)</string>
-   </property>
-  </widget>
-  <widget class="QPushButton" name="supprimerDecor">
-   <property name="enabled">
-    <bool>false</bool>
-   </property>
-   <property name="geometry">
-    <rect>
-     <x>360</x>
-     <y>460</y>
-     <width>75</width>
-     <height>23</height>
-    </rect>
-   </property>
-   <property name="text">
-    <string>Supprimer</string>
-   </property>
-  </widget>
-  <widget class="QDoubleSpinBox" name="hauteurDecor">
-   <property name="geometry">
-    <rect>
-     <x>540</x>
-     <y>110</y>
-     <width>41</width>
-     <height>22</height>
-    </rect>
-   </property>
-   <property name="prefix">
-    <string/>
-   </property>
-   <property name="decimals">
-    <number>0</number>
-   </property>
-   <property name="singleStep">
-    <double>1.000000000000000</double>
-   </property>
-   <property name="value">
-    <double>1.000000000000000</double>
-   </property>
-  </widget>
-  <widget class="QLabel" name="label_7">
-   <property name="geometry">
-    <rect>
-     <x>110</x>
-     <y>110</y>
-     <width>41</width>
-     <height>21</height>
-    </rect>
-   </property>
-   <property name="text">
-    <string>...img\</string>
-   </property>
-  </widget>
-  <widget class="QLabel" name="label_9">
-   <property name="geometry">
-    <rect>
-     <x>20</x>
-     <y>140</y>
-     <width>321</width>
-     <height>20</height>
-    </rect>
-   </property>
-   <property name="text">
-    <string>Forme du décor : </string>
-   </property>
-  </widget>
-  <widget class="QPushButton" name="couleurDecor">
-   <property name="geometry">
-    <rect>
-     <x>10</x>
-     <y>40</y>
-     <width>75</width>
-     <height>23</height>
-    </rect>
-   </property>
-   <property name="text">
-    <string>Couleur</string>
-   </property>
-  </widget>
-  <widget class="QCheckBox" name="franchissablePiedDecor">
-   <property name="geometry">
-    <rect>
-     <x>430</x>
-     <y>10</y>
-     <width>151</width>
-     <height>20</height>
-    </rect>
-   </property>
-   <property name="text">
-    <string>Franchissable à pied</string>
-   </property>
-   <property name="checked">
-    <bool>true</bool>
-   </property>
-  </widget>
-  <widget class="QGraphicsView" name="vueForme">
-   <property name="geometry">
-    <rect>
-     <x>20</x>
-     <y>170</y>
-     <width>341</width>
-     <height>281</height>
-    </rect>
-   </property>
-   <property name="renderHints">
-    <set>QPainter::Antialiasing|QPainter::HighQualityAntialiasing|QPainter::TextAntialiasing</set>
-   </property>
-  </widget>
-  <widget class="QCheckBox" name="bruleDecor">
-   <property name="geometry">
-    <rect>
-     <x>430</x>
-     <y>90</y>
-     <width>61</width>
-     <height>17</height>
-    </rect>
-   </property>
-   <property name="text">
-    <string>Brule</string>
-   </property>
-   <property name="checked">
-    <bool>true</bool>
-   </property>
-  </widget>
-  <widget class="QGroupBox" name="groupBox">
-   <property name="geometry">
-    <rect>
-     <x>370</x>
-     <y>160</y>
-     <width>141</width>
-     <height>291</height>
-    </rect>
-   </property>
-   <property name="title">
-    <string>Image</string>
-   </property>
-   <widget class="QCheckBox" name="imgAfficherDecor">
-    <property name="geometry">
-     <rect>
-      <x>100</x>
-      <y>10</y>
-      <width>21</width>
-      <height>21</height>
-     </rect>
-    </property>
-    <property name="text">
-     <string/>
-    </property>
-    <property name="checked">
-     <bool>true</bool>
-    </property>
-   </widget>
-   <widget class="QSlider" name="imgPosYDecor">
-    <property name="geometry">
-     <rect>
-      <x>10</x>
-      <y>200</y>
-      <width>111</width>
-      <height>19</height>
-     </rect>
-    </property>
-    <property name="minimum">
-     <number>-400</number>
-    </property>
-    <property name="maximum">
-     <number>400</number>
-    </property>
-    <property name="orientation">
-     <enum>Qt::Horizontal</enum>
-    </property>
-   </widget>
-   <widget class="QLabel" name="label_12">
-    <property name="geometry">
-     <rect>
-      <x>10</x>
-      <y>60</y>
-      <width>111</width>
-      <height>20</height>
-     </rect>
-    </property>
-    <property name="text">
-     <string>Taille (X)</string>
-    </property>
-   </widget>
-   <widget class="QLabel" name="label_13">
-    <property name="geometry">
-     <rect>
-      <x>10</x>
-      <y>100</y>
-      <width>111</width>
-      <height>20</height>
-     </rect>
-    </property>
-    <property name="text">
-     <string>Taille (Y)</string>
-    </property>
-   </widget>
-   <widget class="QLabel" name="label_14">
-    <property name="geometry">
-     <rect>
-      <x>10</x>
-      <y>140</y>
-      <width>111</width>
-      <height>20</height>
-     </rect>
-    </property>
-    <property name="text">
-     <string>Position (X)</string>
-    </property>
-   </widget>
-   <widget class="QSlider" name="imgTailleXDecor">
-    <property name="geometry">
-     <rect>
-      <x>10</x>
-      <y>80</y>
-      <width>111</width>
-      <height>19</height>
-     </rect>
-    </property>
-    <property name="minimum">
-     <number>0</number>
-    </property>
-    <property name="value">
-     <number>10</number>
-    </property>
-    <property name="orientation">
-     <enum>Qt::Horizontal</enum>
-    </property>
-   </widget>
-   <widget class="QSlider" name="imgRotationDecor">
-    <property name="geometry">
-     <rect>
-      <x>10</x>
-      <y>40</y>
-      <width>111</width>
-      <height>19</height>
-     </rect>
-    </property>
-    <property name="minimum">
-     <number>-180</number>
-    </property>
-    <property name="maximum">
-     <number>180</number>
-    </property>
-    <property name="orientation">
-     <enum>Qt::Horizontal</enum>
-    </property>
-   </widget>
-   <widget class="QLabel" name="label_16">
-    <property name="geometry">
-     <rect>
-      <x>10</x>
-      <y>20</y>
-      <width>111</width>
-      <height>20</height>
-     </rect>
-    </property>
-    <property name="text">
-     <string>Rotation</string>
-    </property>
-   </widget>
-   <widget class="QSlider" name="imgPosXDecor">
-    <property name="geometry">
-     <rect>
-      <x>10</x>
-      <y>160</y>
-      <width>111</width>
-      <height>19</height>
-     </rect>
-    </property>
-    <property name="minimum">
-     <number>-400</number>
-    </property>
-    <property name="maximum">
-     <number>400</number>
-    </property>
-    <property name="orientation">
-     <enum>Qt::Horizontal</enum>
-    </property>
-   </widget>
-   <widget class="QLabel" name="label_15">
-    <property name="geometry">
-     <rect>
-      <x>10</x>
-      <y>180</y>
-      <width>111</width>
-      <height>20</height>
-     </rect>
-    </property>
-    <property name="text">
-     <string>Position (Y)</string>
-    </property>
-   </widget>
-   <widget class="QSlider" name="imgTailleYDecor">
-    <property name="geometry">
-     <rect>
-      <x>10</x>
-      <y>120</y>
-      <width>111</width>
-      <height>19</height>
-     </rect>
-    </property>
-    <property name="minimum">
-     <number>0</number>
-    </property>
-    <property name="value">
-     <number>10</number>
-    </property>
-    <property name="orientation">
-     <enum>Qt::Horizontal</enum>
-    </property>
-   </widget>
-   <widget class="QPushButton" name="imgReinitDecor">
-    <property name="geometry">
-     <rect>
-      <x>10</x>
-      <y>260</y>
-      <width>111</width>
-      <height>20</height>
-     </rect>
-    </property>
-    <property name="text">
-     <string>Ré-initialiser</string>
-    </property>
-   </widget>
-   <widget class="QCheckBox" name="imgPivoteDecor">
-    <property name="geometry">
-     <rect>
-      <x>10</x>
-      <y>220</y>
-      <width>101</width>
-      <height>17</height>
-     </rect>
-    </property>
-    <property name="text">
-     <string>Image pivote</string>
-    </property>
-   </widget>
-   <widget class="QCheckBox" name="imgMasqueDecor">
-    <property name="geometry">
-     <rect>
-      <x>10</x>
-      <y>240</y>
-      <width>101</width>
-      <height>17</height>
-     </rect>
-    </property>
-    <property name="text">
-     <string>Masque auto.</string>
-    </property>
-   </widget>
-  </widget>
-  <widget class="QLineEdit" name="idDecor">
-   <property name="enabled">
-    <bool>false</bool>
-   </property>
-   <property name="geometry">
-    <rect>
-     <x>42</x>
-     <y>10</y>
-     <width>31</width>
-     <height>20</height>
-    </rect>
-   </property>
-  </widget>
-  <widget class="QLabel" name="label_4">
-   <property name="geometry">
-    <rect>
-     <x>80</x>
-     <y>10</y>
-     <width>46</width>
-     <height>16</height>
-    </rect>
-   </property>
-   <property name="text">
-    <string>Nom : </string>
-   </property>
-  </widget>
-  <widget class="QPushButton" name="annulerDecor">
-   <property name="geometry">
-    <rect>
-     <x>460</x>
-     <y>460</y>
-     <width>81</width>
-     <height>23</height>
-    </rect>
-   </property>
-   <property name="text">
-    <string>Annuler</string>
-   </property>
-  </widget>
-  <widget class="QComboBox" name="listeCategories">
-   <property name="geometry">
-    <rect>
-     <x>230</x>
-     <y>40</y>
-     <width>141</width>
-     <height>22</height>
-    </rect>
-   </property>
-  </widget>
+  <layout class="QHBoxLayout" name="horizontalLayout_2">
+   <item>
+    <layout class="QHBoxLayout" name="horizontalLayout" stretch="0,1">
+     <property name="spacing">
+      <number>3</number>
+     </property>
+     <item>
+      <widget class="DmTableMenu" name="edc_menu">
+       <property name="sizePolicy">
+        <sizepolicy hsizetype="Fixed" vsizetype="Expanding">
+         <horstretch>0</horstretch>
+         <verstretch>0</verstretch>
+        </sizepolicy>
+       </property>
+       <property name="minimumSize">
+        <size>
+         <width>170</width>
+         <height>484</height>
+        </size>
+       </property>
+       <property name="maximumSize">
+        <size>
+         <width>170</width>
+         <height>484</height>
+        </size>
+       </property>
+       <property name="palette">
+        <palette>
+         <active>
+          <colorrole role="WindowText">
+           <brush brushstyle="SolidPattern">
+            <color alpha="255">
+             <red>6</red>
+             <green>6</green>
+             <blue>6</blue>
+            </color>
+           </brush>
+          </colorrole>
+          <colorrole role="Mid">
+           <brush brushstyle="SolidPattern">
+            <color alpha="255">
+             <red>190</red>
+             <green>190</green>
+             <blue>190</blue>
+            </color>
+           </brush>
+          </colorrole>
+          <colorrole role="Text">
+           <brush brushstyle="SolidPattern">
+            <color alpha="255">
+             <red>255</red>
+             <green>255</green>
+             <blue>255</blue>
+            </color>
+           </brush>
+          </colorrole>
+          <colorrole role="Base">
+           <brush brushstyle="SolidPattern">
+            <color alpha="255">
+             <red>140</red>
+             <green>140</green>
+             <blue>140</blue>
+            </color>
+           </brush>
+          </colorrole>
+          <colorrole role="Highlight">
+           <brush brushstyle="SolidPattern">
+            <color alpha="255">
+             <red>240</red>
+             <green>240</green>
+             <blue>240</blue>
+            </color>
+           </brush>
+          </colorrole>
+          <colorrole role="HighlightedText">
+           <brush brushstyle="SolidPattern">
+            <color alpha="255">
+             <red>7</red>
+             <green>7</green>
+             <blue>7</blue>
+            </color>
+           </brush>
+          </colorrole>
+         </active>
+         <inactive>
+          <colorrole role="WindowText">
+           <brush brushstyle="SolidPattern">
+            <color alpha="255">
+             <red>6</red>
+             <green>6</green>
+             <blue>6</blue>
+            </color>
+           </brush>
+          </colorrole>
+          <colorrole role="Mid">
+           <brush brushstyle="SolidPattern">
+            <color alpha="255">
+             <red>190</red>
+             <green>190</green>
+             <blue>190</blue>
+            </color>
+           </brush>
+          </colorrole>
+          <colorrole role="Text">
+           <brush brushstyle="SolidPattern">
+            <color alpha="255">
+             <red>255</red>
+             <green>255</green>
+             <blue>255</blue>
+            </color>
+           </brush>
+          </colorrole>
+          <colorrole role="Base">
+           <brush brushstyle="SolidPattern">
+            <color alpha="255">
+             <red>140</red>
+             <green>140</green>
+             <blue>140</blue>
+            </color>
+           </brush>
+          </colorrole>
+          <colorrole role="Highlight">
+           <brush brushstyle="SolidPattern">
+            <color alpha="255">
+             <red>240</red>
+             <green>240</green>
+             <blue>240</blue>
+            </color>
+           </brush>
+          </colorrole>
+          <colorrole role="HighlightedText">
+           <brush brushstyle="SolidPattern">
+            <color alpha="255">
+             <red>7</red>
+             <green>7</green>
+             <blue>7</blue>
+            </color>
+           </brush>
+          </colorrole>
+         </inactive>
+         <disabled>
+          <colorrole role="WindowText">
+           <brush brushstyle="SolidPattern">
+            <color alpha="255">
+             <red>120</red>
+             <green>120</green>
+             <blue>120</blue>
+            </color>
+           </brush>
+          </colorrole>
+          <colorrole role="Mid">
+           <brush brushstyle="SolidPattern">
+            <color alpha="255">
+             <red>190</red>
+             <green>190</green>
+             <blue>190</blue>
+            </color>
+           </brush>
+          </colorrole>
+          <colorrole role="Text">
+           <brush brushstyle="SolidPattern">
+            <color alpha="255">
+             <red>120</red>
+             <green>120</green>
+             <blue>120</blue>
+            </color>
+           </brush>
+          </colorrole>
+          <colorrole role="Base">
+           <brush brushstyle="SolidPattern">
+            <color alpha="255">
+             <red>240</red>
+             <green>240</green>
+             <blue>240</blue>
+            </color>
+           </brush>
+          </colorrole>
+          <colorrole role="Highlight">
+           <brush brushstyle="SolidPattern">
+            <color alpha="255">
+             <red>51</red>
+             <green>153</green>
+             <blue>255</blue>
+            </color>
+           </brush>
+          </colorrole>
+          <colorrole role="HighlightedText">
+           <brush brushstyle="SolidPattern">
+            <color alpha="255">
+             <red>7</red>
+             <green>7</green>
+             <blue>7</blue>
+            </color>
+           </brush>
+          </colorrole>
+         </disabled>
+        </palette>
+       </property>
+       <property name="font">
+        <font>
+         <family>Candara</family>
+         <pointsize>13</pointsize>
+         <weight>50</weight>
+         <bold>false</bold>
+        </font>
+       </property>
+       <property name="focusPolicy">
+        <enum>Qt::NoFocus</enum>
+       </property>
+       <property name="frameShape">
+        <enum>QFrame::StyledPanel</enum>
+       </property>
+       <property name="frameShadow">
+        <enum>QFrame::Sunken</enum>
+       </property>
+       <property name="lineWidth">
+        <number>0</number>
+       </property>
+       <property name="verticalScrollBarPolicy">
+        <enum>Qt::ScrollBarAlwaysOff</enum>
+       </property>
+       <property name="horizontalScrollBarPolicy">
+        <enum>Qt::ScrollBarAlwaysOff</enum>
+       </property>
+       <property name="editTriggers">
+        <set>QAbstractItemView::NoEditTriggers</set>
+       </property>
+       <property name="showDropIndicator" stdset="0">
+        <bool>false</bool>
+       </property>
+       <property name="dragDropOverwriteMode">
+        <bool>false</bool>
+       </property>
+       <property name="selectionMode">
+        <enum>QAbstractItemView::SingleSelection</enum>
+       </property>
+       <property name="selectionBehavior">
+        <enum>QAbstractItemView::SelectRows</enum>
+       </property>
+       <property name="iconSize">
+        <size>
+         <width>30</width>
+         <height>30</height>
+        </size>
+       </property>
+       <property name="showGrid">
+        <bool>false</bool>
+       </property>
+       <property name="gridStyle">
+        <enum>Qt::SolidLine</enum>
+       </property>
+       <property name="cornerButtonEnabled">
+        <bool>false</bool>
+       </property>
+       <attribute name="horizontalHeaderVisible">
+        <bool>false</bool>
+       </attribute>
+       <attribute name="horizontalHeaderDefaultSectionSize">
+        <number>10</number>
+       </attribute>
+       <attribute name="horizontalHeaderHighlightSections">
+        <bool>false</bool>
+       </attribute>
+       <attribute name="horizontalHeaderStretchLastSection">
+        <bool>true</bool>
+       </attribute>
+       <attribute name="verticalHeaderVisible">
+        <bool>false</bool>
+       </attribute>
+       <attribute name="verticalHeaderDefaultSectionSize">
+        <number>80</number>
+       </attribute>
+       <attribute name="verticalHeaderHighlightSections">
+        <bool>false</bool>
+       </attribute>
+       <row>
+        <property name="text">
+         <string>1</string>
+        </property>
+       </row>
+       <row>
+        <property name="text">
+         <string>2</string>
+        </property>
+       </row>
+       <row>
+        <property name="text">
+         <string>4</string>
+        </property>
+       </row>
+       <row>
+        <property name="text">
+         <string>3</string>
+        </property>
+       </row>
+       <column>
+        <property name="text">
+         <string>inutile</string>
+        </property>
+       </column>
+       <column>
+        <property name="text">
+         <string>menus</string>
+        </property>
+       </column>
+       <item row="0" column="0">
+        <property name="text">
+         <string/>
+        </property>
+        <property name="flags">
+         <set>ItemIsSelectable</set>
+        </property>
+       </item>
+       <item row="0" column="1">
+        <property name="text">
+         <string> NOM ET APPARENCE </string>
+        </property>
+        <property name="textAlignment">
+         <set>AlignHCenter|AlignVCenter|AlignCenter</set>
+        </property>
+        <property name="icon">
+         <iconset>
+          <normaloff>img/oeil.png</normaloff>img/oeil.png</iconset>
+        </property>
+        <property name="flags">
+         <set>ItemIsSelectable|ItemIsEnabled|ItemIsTristate</set>
+        </property>
+       </item>
+       <item row="1" column="0">
+        <property name="text">
+         <string/>
+        </property>
+        <property name="flags">
+         <set>ItemIsSelectable</set>
+        </property>
+       </item>
+       <item row="1" column="1">
+        <property name="text">
+         <string> FORME ET EFFETS</string>
+        </property>
+        <property name="textAlignment">
+         <set>AlignHCenter|AlignVCenter|AlignCenter</set>
+        </property>
+        <property name="icon">
+         <iconset>
+          <normaloff>img/btnZonePlacement.png</normaloff>img/btnZonePlacement.png</iconset>
+        </property>
+        <property name="flags">
+         <set>ItemIsSelectable|ItemIsUserCheckable|ItemIsEnabled</set>
+        </property>
+       </item>
+       <item row="2" column="1">
+        <property name="text">
+         <string>CONTENU</string>
+        </property>
+        <property name="textAlignment">
+         <set>AlignHCenter|AlignVCenter|AlignCenter</set>
+        </property>
+        <property name="icon">
+         <iconset>
+          <normaloff>img/sac.png</normaloff>img/sac.png</iconset>
+        </property>
+       </item>
+       <item row="3" column="0">
+        <property name="text">
+         <string/>
+        </property>
+        <property name="flags">
+         <set>ItemIsSelectable|ItemIsEnabled</set>
+        </property>
+       </item>
+       <item row="3" column="1">
+        <property name="text">
+         <string> NOTES </string>
+        </property>
+        <property name="textAlignment">
+         <set>AlignHCenter|AlignVCenter|AlignCenter</set>
+        </property>
+        <property name="icon">
+         <iconset>
+          <normaloff>img/note.png</normaloff>img/note.png</iconset>
+        </property>
+        <property name="flags">
+         <set>ItemIsSelectable|ItemIsEnabled</set>
+        </property>
+       </item>
+      </widget>
+     </item>
+     <item>
+      <layout class="QVBoxLayout" name="verticalLayout">
+       <item>
+        <widget class="QStackedWidget" name="edc_pages">
+         <property name="minimumSize">
+          <size>
+           <width>392</width>
+           <height>0</height>
+          </size>
+         </property>
+         <property name="currentIndex">
+          <number>0</number>
+         </property>
+         <widget class="QWidget" name="page_nom">
+          <widget class="DmLineEdit" name="edc_nom">
+           <property name="geometry">
+            <rect>
+             <x>110</x>
+             <y>40</y>
+             <width>271</width>
+             <height>31</height>
+            </rect>
+           </property>
+           <property name="palette">
+            <palette>
+             <active>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>248</red>
+                 <green>248</green>
+                 <blue>248</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </active>
+             <inactive>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>248</red>
+                 <green>248</green>
+                 <blue>248</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </inactive>
+             <disabled>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>240</red>
+                 <green>240</green>
+                 <blue>240</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </disabled>
+            </palette>
+           </property>
+           <property name="font">
+            <font>
+             <family>Verdana</family>
+            </font>
+           </property>
+          </widget>
+          <widget class="DmLabelChoixImage" name="edc_logo">
+           <property name="geometry">
+            <rect>
+             <x>20</x>
+             <y>10</y>
+             <width>71</width>
+             <height>71</height>
+            </rect>
+           </property>
+           <property name="font">
+            <font>
+             <family>Verdana</family>
+             <pointsize>7</pointsize>
+            </font>
+           </property>
+           <property name="frameShape">
+            <enum>QFrame::Box</enum>
+           </property>
+           <property name="frameShadow">
+            <enum>QFrame::Sunken</enum>
+           </property>
+           <property name="text">
+            <string>Choisissez 
+un fichier
+image</string>
+           </property>
+           <property name="alignment">
+            <set>Qt::AlignCenter</set>
+           </property>
+          </widget>
+          <widget class="QLabel" name="label_8">
+           <property name="geometry">
+            <rect>
+             <x>110</x>
+             <y>15</y>
+             <width>131</width>
+             <height>21</height>
+            </rect>
+           </property>
+           <property name="font">
+            <font>
+             <family>Verdana</family>
+             <pointsize>8</pointsize>
+            </font>
+           </property>
+           <property name="text">
+            <string>Nom : </string>
+           </property>
+          </widget>
+          <widget class="QFrame" name="frame_2">
+           <property name="geometry">
+            <rect>
+             <x>30</x>
+             <y>90</y>
+             <width>371</width>
+             <height>361</height>
+            </rect>
+           </property>
+           <property name="frameShape">
+            <enum>QFrame::WinPanel</enum>
+           </property>
+           <property name="frameShadow">
+            <enum>QFrame::Raised</enum>
+           </property>
+           <widget class="QGraphicsView" name="edc_vueForme">
+            <property name="geometry">
+             <rect>
+              <x>10</x>
+              <y>10</y>
+              <width>311</width>
+              <height>321</height>
+             </rect>
+            </property>
+            <property name="palette">
+             <palette>
+              <active>
+               <colorrole role="Base">
+                <brush brushstyle="SolidPattern">
+                 <color alpha="255">
+                  <red>244</red>
+                  <green>244</green>
+                  <blue>244</blue>
+                 </color>
+                </brush>
+               </colorrole>
+              </active>
+              <inactive>
+               <colorrole role="Base">
+                <brush brushstyle="SolidPattern">
+                 <color alpha="255">
+                  <red>244</red>
+                  <green>244</green>
+                  <blue>244</blue>
+                 </color>
+                </brush>
+               </colorrole>
+              </inactive>
+              <disabled>
+               <colorrole role="Base">
+                <brush brushstyle="SolidPattern">
+                 <color alpha="255">
+                  <red>240</red>
+                  <green>240</green>
+                  <blue>240</blue>
+                 </color>
+                </brush>
+               </colorrole>
+              </disabled>
+             </palette>
+            </property>
+            <property name="frameShape">
+             <enum>QFrame::NoFrame</enum>
+            </property>
+            <property name="frameShadow">
+             <enum>QFrame::Raised</enum>
+            </property>
+            <property name="renderHints">
+             <set>QPainter::Antialiasing|QPainter::HighQualityAntialiasing|QPainter::TextAntialiasing</set>
+            </property>
+           </widget>
+           <widget class="QToolButton" name="edc_image">
+            <property name="geometry">
+             <rect>
+              <x>330</x>
+              <y>50</y>
+              <width>31</width>
+              <height>31</height>
+             </rect>
+            </property>
+            <property name="text">
+             <string>...</string>
+            </property>
+            <property name="icon">
+             <iconset>
+              <normaloff>img/portrait.png</normaloff>img/portrait.png</iconset>
+            </property>
+            <property name="iconSize">
+             <size>
+              <width>22</width>
+              <height>22</height>
+             </size>
+            </property>
+           </widget>
+           <widget class="QToolButton" name="edc_couleur">
+            <property name="geometry">
+             <rect>
+              <x>330</x>
+              <y>10</y>
+              <width>31</width>
+              <height>31</height>
+             </rect>
+            </property>
+            <property name="text">
+             <string>...</string>
+            </property>
+            <property name="icon">
+             <iconset>
+              <normaloff>img/btnCouleurs.png</normaloff>img/btnCouleurs.png</iconset>
+            </property>
+           </widget>
+           <widget class="QToolButton" name="edc_aideForme">
+            <property name="geometry">
+             <rect>
+              <x>330</x>
+              <y>270</y>
+              <width>31</width>
+              <height>31</height>
+             </rect>
+            </property>
+            <property name="text">
+             <string>...</string>
+            </property>
+            <property name="icon">
+             <iconset>
+              <normaloff>img/aide.png</normaloff>img/aide.png</iconset>
+            </property>
+           </widget>
+           <widget class="QRadioButton" name="edc_casesHexa">
+            <property name="geometry">
+             <rect>
+              <x>30</x>
+              <y>330</y>
+              <width>131</width>
+              <height>31</height>
+             </rect>
+            </property>
+            <property name="text">
+             <string>Cases hexagonales</string>
+            </property>
+            <property name="checked">
+             <bool>true</bool>
+            </property>
+           </widget>
+           <widget class="QRadioButton" name="edc_casesCarrees">
+            <property name="geometry">
+             <rect>
+              <x>170</x>
+              <y>330</y>
+              <width>111</width>
+              <height>31</height>
+             </rect>
+            </property>
+            <property name="text">
+             <string>Cases carrées</string>
+            </property>
+           </widget>
+          </widget>
+         </widget>
+         <widget class="QWidget" name="page_dep">
+          <widget class="QLabel" name="label_9">
+           <property name="geometry">
+            <rect>
+             <x>50</x>
+             <y>100</y>
+             <width>391</width>
+             <height>31</height>
+            </rect>
+           </property>
+           <property name="font">
+            <font>
+             <family>Verdana</family>
+            </font>
+           </property>
+           <property name="frameShape">
+            <enum>QFrame::NoFrame</enum>
+           </property>
+           <property name="text">
+            <string>Nombre de cases que la créature peut parcourir en un tour : </string>
+           </property>
+          </widget>
+          <widget class="QDoubleSpinBox" name="edc_depMarche">
+           <property name="geometry">
+            <rect>
+             <x>220</x>
+             <y>140</y>
+             <width>51</width>
+             <height>31</height>
+            </rect>
+           </property>
+           <property name="palette">
+            <palette>
+             <active>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>248</red>
+                 <green>248</green>
+                 <blue>248</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </active>
+             <inactive>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>248</red>
+                 <green>248</green>
+                 <blue>248</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </inactive>
+             <disabled>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>240</red>
+                 <green>240</green>
+                 <blue>240</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </disabled>
+            </palette>
+           </property>
+           <property name="font">
+            <font>
+             <family>Verdana</family>
+            </font>
+           </property>
+           <property name="prefix">
+            <string/>
+           </property>
+           <property name="decimals">
+            <number>0</number>
+           </property>
+           <property name="singleStep">
+            <double>1.000000000000000</double>
+           </property>
+           <property name="value">
+            <double>8.000000000000000</double>
+           </property>
+          </widget>
+          <widget class="QLabel" name="label_10">
+           <property name="geometry">
+            <rect>
+             <x>110</x>
+             <y>140</y>
+             <width>101</width>
+             <height>31</height>
+            </rect>
+           </property>
+           <property name="font">
+            <font>
+             <family>Verdana</family>
+            </font>
+           </property>
+           <property name="frameShape">
+            <enum>QFrame::NoFrame</enum>
+           </property>
+           <property name="text">
+            <string>Marche / Course</string>
+           </property>
+          </widget>
+          <widget class="QDoubleSpinBox" name="edc_depNage">
+           <property name="geometry">
+            <rect>
+             <x>220</x>
+             <y>180</y>
+             <width>51</width>
+             <height>31</height>
+            </rect>
+           </property>
+           <property name="palette">
+            <palette>
+             <active>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>248</red>
+                 <green>248</green>
+                 <blue>248</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </active>
+             <inactive>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>248</red>
+                 <green>248</green>
+                 <blue>248</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </inactive>
+             <disabled>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>240</red>
+                 <green>240</green>
+                 <blue>240</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </disabled>
+            </palette>
+           </property>
+           <property name="font">
+            <font>
+             <family>Verdana</family>
+            </font>
+           </property>
+           <property name="prefix">
+            <string/>
+           </property>
+           <property name="decimals">
+            <number>0</number>
+           </property>
+           <property name="singleStep">
+            <double>1.000000000000000</double>
+           </property>
+           <property name="value">
+            <double>4.000000000000000</double>
+           </property>
+          </widget>
+          <widget class="QLabel" name="label_11">
+           <property name="geometry">
+            <rect>
+             <x>110</x>
+             <y>180</y>
+             <width>81</width>
+             <height>31</height>
+            </rect>
+           </property>
+           <property name="font">
+            <font>
+             <family>Verdana</family>
+            </font>
+           </property>
+           <property name="frameShape">
+            <enum>QFrame::NoFrame</enum>
+           </property>
+           <property name="text">
+            <string>Nage    </string>
+           </property>
+          </widget>
+          <widget class="QDoubleSpinBox" name="edc_depEscalade">
+           <property name="geometry">
+            <rect>
+             <x>220</x>
+             <y>220</y>
+             <width>51</width>
+             <height>31</height>
+            </rect>
+           </property>
+           <property name="palette">
+            <palette>
+             <active>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>248</red>
+                 <green>248</green>
+                 <blue>248</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </active>
+             <inactive>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>248</red>
+                 <green>248</green>
+                 <blue>248</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </inactive>
+             <disabled>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>240</red>
+                 <green>240</green>
+                 <blue>240</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </disabled>
+            </palette>
+           </property>
+           <property name="font">
+            <font>
+             <family>Verdana</family>
+            </font>
+           </property>
+           <property name="prefix">
+            <string/>
+           </property>
+           <property name="decimals">
+            <number>0</number>
+           </property>
+           <property name="singleStep">
+            <double>1.000000000000000</double>
+           </property>
+           <property name="value">
+            <double>2.000000000000000</double>
+           </property>
+          </widget>
+          <widget class="QLabel" name="label_12">
+           <property name="geometry">
+            <rect>
+             <x>110</x>
+             <y>220</y>
+             <width>91</width>
+             <height>31</height>
+            </rect>
+           </property>
+           <property name="font">
+            <font>
+             <family>Verdana</family>
+            </font>
+           </property>
+           <property name="frameShape">
+            <enum>QFrame::NoFrame</enum>
+           </property>
+           <property name="text">
+            <string>Escalade </string>
+           </property>
+          </widget>
+          <widget class="QLabel" name="label_13">
+           <property name="geometry">
+            <rect>
+             <x>110</x>
+             <y>260</y>
+             <width>61</width>
+             <height>31</height>
+            </rect>
+           </property>
+           <property name="font">
+            <font>
+             <family>Verdana</family>
+            </font>
+           </property>
+           <property name="frameShape">
+            <enum>QFrame::NoFrame</enum>
+           </property>
+           <property name="text">
+            <string>Vol      </string>
+           </property>
+          </widget>
+          <widget class="QDoubleSpinBox" name="edc_depVol">
+           <property name="geometry">
+            <rect>
+             <x>220</x>
+             <y>260</y>
+             <width>51</width>
+             <height>31</height>
+            </rect>
+           </property>
+           <property name="palette">
+            <palette>
+             <active>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>248</red>
+                 <green>248</green>
+                 <blue>248</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </active>
+             <inactive>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>248</red>
+                 <green>248</green>
+                 <blue>248</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </inactive>
+             <disabled>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>240</red>
+                 <green>240</green>
+                 <blue>240</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </disabled>
+            </palette>
+           </property>
+           <property name="font">
+            <font>
+             <family>Verdana</family>
+            </font>
+           </property>
+           <property name="prefix">
+            <string/>
+           </property>
+           <property name="decimals">
+            <number>0</number>
+           </property>
+           <property name="singleStep">
+            <double>1.000000000000000</double>
+           </property>
+           <property name="value">
+            <double>0.000000000000000</double>
+           </property>
+          </widget>
+          <widget class="QDoubleSpinBox" name="edc_saut">
+           <property name="geometry">
+            <rect>
+             <x>290</x>
+             <y>320</y>
+             <width>51</width>
+             <height>31</height>
+            </rect>
+           </property>
+           <property name="palette">
+            <palette>
+             <active>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>248</red>
+                 <green>248</green>
+                 <blue>248</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </active>
+             <inactive>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>248</red>
+                 <green>248</green>
+                 <blue>248</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </inactive>
+             <disabled>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>240</red>
+                 <green>240</green>
+                 <blue>240</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </disabled>
+            </palette>
+           </property>
+           <property name="font">
+            <font>
+             <family>Verdana</family>
+            </font>
+           </property>
+           <property name="prefix">
+            <string/>
+           </property>
+           <property name="decimals">
+            <number>0</number>
+           </property>
+           <property name="singleStep">
+            <double>1.000000000000000</double>
+           </property>
+           <property name="value">
+            <double>5.000000000000000</double>
+           </property>
+          </widget>
+          <widget class="QLabel" name="label_14">
+           <property name="geometry">
+            <rect>
+             <x>50</x>
+             <y>320</y>
+             <width>231</width>
+             <height>31</height>
+            </rect>
+           </property>
+           <property name="font">
+            <font>
+             <family>Verdana</family>
+            </font>
+           </property>
+           <property name="frameShape">
+            <enum>QFrame::NoFrame</enum>
+           </property>
+           <property name="text">
+            <string>Hauteur maximum pour les sauts : </string>
+           </property>
+          </widget>
+          <widget class="QLabel" name="label_2">
+           <property name="geometry">
+            <rect>
+             <x>60</x>
+             <y>140</y>
+             <width>31</width>
+             <height>31</height>
+            </rect>
+           </property>
+           <property name="text">
+            <string/>
+           </property>
+           <property name="pixmap">
+            <pixmap>img/btnZonePlacement.png</pixmap>
+           </property>
+           <property name="scaledContents">
+            <bool>false</bool>
+           </property>
+           <property name="alignment">
+            <set>Qt::AlignCenter</set>
+           </property>
+          </widget>
+          <widget class="QLabel" name="label_3">
+           <property name="geometry">
+            <rect>
+             <x>60</x>
+             <y>180</y>
+             <width>31</width>
+             <height>31</height>
+            </rect>
+           </property>
+           <property name="text">
+            <string/>
+           </property>
+           <property name="pixmap">
+            <pixmap>img/nage_24.png</pixmap>
+           </property>
+           <property name="scaledContents">
+            <bool>false</bool>
+           </property>
+          </widget>
+          <widget class="QLabel" name="label_4">
+           <property name="geometry">
+            <rect>
+             <x>60</x>
+             <y>220</y>
+             <width>31</width>
+             <height>31</height>
+            </rect>
+           </property>
+           <property name="text">
+            <string/>
+           </property>
+           <property name="pixmap">
+            <pixmap>img/escalade_24.png</pixmap>
+           </property>
+           <property name="scaledContents">
+            <bool>false</bool>
+           </property>
+          </widget>
+          <widget class="QLabel" name="label_5">
+           <property name="geometry">
+            <rect>
+             <x>60</x>
+             <y>260</y>
+             <width>31</width>
+             <height>31</height>
+            </rect>
+           </property>
+           <property name="text">
+            <string/>
+           </property>
+           <property name="pixmap">
+            <pixmap>img/plume_24.png</pixmap>
+           </property>
+           <property name="scaledContents">
+            <bool>false</bool>
+           </property>
+          </widget>
+          <widget class="QDoubleSpinBox" name="edc_taille">
+           <property name="geometry">
+            <rect>
+             <x>290</x>
+             <y>60</y>
+             <width>51</width>
+             <height>31</height>
+            </rect>
+           </property>
+           <property name="palette">
+            <palette>
+             <active>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>248</red>
+                 <green>248</green>
+                 <blue>248</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </active>
+             <inactive>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>248</red>
+                 <green>248</green>
+                 <blue>248</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </inactive>
+             <disabled>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>240</red>
+                 <green>240</green>
+                 <blue>240</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </disabled>
+            </palette>
+           </property>
+           <property name="font">
+            <font>
+             <family>Verdana</family>
+            </font>
+           </property>
+           <property name="prefix">
+            <string/>
+           </property>
+           <property name="decimals">
+            <number>0</number>
+           </property>
+           <property name="singleStep">
+            <double>1.000000000000000</double>
+           </property>
+           <property name="value">
+            <double>2.000000000000000</double>
+           </property>
+          </widget>
+          <widget class="QLabel" name="label_15">
+           <property name="geometry">
+            <rect>
+             <x>50</x>
+             <y>60</y>
+             <width>231</width>
+             <height>31</height>
+            </rect>
+           </property>
+           <property name="font">
+            <font>
+             <family>Verdana</family>
+            </font>
+           </property>
+           <property name="frameShape">
+            <enum>QFrame::NoFrame</enum>
+           </property>
+           <property name="text">
+            <string>Taille de la créature (en cases) : </string>
+           </property>
+          </widget>
+         </widget>
+         <widget class="QWidget" name="page_invent">
+          <widget class="QTableWidget" name="edc_listeInventaire">
+           <property name="geometry">
+            <rect>
+             <x>20</x>
+             <y>50</y>
+             <width>381</width>
+             <height>311</height>
+            </rect>
+           </property>
+           <property name="palette">
+            <palette>
+             <active>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="150">
+                 <red>255</red>
+                 <green>255</green>
+                 <blue>255</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </active>
+             <inactive>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="150">
+                 <red>255</red>
+                 <green>255</green>
+                 <blue>255</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </inactive>
+             <disabled>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>240</red>
+                 <green>240</green>
+                 <blue>240</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </disabled>
+            </palette>
+           </property>
+           <property name="font">
+            <font>
+             <family>Verdana</family>
+            </font>
+           </property>
+           <property name="frameShape">
+            <enum>QFrame::WinPanel</enum>
+           </property>
+           <property name="horizontalScrollBarPolicy">
+            <enum>Qt::ScrollBarAlwaysOff</enum>
+           </property>
+           <property name="editTriggers">
+            <set>QAbstractItemView::AllEditTriggers</set>
+           </property>
+           <property name="alternatingRowColors">
+            <bool>true</bool>
+           </property>
+           <property name="selectionMode">
+            <enum>QAbstractItemView::NoSelection</enum>
+           </property>
+           <property name="showGrid">
+            <bool>true</bool>
+           </property>
+           <attribute name="horizontalHeaderVisible">
+            <bool>false</bool>
+           </attribute>
+           <attribute name="horizontalHeaderDefaultSectionSize">
+            <number>50</number>
+           </attribute>
+           <attribute name="verticalHeaderVisible">
+            <bool>false</bool>
+           </attribute>
+           <column>
+            <property name="text">
+             <string>nombre</string>
+            </property>
+           </column>
+           <column>
+            <property name="text">
+             <string>objet</string>
+            </property>
+           </column>
+          </widget>
+          <widget class="QToolButton" name="edc_inventaire_supprimer">
+           <property name="geometry">
+            <rect>
+             <x>380</x>
+             <y>360</y>
+             <width>21</width>
+             <height>20</height>
+            </rect>
+           </property>
+           <property name="text">
+            <string>...</string>
+           </property>
+           <property name="icon">
+            <iconset>
+             <normaloff>img/gomme.png</normaloff>img/gomme.png</iconset>
+           </property>
+          </widget>
+          <widget class="QLabel" name="label_24">
+           <property name="geometry">
+            <rect>
+             <x>20</x>
+             <y>20</y>
+             <width>131</width>
+             <height>20</height>
+            </rect>
+           </property>
+           <property name="font">
+            <font>
+             <family>Verdana</family>
+            </font>
+           </property>
+           <property name="text">
+            <string>Inventaire :</string>
+           </property>
+          </widget>
+          <widget class="QToolButton" name="edc_inventaire_nouveau">
+           <property name="geometry">
+            <rect>
+             <x>350</x>
+             <y>360</y>
+             <width>21</width>
+             <height>20</height>
+            </rect>
+           </property>
+           <property name="text">
+            <string>...</string>
+           </property>
+           <property name="icon">
+            <iconset>
+             <normaloff>img/plus.png</normaloff>img/plus.png</iconset>
+           </property>
+          </widget>
+         </widget>
+         <widget class="QWidget" name="page_notes">
+          <widget class="QLabel" name="label_23">
+           <property name="geometry">
+            <rect>
+             <x>30</x>
+             <y>120</y>
+             <width>151</width>
+             <height>20</height>
+            </rect>
+           </property>
+           <property name="font">
+            <font>
+             <family>Verdana</family>
+            </font>
+           </property>
+           <property name="text">
+            <string>Notes :</string>
+           </property>
+          </widget>
+          <widget class="QTextEdit" name="edc_notes">
+           <property name="geometry">
+            <rect>
+             <x>30</x>
+             <y>150</y>
+             <width>411</width>
+             <height>171</height>
+            </rect>
+           </property>
+           <property name="palette">
+            <palette>
+             <active>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>248</red>
+                 <green>248</green>
+                 <blue>248</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </active>
+             <inactive>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>248</red>
+                 <green>248</green>
+                 <blue>248</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </inactive>
+             <disabled>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>240</red>
+                 <green>240</green>
+                 <blue>240</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </disabled>
+            </palette>
+           </property>
+           <property name="font">
+            <font>
+             <family>Verdana</family>
+            </font>
+           </property>
+          </widget>
+          <widget class="DmLineEdit" name="edc_detail_age">
+           <property name="geometry">
+            <rect>
+             <x>350</x>
+             <y>20</y>
+             <width>81</width>
+             <height>20</height>
+            </rect>
+           </property>
+           <property name="palette">
+            <palette>
+             <active>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>248</red>
+                 <green>248</green>
+                 <blue>248</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </active>
+             <inactive>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>248</red>
+                 <green>248</green>
+                 <blue>248</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </inactive>
+             <disabled>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>240</red>
+                 <green>240</green>
+                 <blue>240</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </disabled>
+            </palette>
+           </property>
+           <property name="font">
+            <font>
+             <family>Verdana</family>
+            </font>
+           </property>
+          </widget>
+          <widget class="QLabel" name="label_16">
+           <property name="geometry">
+            <rect>
+             <x>300</x>
+             <y>19</y>
+             <width>41</width>
+             <height>21</height>
+            </rect>
+           </property>
+           <property name="font">
+            <font>
+             <family>Verdana</family>
+             <pointsize>8</pointsize>
+            </font>
+           </property>
+           <property name="text">
+            <string>Age : </string>
+           </property>
+          </widget>
+          <widget class="QLabel" name="label_17">
+           <property name="geometry">
+            <rect>
+             <x>300</x>
+             <y>49</y>
+             <width>41</width>
+             <height>21</height>
+            </rect>
+           </property>
+           <property name="font">
+            <font>
+             <family>Verdana</family>
+             <pointsize>8</pointsize>
+            </font>
+           </property>
+           <property name="text">
+            <string>Sexe : </string>
+           </property>
+          </widget>
+          <widget class="DmLineEdit" name="edc_detail_sexe">
+           <property name="geometry">
+            <rect>
+             <x>350</x>
+             <y>49</y>
+             <width>81</width>
+             <height>20</height>
+            </rect>
+           </property>
+           <property name="palette">
+            <palette>
+             <active>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>248</red>
+                 <green>248</green>
+                 <blue>248</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </active>
+             <inactive>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>248</red>
+                 <green>248</green>
+                 <blue>248</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </inactive>
+             <disabled>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>240</red>
+                 <green>240</green>
+                 <blue>240</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </disabled>
+            </palette>
+           </property>
+           <property name="font">
+            <font>
+             <family>Verdana</family>
+            </font>
+           </property>
+          </widget>
+          <widget class="QLabel" name="label_41">
+           <property name="geometry">
+            <rect>
+             <x>300</x>
+             <y>79</y>
+             <width>41</width>
+             <height>21</height>
+            </rect>
+           </property>
+           <property name="font">
+            <font>
+             <family>Verdana</family>
+             <pointsize>8</pointsize>
+            </font>
+           </property>
+           <property name="text">
+            <string>Poids : </string>
+           </property>
+          </widget>
+          <widget class="DmLineEdit" name="edc_detail_poids">
+           <property name="geometry">
+            <rect>
+             <x>350</x>
+             <y>80</y>
+             <width>81</width>
+             <height>20</height>
+            </rect>
+           </property>
+           <property name="palette">
+            <palette>
+             <active>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>248</red>
+                 <green>248</green>
+                 <blue>248</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </active>
+             <inactive>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>248</red>
+                 <green>248</green>
+                 <blue>248</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </inactive>
+             <disabled>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>240</red>
+                 <green>240</green>
+                 <blue>240</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </disabled>
+            </palette>
+           </property>
+           <property name="font">
+            <font>
+             <family>Verdana</family>
+            </font>
+           </property>
+          </widget>
+          <widget class="QLabel" name="label_43">
+           <property name="geometry">
+            <rect>
+             <x>20</x>
+             <y>20</y>
+             <width>61</width>
+             <height>21</height>
+            </rect>
+           </property>
+           <property name="font">
+            <font>
+             <family>Verdana</family>
+             <pointsize>8</pointsize>
+            </font>
+           </property>
+           <property name="text">
+            <string>Espèce : </string>
+           </property>
+          </widget>
+          <widget class="DmLineEdit" name="edc_detail_espece">
+           <property name="geometry">
+            <rect>
+             <x>100</x>
+             <y>21</y>
+             <width>171</width>
+             <height>20</height>
+            </rect>
+           </property>
+           <property name="palette">
+            <palette>
+             <active>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>248</red>
+                 <green>248</green>
+                 <blue>248</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </active>
+             <inactive>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>248</red>
+                 <green>248</green>
+                 <blue>248</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </inactive>
+             <disabled>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>240</red>
+                 <green>240</green>
+                 <blue>240</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </disabled>
+            </palette>
+           </property>
+           <property name="font">
+            <font>
+             <family>Verdana</family>
+            </font>
+           </property>
+           <property name="text">
+            <string/>
+           </property>
+          </widget>
+          <widget class="QLabel" name="label_44">
+           <property name="geometry">
+            <rect>
+             <x>20</x>
+             <y>49</y>
+             <width>81</width>
+             <height>21</height>
+            </rect>
+           </property>
+           <property name="font">
+            <font>
+             <family>Verdana</family>
+             <pointsize>8</pointsize>
+            </font>
+           </property>
+           <property name="text">
+            <string>Profession : </string>
+           </property>
+          </widget>
+          <widget class="DmLineEdit" name="edc_detail_profession">
+           <property name="geometry">
+            <rect>
+             <x>100</x>
+             <y>50</y>
+             <width>171</width>
+             <height>20</height>
+            </rect>
+           </property>
+           <property name="palette">
+            <palette>
+             <active>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>248</red>
+                 <green>248</green>
+                 <blue>248</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </active>
+             <inactive>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>248</red>
+                 <green>248</green>
+                 <blue>248</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </inactive>
+             <disabled>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>240</red>
+                 <green>240</green>
+                 <blue>240</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </disabled>
+            </palette>
+           </property>
+           <property name="font">
+            <font>
+             <family>Verdana</family>
+            </font>
+           </property>
+           <property name="text">
+            <string/>
+           </property>
+          </widget>
+          <widget class="DmLineEdit" name="edc_detail_religion">
+           <property name="geometry">
+            <rect>
+             <x>100</x>
+             <y>80</y>
+             <width>171</width>
+             <height>21</height>
+            </rect>
+           </property>
+           <property name="palette">
+            <palette>
+             <active>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>248</red>
+                 <green>248</green>
+                 <blue>248</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </active>
+             <inactive>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>248</red>
+                 <green>248</green>
+                 <blue>248</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </inactive>
+             <disabled>
+              <colorrole role="Base">
+               <brush brushstyle="SolidPattern">
+                <color alpha="255">
+                 <red>240</red>
+                 <green>240</green>
+                 <blue>240</blue>
+                </color>
+               </brush>
+              </colorrole>
+             </disabled>
+            </palette>
+           </property>
+           <property name="font">
+            <font>
+             <family>Verdana</family>
+            </font>
+           </property>
+           <property name="text">
+            <string/>
+           </property>
+          </widget>
+          <widget class="QLabel" name="label_42">
+           <property name="geometry">
+            <rect>
+             <x>20</x>
+             <y>70</y>
+             <width>81</width>
+             <height>31</height>
+            </rect>
+           </property>
+           <property name="font">
+            <font>
+             <family>Verdana</family>
+             <pointsize>8</pointsize>
+            </font>
+           </property>
+           <property name="text">
+            <string>Religion /
+Croyances :</string>
+           </property>
+          </widget>
+         </widget>
+        </widget>
+       </item>
+       <item>
+        <widget class="QFrame" name="frame">
+         <property name="minimumSize">
+          <size>
+           <width>392</width>
+           <height>50</height>
+          </size>
+         </property>
+         <property name="maximumSize">
+          <size>
+           <width>16777215</width>
+           <height>50</height>
+          </size>
+         </property>
+         <property name="frameShape">
+          <enum>QFrame::StyledPanel</enum>
+         </property>
+         <property name="frameShadow">
+          <enum>QFrame::Raised</enum>
+         </property>
+         <widget class="QPushButton" name="edc_enregistrer">
+          <property name="enabled">
+           <bool>false</bool>
+          </property>
+          <property name="geometry">
+           <rect>
+            <x>370</x>
+            <y>10</y>
+            <width>91</width>
+            <height>31</height>
+           </rect>
+          </property>
+          <property name="font">
+           <font>
+            <family>Verdana</family>
+            <weight>75</weight>
+            <bold>true</bold>
+           </font>
+          </property>
+          <property name="text">
+           <string>Enregistrer</string>
+          </property>
+         </widget>
+         <widget class="QPushButton" name="edc_annuler">
+          <property name="geometry">
+           <rect>
+            <x>10</x>
+            <y>10</y>
+            <width>81</width>
+            <height>31</height>
+           </rect>
+          </property>
+          <property name="font">
+           <font>
+            <family>Verdana</family>
+           </font>
+          </property>
+          <property name="text">
+           <string>Annuler</string>
+          </property>
+         </widget>
+        </widget>
+       </item>
+      </layout>
+     </item>
+    </layout>
+   </item>
+  </layout>
  </widget>
+ <customwidgets>
+  <customwidget>
+   <class>DmTableMenu</class>
+   <extends>QTableWidget</extends>
+   <header location="global">dm.h</header>
+  </customwidget>
+  <customwidget>
+   <class>DmLabelChoixImage</class>
+   <extends>QLabel</extends>
+   <header location="global">dm.h</header>
+  </customwidget>
+  <customwidget>
+   <class>DmLineEdit</class>
+   <extends>QLineEdit</extends>
+   <header location="global">dm.h</header>
+  </customwidget>
+ </customwidgets>
  <resources/>
  <connections/>
 </ui>