editionDecor.ui 60 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3. <class>Dialog</class>
  4. <widget class="QDialog" name="Dialog">
  5. <property name="geometry">
  6. <rect>
  7. <x>0</x>
  8. <y>0</y>
  9. <width>679</width>
  10. <height>528</height>
  11. </rect>
  12. </property>
  13. <property name="windowTitle">
  14. <string>Dialog</string>
  15. </property>
  16. <layout class="QHBoxLayout" name="horizontalLayout_2">
  17. <item>
  18. <layout class="QHBoxLayout" name="horizontalLayout" stretch="0,1">
  19. <property name="spacing">
  20. <number>3</number>
  21. </property>
  22. <item>
  23. <widget class="DmTableMenu" name="edc_menu">
  24. <property name="sizePolicy">
  25. <sizepolicy hsizetype="Fixed" vsizetype="Expanding">
  26. <horstretch>0</horstretch>
  27. <verstretch>0</verstretch>
  28. </sizepolicy>
  29. </property>
  30. <property name="minimumSize">
  31. <size>
  32. <width>170</width>
  33. <height>484</height>
  34. </size>
  35. </property>
  36. <property name="maximumSize">
  37. <size>
  38. <width>170</width>
  39. <height>484</height>
  40. </size>
  41. </property>
  42. <property name="palette">
  43. <palette>
  44. <active>
  45. <colorrole role="WindowText">
  46. <brush brushstyle="SolidPattern">
  47. <color alpha="255">
  48. <red>6</red>
  49. <green>6</green>
  50. <blue>6</blue>
  51. </color>
  52. </brush>
  53. </colorrole>
  54. <colorrole role="Mid">
  55. <brush brushstyle="SolidPattern">
  56. <color alpha="255">
  57. <red>190</red>
  58. <green>190</green>
  59. <blue>190</blue>
  60. </color>
  61. </brush>
  62. </colorrole>
  63. <colorrole role="Text">
  64. <brush brushstyle="SolidPattern">
  65. <color alpha="255">
  66. <red>255</red>
  67. <green>255</green>
  68. <blue>255</blue>
  69. </color>
  70. </brush>
  71. </colorrole>
  72. <colorrole role="Base">
  73. <brush brushstyle="SolidPattern">
  74. <color alpha="255">
  75. <red>140</red>
  76. <green>140</green>
  77. <blue>140</blue>
  78. </color>
  79. </brush>
  80. </colorrole>
  81. <colorrole role="Highlight">
  82. <brush brushstyle="SolidPattern">
  83. <color alpha="255">
  84. <red>240</red>
  85. <green>240</green>
  86. <blue>240</blue>
  87. </color>
  88. </brush>
  89. </colorrole>
  90. <colorrole role="HighlightedText">
  91. <brush brushstyle="SolidPattern">
  92. <color alpha="255">
  93. <red>7</red>
  94. <green>7</green>
  95. <blue>7</blue>
  96. </color>
  97. </brush>
  98. </colorrole>
  99. </active>
  100. <inactive>
  101. <colorrole role="WindowText">
  102. <brush brushstyle="SolidPattern">
  103. <color alpha="255">
  104. <red>6</red>
  105. <green>6</green>
  106. <blue>6</blue>
  107. </color>
  108. </brush>
  109. </colorrole>
  110. <colorrole role="Mid">
  111. <brush brushstyle="SolidPattern">
  112. <color alpha="255">
  113. <red>190</red>
  114. <green>190</green>
  115. <blue>190</blue>
  116. </color>
  117. </brush>
  118. </colorrole>
  119. <colorrole role="Text">
  120. <brush brushstyle="SolidPattern">
  121. <color alpha="255">
  122. <red>255</red>
  123. <green>255</green>
  124. <blue>255</blue>
  125. </color>
  126. </brush>
  127. </colorrole>
  128. <colorrole role="Base">
  129. <brush brushstyle="SolidPattern">
  130. <color alpha="255">
  131. <red>140</red>
  132. <green>140</green>
  133. <blue>140</blue>
  134. </color>
  135. </brush>
  136. </colorrole>
  137. <colorrole role="Highlight">
  138. <brush brushstyle="SolidPattern">
  139. <color alpha="255">
  140. <red>240</red>
  141. <green>240</green>
  142. <blue>240</blue>
  143. </color>
  144. </brush>
  145. </colorrole>
  146. <colorrole role="HighlightedText">
  147. <brush brushstyle="SolidPattern">
  148. <color alpha="255">
  149. <red>7</red>
  150. <green>7</green>
  151. <blue>7</blue>
  152. </color>
  153. </brush>
  154. </colorrole>
  155. </inactive>
  156. <disabled>
  157. <colorrole role="WindowText">
  158. <brush brushstyle="SolidPattern">
  159. <color alpha="255">
  160. <red>120</red>
  161. <green>120</green>
  162. <blue>120</blue>
  163. </color>
  164. </brush>
  165. </colorrole>
  166. <colorrole role="Mid">
  167. <brush brushstyle="SolidPattern">
  168. <color alpha="255">
  169. <red>190</red>
  170. <green>190</green>
  171. <blue>190</blue>
  172. </color>
  173. </brush>
  174. </colorrole>
  175. <colorrole role="Text">
  176. <brush brushstyle="SolidPattern">
  177. <color alpha="255">
  178. <red>120</red>
  179. <green>120</green>
  180. <blue>120</blue>
  181. </color>
  182. </brush>
  183. </colorrole>
  184. <colorrole role="Base">
  185. <brush brushstyle="SolidPattern">
  186. <color alpha="255">
  187. <red>240</red>
  188. <green>240</green>
  189. <blue>240</blue>
  190. </color>
  191. </brush>
  192. </colorrole>
  193. <colorrole role="Highlight">
  194. <brush brushstyle="SolidPattern">
  195. <color alpha="255">
  196. <red>51</red>
  197. <green>153</green>
  198. <blue>255</blue>
  199. </color>
  200. </brush>
  201. </colorrole>
  202. <colorrole role="HighlightedText">
  203. <brush brushstyle="SolidPattern">
  204. <color alpha="255">
  205. <red>7</red>
  206. <green>7</green>
  207. <blue>7</blue>
  208. </color>
  209. </brush>
  210. </colorrole>
  211. </disabled>
  212. </palette>
  213. </property>
  214. <property name="font">
  215. <font>
  216. <family>Candara</family>
  217. <pointsize>13</pointsize>
  218. <weight>50</weight>
  219. <bold>false</bold>
  220. </font>
  221. </property>
  222. <property name="focusPolicy">
  223. <enum>Qt::NoFocus</enum>
  224. </property>
  225. <property name="frameShape">
  226. <enum>QFrame::StyledPanel</enum>
  227. </property>
  228. <property name="frameShadow">
  229. <enum>QFrame::Sunken</enum>
  230. </property>
  231. <property name="lineWidth">
  232. <number>0</number>
  233. </property>
  234. <property name="verticalScrollBarPolicy">
  235. <enum>Qt::ScrollBarAlwaysOff</enum>
  236. </property>
  237. <property name="horizontalScrollBarPolicy">
  238. <enum>Qt::ScrollBarAlwaysOff</enum>
  239. </property>
  240. <property name="editTriggers">
  241. <set>QAbstractItemView::NoEditTriggers</set>
  242. </property>
  243. <property name="showDropIndicator" stdset="0">
  244. <bool>false</bool>
  245. </property>
  246. <property name="dragDropOverwriteMode">
  247. <bool>false</bool>
  248. </property>
  249. <property name="selectionMode">
  250. <enum>QAbstractItemView::SingleSelection</enum>
  251. </property>
  252. <property name="selectionBehavior">
  253. <enum>QAbstractItemView::SelectRows</enum>
  254. </property>
  255. <property name="iconSize">
  256. <size>
  257. <width>30</width>
  258. <height>30</height>
  259. </size>
  260. </property>
  261. <property name="showGrid">
  262. <bool>false</bool>
  263. </property>
  264. <property name="gridStyle">
  265. <enum>Qt::SolidLine</enum>
  266. </property>
  267. <property name="cornerButtonEnabled">
  268. <bool>false</bool>
  269. </property>
  270. <attribute name="horizontalHeaderVisible">
  271. <bool>false</bool>
  272. </attribute>
  273. <attribute name="horizontalHeaderDefaultSectionSize">
  274. <number>10</number>
  275. </attribute>
  276. <attribute name="horizontalHeaderHighlightSections">
  277. <bool>false</bool>
  278. </attribute>
  279. <attribute name="horizontalHeaderStretchLastSection">
  280. <bool>true</bool>
  281. </attribute>
  282. <attribute name="verticalHeaderVisible">
  283. <bool>false</bool>
  284. </attribute>
  285. <attribute name="verticalHeaderDefaultSectionSize">
  286. <number>80</number>
  287. </attribute>
  288. <attribute name="verticalHeaderHighlightSections">
  289. <bool>false</bool>
  290. </attribute>
  291. <row>
  292. <property name="text">
  293. <string>1</string>
  294. </property>
  295. </row>
  296. <row>
  297. <property name="text">
  298. <string>2</string>
  299. </property>
  300. </row>
  301. <row>
  302. <property name="text">
  303. <string>4</string>
  304. </property>
  305. </row>
  306. <row>
  307. <property name="text">
  308. <string>3</string>
  309. </property>
  310. </row>
  311. <column>
  312. <property name="text">
  313. <string>inutile</string>
  314. </property>
  315. </column>
  316. <column>
  317. <property name="text">
  318. <string>menus</string>
  319. </property>
  320. </column>
  321. <item row="0" column="0">
  322. <property name="text">
  323. <string/>
  324. </property>
  325. <property name="flags">
  326. <set>ItemIsSelectable</set>
  327. </property>
  328. </item>
  329. <item row="0" column="1">
  330. <property name="text">
  331. <string> NOM ET APPARENCE </string>
  332. </property>
  333. <property name="textAlignment">
  334. <set>AlignHCenter|AlignVCenter|AlignCenter</set>
  335. </property>
  336. <property name="icon">
  337. <iconset>
  338. <normaloff>img/oeil.png</normaloff>img/oeil.png</iconset>
  339. </property>
  340. <property name="flags">
  341. <set>ItemIsSelectable|ItemIsEnabled|ItemIsTristate</set>
  342. </property>
  343. </item>
  344. <item row="1" column="0">
  345. <property name="text">
  346. <string/>
  347. </property>
  348. <property name="flags">
  349. <set>ItemIsSelectable</set>
  350. </property>
  351. </item>
  352. <item row="1" column="1">
  353. <property name="text">
  354. <string> FORME ET EFFETS</string>
  355. </property>
  356. <property name="textAlignment">
  357. <set>AlignHCenter|AlignVCenter|AlignCenter</set>
  358. </property>
  359. <property name="icon">
  360. <iconset>
  361. <normaloff>img/btnZonePlacement.png</normaloff>img/btnZonePlacement.png</iconset>
  362. </property>
  363. <property name="flags">
  364. <set>ItemIsSelectable|ItemIsUserCheckable|ItemIsEnabled</set>
  365. </property>
  366. </item>
  367. <item row="2" column="1">
  368. <property name="text">
  369. <string>CONTENU</string>
  370. </property>
  371. <property name="textAlignment">
  372. <set>AlignHCenter|AlignVCenter|AlignCenter</set>
  373. </property>
  374. <property name="icon">
  375. <iconset>
  376. <normaloff>img/sac.png</normaloff>img/sac.png</iconset>
  377. </property>
  378. </item>
  379. <item row="3" column="0">
  380. <property name="text">
  381. <string/>
  382. </property>
  383. <property name="flags">
  384. <set>ItemIsSelectable|ItemIsEnabled</set>
  385. </property>
  386. </item>
  387. <item row="3" column="1">
  388. <property name="text">
  389. <string> NOTES </string>
  390. </property>
  391. <property name="textAlignment">
  392. <set>AlignHCenter|AlignVCenter|AlignCenter</set>
  393. </property>
  394. <property name="icon">
  395. <iconset>
  396. <normaloff>img/note.png</normaloff>img/note.png</iconset>
  397. </property>
  398. <property name="flags">
  399. <set>ItemIsSelectable|ItemIsEnabled</set>
  400. </property>
  401. </item>
  402. </widget>
  403. </item>
  404. <item>
  405. <layout class="QVBoxLayout" name="verticalLayout">
  406. <item>
  407. <widget class="QStackedWidget" name="edc_pages">
  408. <property name="minimumSize">
  409. <size>
  410. <width>392</width>
  411. <height>0</height>
  412. </size>
  413. </property>
  414. <property name="currentIndex">
  415. <number>0</number>
  416. </property>
  417. <widget class="QWidget" name="page_nom">
  418. <widget class="DmLineEdit" name="edc_nom">
  419. <property name="geometry">
  420. <rect>
  421. <x>110</x>
  422. <y>40</y>
  423. <width>271</width>
  424. <height>31</height>
  425. </rect>
  426. </property>
  427. <property name="palette">
  428. <palette>
  429. <active>
  430. <colorrole role="Base">
  431. <brush brushstyle="SolidPattern">
  432. <color alpha="255">
  433. <red>248</red>
  434. <green>248</green>
  435. <blue>248</blue>
  436. </color>
  437. </brush>
  438. </colorrole>
  439. </active>
  440. <inactive>
  441. <colorrole role="Base">
  442. <brush brushstyle="SolidPattern">
  443. <color alpha="255">
  444. <red>248</red>
  445. <green>248</green>
  446. <blue>248</blue>
  447. </color>
  448. </brush>
  449. </colorrole>
  450. </inactive>
  451. <disabled>
  452. <colorrole role="Base">
  453. <brush brushstyle="SolidPattern">
  454. <color alpha="255">
  455. <red>240</red>
  456. <green>240</green>
  457. <blue>240</blue>
  458. </color>
  459. </brush>
  460. </colorrole>
  461. </disabled>
  462. </palette>
  463. </property>
  464. <property name="font">
  465. <font>
  466. <family>Verdana</family>
  467. </font>
  468. </property>
  469. </widget>
  470. <widget class="DmLabelChoixImage" name="edc_logo">
  471. <property name="geometry">
  472. <rect>
  473. <x>20</x>
  474. <y>10</y>
  475. <width>71</width>
  476. <height>71</height>
  477. </rect>
  478. </property>
  479. <property name="font">
  480. <font>
  481. <family>Verdana</family>
  482. <pointsize>7</pointsize>
  483. </font>
  484. </property>
  485. <property name="frameShape">
  486. <enum>QFrame::Box</enum>
  487. </property>
  488. <property name="frameShadow">
  489. <enum>QFrame::Sunken</enum>
  490. </property>
  491. <property name="text">
  492. <string>Choisissez
  493. un fichier
  494. image</string>
  495. </property>
  496. <property name="alignment">
  497. <set>Qt::AlignCenter</set>
  498. </property>
  499. </widget>
  500. <widget class="QLabel" name="label_8">
  501. <property name="geometry">
  502. <rect>
  503. <x>110</x>
  504. <y>15</y>
  505. <width>131</width>
  506. <height>21</height>
  507. </rect>
  508. </property>
  509. <property name="font">
  510. <font>
  511. <family>Verdana</family>
  512. <pointsize>8</pointsize>
  513. </font>
  514. </property>
  515. <property name="text">
  516. <string>Nom : </string>
  517. </property>
  518. </widget>
  519. <widget class="QFrame" name="frame_2">
  520. <property name="geometry">
  521. <rect>
  522. <x>30</x>
  523. <y>90</y>
  524. <width>371</width>
  525. <height>361</height>
  526. </rect>
  527. </property>
  528. <property name="frameShape">
  529. <enum>QFrame::WinPanel</enum>
  530. </property>
  531. <property name="frameShadow">
  532. <enum>QFrame::Raised</enum>
  533. </property>
  534. <widget class="QGraphicsView" name="edc_vueForme">
  535. <property name="geometry">
  536. <rect>
  537. <x>10</x>
  538. <y>10</y>
  539. <width>311</width>
  540. <height>321</height>
  541. </rect>
  542. </property>
  543. <property name="palette">
  544. <palette>
  545. <active>
  546. <colorrole role="Base">
  547. <brush brushstyle="SolidPattern">
  548. <color alpha="255">
  549. <red>244</red>
  550. <green>244</green>
  551. <blue>244</blue>
  552. </color>
  553. </brush>
  554. </colorrole>
  555. </active>
  556. <inactive>
  557. <colorrole role="Base">
  558. <brush brushstyle="SolidPattern">
  559. <color alpha="255">
  560. <red>244</red>
  561. <green>244</green>
  562. <blue>244</blue>
  563. </color>
  564. </brush>
  565. </colorrole>
  566. </inactive>
  567. <disabled>
  568. <colorrole role="Base">
  569. <brush brushstyle="SolidPattern">
  570. <color alpha="255">
  571. <red>240</red>
  572. <green>240</green>
  573. <blue>240</blue>
  574. </color>
  575. </brush>
  576. </colorrole>
  577. </disabled>
  578. </palette>
  579. </property>
  580. <property name="frameShape">
  581. <enum>QFrame::NoFrame</enum>
  582. </property>
  583. <property name="frameShadow">
  584. <enum>QFrame::Raised</enum>
  585. </property>
  586. <property name="renderHints">
  587. <set>QPainter::Antialiasing|QPainter::HighQualityAntialiasing|QPainter::TextAntialiasing</set>
  588. </property>
  589. </widget>
  590. <widget class="QToolButton" name="edc_image">
  591. <property name="geometry">
  592. <rect>
  593. <x>330</x>
  594. <y>50</y>
  595. <width>31</width>
  596. <height>31</height>
  597. </rect>
  598. </property>
  599. <property name="text">
  600. <string>...</string>
  601. </property>
  602. <property name="icon">
  603. <iconset>
  604. <normaloff>img/portrait.png</normaloff>img/portrait.png</iconset>
  605. </property>
  606. <property name="iconSize">
  607. <size>
  608. <width>22</width>
  609. <height>22</height>
  610. </size>
  611. </property>
  612. </widget>
  613. <widget class="QToolButton" name="edc_couleur">
  614. <property name="geometry">
  615. <rect>
  616. <x>330</x>
  617. <y>10</y>
  618. <width>31</width>
  619. <height>31</height>
  620. </rect>
  621. </property>
  622. <property name="text">
  623. <string>...</string>
  624. </property>
  625. <property name="icon">
  626. <iconset>
  627. <normaloff>img/btnCouleurs.png</normaloff>img/btnCouleurs.png</iconset>
  628. </property>
  629. </widget>
  630. <widget class="QToolButton" name="edc_aideForme">
  631. <property name="geometry">
  632. <rect>
  633. <x>330</x>
  634. <y>270</y>
  635. <width>31</width>
  636. <height>31</height>
  637. </rect>
  638. </property>
  639. <property name="text">
  640. <string>...</string>
  641. </property>
  642. <property name="icon">
  643. <iconset>
  644. <normaloff>img/aide.png</normaloff>img/aide.png</iconset>
  645. </property>
  646. </widget>
  647. <widget class="QRadioButton" name="edc_casesHexa">
  648. <property name="geometry">
  649. <rect>
  650. <x>30</x>
  651. <y>330</y>
  652. <width>131</width>
  653. <height>31</height>
  654. </rect>
  655. </property>
  656. <property name="text">
  657. <string>Cases hexagonales</string>
  658. </property>
  659. <property name="checked">
  660. <bool>true</bool>
  661. </property>
  662. </widget>
  663. <widget class="QRadioButton" name="edc_casesCarrees">
  664. <property name="geometry">
  665. <rect>
  666. <x>170</x>
  667. <y>330</y>
  668. <width>111</width>
  669. <height>31</height>
  670. </rect>
  671. </property>
  672. <property name="text">
  673. <string>Cases carrées</string>
  674. </property>
  675. </widget>
  676. </widget>
  677. </widget>
  678. <widget class="QWidget" name="page_dep">
  679. <widget class="QLabel" name="label_9">
  680. <property name="geometry">
  681. <rect>
  682. <x>50</x>
  683. <y>100</y>
  684. <width>391</width>
  685. <height>31</height>
  686. </rect>
  687. </property>
  688. <property name="font">
  689. <font>
  690. <family>Verdana</family>
  691. </font>
  692. </property>
  693. <property name="frameShape">
  694. <enum>QFrame::NoFrame</enum>
  695. </property>
  696. <property name="text">
  697. <string>Nombre de cases que la créature peut parcourir en un tour : </string>
  698. </property>
  699. </widget>
  700. <widget class="QDoubleSpinBox" name="edc_depMarche">
  701. <property name="geometry">
  702. <rect>
  703. <x>220</x>
  704. <y>140</y>
  705. <width>51</width>
  706. <height>31</height>
  707. </rect>
  708. </property>
  709. <property name="palette">
  710. <palette>
  711. <active>
  712. <colorrole role="Base">
  713. <brush brushstyle="SolidPattern">
  714. <color alpha="255">
  715. <red>248</red>
  716. <green>248</green>
  717. <blue>248</blue>
  718. </color>
  719. </brush>
  720. </colorrole>
  721. </active>
  722. <inactive>
  723. <colorrole role="Base">
  724. <brush brushstyle="SolidPattern">
  725. <color alpha="255">
  726. <red>248</red>
  727. <green>248</green>
  728. <blue>248</blue>
  729. </color>
  730. </brush>
  731. </colorrole>
  732. </inactive>
  733. <disabled>
  734. <colorrole role="Base">
  735. <brush brushstyle="SolidPattern">
  736. <color alpha="255">
  737. <red>240</red>
  738. <green>240</green>
  739. <blue>240</blue>
  740. </color>
  741. </brush>
  742. </colorrole>
  743. </disabled>
  744. </palette>
  745. </property>
  746. <property name="font">
  747. <font>
  748. <family>Verdana</family>
  749. </font>
  750. </property>
  751. <property name="prefix">
  752. <string/>
  753. </property>
  754. <property name="decimals">
  755. <number>0</number>
  756. </property>
  757. <property name="singleStep">
  758. <double>1.000000000000000</double>
  759. </property>
  760. <property name="value">
  761. <double>8.000000000000000</double>
  762. </property>
  763. </widget>
  764. <widget class="QLabel" name="label_10">
  765. <property name="geometry">
  766. <rect>
  767. <x>110</x>
  768. <y>140</y>
  769. <width>101</width>
  770. <height>31</height>
  771. </rect>
  772. </property>
  773. <property name="font">
  774. <font>
  775. <family>Verdana</family>
  776. </font>
  777. </property>
  778. <property name="frameShape">
  779. <enum>QFrame::NoFrame</enum>
  780. </property>
  781. <property name="text">
  782. <string>Marche / Course</string>
  783. </property>
  784. </widget>
  785. <widget class="QDoubleSpinBox" name="edc_depNage">
  786. <property name="geometry">
  787. <rect>
  788. <x>220</x>
  789. <y>180</y>
  790. <width>51</width>
  791. <height>31</height>
  792. </rect>
  793. </property>
  794. <property name="palette">
  795. <palette>
  796. <active>
  797. <colorrole role="Base">
  798. <brush brushstyle="SolidPattern">
  799. <color alpha="255">
  800. <red>248</red>
  801. <green>248</green>
  802. <blue>248</blue>
  803. </color>
  804. </brush>
  805. </colorrole>
  806. </active>
  807. <inactive>
  808. <colorrole role="Base">
  809. <brush brushstyle="SolidPattern">
  810. <color alpha="255">
  811. <red>248</red>
  812. <green>248</green>
  813. <blue>248</blue>
  814. </color>
  815. </brush>
  816. </colorrole>
  817. </inactive>
  818. <disabled>
  819. <colorrole role="Base">
  820. <brush brushstyle="SolidPattern">
  821. <color alpha="255">
  822. <red>240</red>
  823. <green>240</green>
  824. <blue>240</blue>
  825. </color>
  826. </brush>
  827. </colorrole>
  828. </disabled>
  829. </palette>
  830. </property>
  831. <property name="font">
  832. <font>
  833. <family>Verdana</family>
  834. </font>
  835. </property>
  836. <property name="prefix">
  837. <string/>
  838. </property>
  839. <property name="decimals">
  840. <number>0</number>
  841. </property>
  842. <property name="singleStep">
  843. <double>1.000000000000000</double>
  844. </property>
  845. <property name="value">
  846. <double>4.000000000000000</double>
  847. </property>
  848. </widget>
  849. <widget class="QLabel" name="label_11">
  850. <property name="geometry">
  851. <rect>
  852. <x>110</x>
  853. <y>180</y>
  854. <width>81</width>
  855. <height>31</height>
  856. </rect>
  857. </property>
  858. <property name="font">
  859. <font>
  860. <family>Verdana</family>
  861. </font>
  862. </property>
  863. <property name="frameShape">
  864. <enum>QFrame::NoFrame</enum>
  865. </property>
  866. <property name="text">
  867. <string>Nage </string>
  868. </property>
  869. </widget>
  870. <widget class="QDoubleSpinBox" name="edc_depEscalade">
  871. <property name="geometry">
  872. <rect>
  873. <x>220</x>
  874. <y>220</y>
  875. <width>51</width>
  876. <height>31</height>
  877. </rect>
  878. </property>
  879. <property name="palette">
  880. <palette>
  881. <active>
  882. <colorrole role="Base">
  883. <brush brushstyle="SolidPattern">
  884. <color alpha="255">
  885. <red>248</red>
  886. <green>248</green>
  887. <blue>248</blue>
  888. </color>
  889. </brush>
  890. </colorrole>
  891. </active>
  892. <inactive>
  893. <colorrole role="Base">
  894. <brush brushstyle="SolidPattern">
  895. <color alpha="255">
  896. <red>248</red>
  897. <green>248</green>
  898. <blue>248</blue>
  899. </color>
  900. </brush>
  901. </colorrole>
  902. </inactive>
  903. <disabled>
  904. <colorrole role="Base">
  905. <brush brushstyle="SolidPattern">
  906. <color alpha="255">
  907. <red>240</red>
  908. <green>240</green>
  909. <blue>240</blue>
  910. </color>
  911. </brush>
  912. </colorrole>
  913. </disabled>
  914. </palette>
  915. </property>
  916. <property name="font">
  917. <font>
  918. <family>Verdana</family>
  919. </font>
  920. </property>
  921. <property name="prefix">
  922. <string/>
  923. </property>
  924. <property name="decimals">
  925. <number>0</number>
  926. </property>
  927. <property name="singleStep">
  928. <double>1.000000000000000</double>
  929. </property>
  930. <property name="value">
  931. <double>2.000000000000000</double>
  932. </property>
  933. </widget>
  934. <widget class="QLabel" name="label_12">
  935. <property name="geometry">
  936. <rect>
  937. <x>110</x>
  938. <y>220</y>
  939. <width>91</width>
  940. <height>31</height>
  941. </rect>
  942. </property>
  943. <property name="font">
  944. <font>
  945. <family>Verdana</family>
  946. </font>
  947. </property>
  948. <property name="frameShape">
  949. <enum>QFrame::NoFrame</enum>
  950. </property>
  951. <property name="text">
  952. <string>Escalade </string>
  953. </property>
  954. </widget>
  955. <widget class="QLabel" name="label_13">
  956. <property name="geometry">
  957. <rect>
  958. <x>110</x>
  959. <y>260</y>
  960. <width>61</width>
  961. <height>31</height>
  962. </rect>
  963. </property>
  964. <property name="font">
  965. <font>
  966. <family>Verdana</family>
  967. </font>
  968. </property>
  969. <property name="frameShape">
  970. <enum>QFrame::NoFrame</enum>
  971. </property>
  972. <property name="text">
  973. <string>Vol </string>
  974. </property>
  975. </widget>
  976. <widget class="QDoubleSpinBox" name="edc_depVol">
  977. <property name="geometry">
  978. <rect>
  979. <x>220</x>
  980. <y>260</y>
  981. <width>51</width>
  982. <height>31</height>
  983. </rect>
  984. </property>
  985. <property name="palette">
  986. <palette>
  987. <active>
  988. <colorrole role="Base">
  989. <brush brushstyle="SolidPattern">
  990. <color alpha="255">
  991. <red>248</red>
  992. <green>248</green>
  993. <blue>248</blue>
  994. </color>
  995. </brush>
  996. </colorrole>
  997. </active>
  998. <inactive>
  999. <colorrole role="Base">
  1000. <brush brushstyle="SolidPattern">
  1001. <color alpha="255">
  1002. <red>248</red>
  1003. <green>248</green>
  1004. <blue>248</blue>
  1005. </color>
  1006. </brush>
  1007. </colorrole>
  1008. </inactive>
  1009. <disabled>
  1010. <colorrole role="Base">
  1011. <brush brushstyle="SolidPattern">
  1012. <color alpha="255">
  1013. <red>240</red>
  1014. <green>240</green>
  1015. <blue>240</blue>
  1016. </color>
  1017. </brush>
  1018. </colorrole>
  1019. </disabled>
  1020. </palette>
  1021. </property>
  1022. <property name="font">
  1023. <font>
  1024. <family>Verdana</family>
  1025. </font>
  1026. </property>
  1027. <property name="prefix">
  1028. <string/>
  1029. </property>
  1030. <property name="decimals">
  1031. <number>0</number>
  1032. </property>
  1033. <property name="singleStep">
  1034. <double>1.000000000000000</double>
  1035. </property>
  1036. <property name="value">
  1037. <double>0.000000000000000</double>
  1038. </property>
  1039. </widget>
  1040. <widget class="QDoubleSpinBox" name="edc_saut">
  1041. <property name="geometry">
  1042. <rect>
  1043. <x>290</x>
  1044. <y>320</y>
  1045. <width>51</width>
  1046. <height>31</height>
  1047. </rect>
  1048. </property>
  1049. <property name="palette">
  1050. <palette>
  1051. <active>
  1052. <colorrole role="Base">
  1053. <brush brushstyle="SolidPattern">
  1054. <color alpha="255">
  1055. <red>248</red>
  1056. <green>248</green>
  1057. <blue>248</blue>
  1058. </color>
  1059. </brush>
  1060. </colorrole>
  1061. </active>
  1062. <inactive>
  1063. <colorrole role="Base">
  1064. <brush brushstyle="SolidPattern">
  1065. <color alpha="255">
  1066. <red>248</red>
  1067. <green>248</green>
  1068. <blue>248</blue>
  1069. </color>
  1070. </brush>
  1071. </colorrole>
  1072. </inactive>
  1073. <disabled>
  1074. <colorrole role="Base">
  1075. <brush brushstyle="SolidPattern">
  1076. <color alpha="255">
  1077. <red>240</red>
  1078. <green>240</green>
  1079. <blue>240</blue>
  1080. </color>
  1081. </brush>
  1082. </colorrole>
  1083. </disabled>
  1084. </palette>
  1085. </property>
  1086. <property name="font">
  1087. <font>
  1088. <family>Verdana</family>
  1089. </font>
  1090. </property>
  1091. <property name="prefix">
  1092. <string/>
  1093. </property>
  1094. <property name="decimals">
  1095. <number>0</number>
  1096. </property>
  1097. <property name="singleStep">
  1098. <double>1.000000000000000</double>
  1099. </property>
  1100. <property name="value">
  1101. <double>5.000000000000000</double>
  1102. </property>
  1103. </widget>
  1104. <widget class="QLabel" name="label_14">
  1105. <property name="geometry">
  1106. <rect>
  1107. <x>50</x>
  1108. <y>320</y>
  1109. <width>231</width>
  1110. <height>31</height>
  1111. </rect>
  1112. </property>
  1113. <property name="font">
  1114. <font>
  1115. <family>Verdana</family>
  1116. </font>
  1117. </property>
  1118. <property name="frameShape">
  1119. <enum>QFrame::NoFrame</enum>
  1120. </property>
  1121. <property name="text">
  1122. <string>Hauteur maximum pour les sauts : </string>
  1123. </property>
  1124. </widget>
  1125. <widget class="QLabel" name="label_2">
  1126. <property name="geometry">
  1127. <rect>
  1128. <x>60</x>
  1129. <y>140</y>
  1130. <width>31</width>
  1131. <height>31</height>
  1132. </rect>
  1133. </property>
  1134. <property name="text">
  1135. <string/>
  1136. </property>
  1137. <property name="pixmap">
  1138. <pixmap>img/btnZonePlacement.png</pixmap>
  1139. </property>
  1140. <property name="scaledContents">
  1141. <bool>false</bool>
  1142. </property>
  1143. <property name="alignment">
  1144. <set>Qt::AlignCenter</set>
  1145. </property>
  1146. </widget>
  1147. <widget class="QLabel" name="label_3">
  1148. <property name="geometry">
  1149. <rect>
  1150. <x>60</x>
  1151. <y>180</y>
  1152. <width>31</width>
  1153. <height>31</height>
  1154. </rect>
  1155. </property>
  1156. <property name="text">
  1157. <string/>
  1158. </property>
  1159. <property name="pixmap">
  1160. <pixmap>img/nage_24.png</pixmap>
  1161. </property>
  1162. <property name="scaledContents">
  1163. <bool>false</bool>
  1164. </property>
  1165. </widget>
  1166. <widget class="QLabel" name="label_4">
  1167. <property name="geometry">
  1168. <rect>
  1169. <x>60</x>
  1170. <y>220</y>
  1171. <width>31</width>
  1172. <height>31</height>
  1173. </rect>
  1174. </property>
  1175. <property name="text">
  1176. <string/>
  1177. </property>
  1178. <property name="pixmap">
  1179. <pixmap>img/escalade_24.png</pixmap>
  1180. </property>
  1181. <property name="scaledContents">
  1182. <bool>false</bool>
  1183. </property>
  1184. </widget>
  1185. <widget class="QLabel" name="label_5">
  1186. <property name="geometry">
  1187. <rect>
  1188. <x>60</x>
  1189. <y>260</y>
  1190. <width>31</width>
  1191. <height>31</height>
  1192. </rect>
  1193. </property>
  1194. <property name="text">
  1195. <string/>
  1196. </property>
  1197. <property name="pixmap">
  1198. <pixmap>img/plume_24.png</pixmap>
  1199. </property>
  1200. <property name="scaledContents">
  1201. <bool>false</bool>
  1202. </property>
  1203. </widget>
  1204. <widget class="QDoubleSpinBox" name="edc_taille">
  1205. <property name="geometry">
  1206. <rect>
  1207. <x>290</x>
  1208. <y>60</y>
  1209. <width>51</width>
  1210. <height>31</height>
  1211. </rect>
  1212. </property>
  1213. <property name="palette">
  1214. <palette>
  1215. <active>
  1216. <colorrole role="Base">
  1217. <brush brushstyle="SolidPattern">
  1218. <color alpha="255">
  1219. <red>248</red>
  1220. <green>248</green>
  1221. <blue>248</blue>
  1222. </color>
  1223. </brush>
  1224. </colorrole>
  1225. </active>
  1226. <inactive>
  1227. <colorrole role="Base">
  1228. <brush brushstyle="SolidPattern">
  1229. <color alpha="255">
  1230. <red>248</red>
  1231. <green>248</green>
  1232. <blue>248</blue>
  1233. </color>
  1234. </brush>
  1235. </colorrole>
  1236. </inactive>
  1237. <disabled>
  1238. <colorrole role="Base">
  1239. <brush brushstyle="SolidPattern">
  1240. <color alpha="255">
  1241. <red>240</red>
  1242. <green>240</green>
  1243. <blue>240</blue>
  1244. </color>
  1245. </brush>
  1246. </colorrole>
  1247. </disabled>
  1248. </palette>
  1249. </property>
  1250. <property name="font">
  1251. <font>
  1252. <family>Verdana</family>
  1253. </font>
  1254. </property>
  1255. <property name="prefix">
  1256. <string/>
  1257. </property>
  1258. <property name="decimals">
  1259. <number>0</number>
  1260. </property>
  1261. <property name="singleStep">
  1262. <double>1.000000000000000</double>
  1263. </property>
  1264. <property name="value">
  1265. <double>2.000000000000000</double>
  1266. </property>
  1267. </widget>
  1268. <widget class="QLabel" name="label_15">
  1269. <property name="geometry">
  1270. <rect>
  1271. <x>50</x>
  1272. <y>60</y>
  1273. <width>231</width>
  1274. <height>31</height>
  1275. </rect>
  1276. </property>
  1277. <property name="font">
  1278. <font>
  1279. <family>Verdana</family>
  1280. </font>
  1281. </property>
  1282. <property name="frameShape">
  1283. <enum>QFrame::NoFrame</enum>
  1284. </property>
  1285. <property name="text">
  1286. <string>Taille de la créature (en cases) : </string>
  1287. </property>
  1288. </widget>
  1289. </widget>
  1290. <widget class="QWidget" name="page_invent">
  1291. <widget class="QTableWidget" name="edc_listeInventaire">
  1292. <property name="geometry">
  1293. <rect>
  1294. <x>20</x>
  1295. <y>50</y>
  1296. <width>381</width>
  1297. <height>311</height>
  1298. </rect>
  1299. </property>
  1300. <property name="palette">
  1301. <palette>
  1302. <active>
  1303. <colorrole role="Base">
  1304. <brush brushstyle="SolidPattern">
  1305. <color alpha="150">
  1306. <red>255</red>
  1307. <green>255</green>
  1308. <blue>255</blue>
  1309. </color>
  1310. </brush>
  1311. </colorrole>
  1312. </active>
  1313. <inactive>
  1314. <colorrole role="Base">
  1315. <brush brushstyle="SolidPattern">
  1316. <color alpha="150">
  1317. <red>255</red>
  1318. <green>255</green>
  1319. <blue>255</blue>
  1320. </color>
  1321. </brush>
  1322. </colorrole>
  1323. </inactive>
  1324. <disabled>
  1325. <colorrole role="Base">
  1326. <brush brushstyle="SolidPattern">
  1327. <color alpha="255">
  1328. <red>240</red>
  1329. <green>240</green>
  1330. <blue>240</blue>
  1331. </color>
  1332. </brush>
  1333. </colorrole>
  1334. </disabled>
  1335. </palette>
  1336. </property>
  1337. <property name="font">
  1338. <font>
  1339. <family>Verdana</family>
  1340. </font>
  1341. </property>
  1342. <property name="frameShape">
  1343. <enum>QFrame::WinPanel</enum>
  1344. </property>
  1345. <property name="horizontalScrollBarPolicy">
  1346. <enum>Qt::ScrollBarAlwaysOff</enum>
  1347. </property>
  1348. <property name="editTriggers">
  1349. <set>QAbstractItemView::AllEditTriggers</set>
  1350. </property>
  1351. <property name="alternatingRowColors">
  1352. <bool>true</bool>
  1353. </property>
  1354. <property name="selectionMode">
  1355. <enum>QAbstractItemView::NoSelection</enum>
  1356. </property>
  1357. <property name="showGrid">
  1358. <bool>true</bool>
  1359. </property>
  1360. <attribute name="horizontalHeaderVisible">
  1361. <bool>false</bool>
  1362. </attribute>
  1363. <attribute name="horizontalHeaderDefaultSectionSize">
  1364. <number>50</number>
  1365. </attribute>
  1366. <attribute name="verticalHeaderVisible">
  1367. <bool>false</bool>
  1368. </attribute>
  1369. <column>
  1370. <property name="text">
  1371. <string>nombre</string>
  1372. </property>
  1373. </column>
  1374. <column>
  1375. <property name="text">
  1376. <string>objet</string>
  1377. </property>
  1378. </column>
  1379. </widget>
  1380. <widget class="QToolButton" name="edc_inventaire_supprimer">
  1381. <property name="geometry">
  1382. <rect>
  1383. <x>380</x>
  1384. <y>360</y>
  1385. <width>21</width>
  1386. <height>20</height>
  1387. </rect>
  1388. </property>
  1389. <property name="text">
  1390. <string>...</string>
  1391. </property>
  1392. <property name="icon">
  1393. <iconset>
  1394. <normaloff>img/gomme.png</normaloff>img/gomme.png</iconset>
  1395. </property>
  1396. </widget>
  1397. <widget class="QLabel" name="label_24">
  1398. <property name="geometry">
  1399. <rect>
  1400. <x>20</x>
  1401. <y>20</y>
  1402. <width>131</width>
  1403. <height>20</height>
  1404. </rect>
  1405. </property>
  1406. <property name="font">
  1407. <font>
  1408. <family>Verdana</family>
  1409. </font>
  1410. </property>
  1411. <property name="text">
  1412. <string>Inventaire :</string>
  1413. </property>
  1414. </widget>
  1415. <widget class="QToolButton" name="edc_inventaire_nouveau">
  1416. <property name="geometry">
  1417. <rect>
  1418. <x>350</x>
  1419. <y>360</y>
  1420. <width>21</width>
  1421. <height>20</height>
  1422. </rect>
  1423. </property>
  1424. <property name="text">
  1425. <string>...</string>
  1426. </property>
  1427. <property name="icon">
  1428. <iconset>
  1429. <normaloff>img/plus.png</normaloff>img/plus.png</iconset>
  1430. </property>
  1431. </widget>
  1432. </widget>
  1433. <widget class="QWidget" name="page_notes">
  1434. <widget class="QLabel" name="label_23">
  1435. <property name="geometry">
  1436. <rect>
  1437. <x>30</x>
  1438. <y>120</y>
  1439. <width>151</width>
  1440. <height>20</height>
  1441. </rect>
  1442. </property>
  1443. <property name="font">
  1444. <font>
  1445. <family>Verdana</family>
  1446. </font>
  1447. </property>
  1448. <property name="text">
  1449. <string>Notes :</string>
  1450. </property>
  1451. </widget>
  1452. <widget class="QTextEdit" name="edc_notes">
  1453. <property name="geometry">
  1454. <rect>
  1455. <x>30</x>
  1456. <y>150</y>
  1457. <width>411</width>
  1458. <height>171</height>
  1459. </rect>
  1460. </property>
  1461. <property name="palette">
  1462. <palette>
  1463. <active>
  1464. <colorrole role="Base">
  1465. <brush brushstyle="SolidPattern">
  1466. <color alpha="255">
  1467. <red>248</red>
  1468. <green>248</green>
  1469. <blue>248</blue>
  1470. </color>
  1471. </brush>
  1472. </colorrole>
  1473. </active>
  1474. <inactive>
  1475. <colorrole role="Base">
  1476. <brush brushstyle="SolidPattern">
  1477. <color alpha="255">
  1478. <red>248</red>
  1479. <green>248</green>
  1480. <blue>248</blue>
  1481. </color>
  1482. </brush>
  1483. </colorrole>
  1484. </inactive>
  1485. <disabled>
  1486. <colorrole role="Base">
  1487. <brush brushstyle="SolidPattern">
  1488. <color alpha="255">
  1489. <red>240</red>
  1490. <green>240</green>
  1491. <blue>240</blue>
  1492. </color>
  1493. </brush>
  1494. </colorrole>
  1495. </disabled>
  1496. </palette>
  1497. </property>
  1498. <property name="font">
  1499. <font>
  1500. <family>Verdana</family>
  1501. </font>
  1502. </property>
  1503. </widget>
  1504. <widget class="DmLineEdit" name="edc_detail_age">
  1505. <property name="geometry">
  1506. <rect>
  1507. <x>350</x>
  1508. <y>20</y>
  1509. <width>81</width>
  1510. <height>20</height>
  1511. </rect>
  1512. </property>
  1513. <property name="palette">
  1514. <palette>
  1515. <active>
  1516. <colorrole role="Base">
  1517. <brush brushstyle="SolidPattern">
  1518. <color alpha="255">
  1519. <red>248</red>
  1520. <green>248</green>
  1521. <blue>248</blue>
  1522. </color>
  1523. </brush>
  1524. </colorrole>
  1525. </active>
  1526. <inactive>
  1527. <colorrole role="Base">
  1528. <brush brushstyle="SolidPattern">
  1529. <color alpha="255">
  1530. <red>248</red>
  1531. <green>248</green>
  1532. <blue>248</blue>
  1533. </color>
  1534. </brush>
  1535. </colorrole>
  1536. </inactive>
  1537. <disabled>
  1538. <colorrole role="Base">
  1539. <brush brushstyle="SolidPattern">
  1540. <color alpha="255">
  1541. <red>240</red>
  1542. <green>240</green>
  1543. <blue>240</blue>
  1544. </color>
  1545. </brush>
  1546. </colorrole>
  1547. </disabled>
  1548. </palette>
  1549. </property>
  1550. <property name="font">
  1551. <font>
  1552. <family>Verdana</family>
  1553. </font>
  1554. </property>
  1555. </widget>
  1556. <widget class="QLabel" name="label_16">
  1557. <property name="geometry">
  1558. <rect>
  1559. <x>300</x>
  1560. <y>19</y>
  1561. <width>41</width>
  1562. <height>21</height>
  1563. </rect>
  1564. </property>
  1565. <property name="font">
  1566. <font>
  1567. <family>Verdana</family>
  1568. <pointsize>8</pointsize>
  1569. </font>
  1570. </property>
  1571. <property name="text">
  1572. <string>Age : </string>
  1573. </property>
  1574. </widget>
  1575. <widget class="QLabel" name="label_17">
  1576. <property name="geometry">
  1577. <rect>
  1578. <x>300</x>
  1579. <y>49</y>
  1580. <width>41</width>
  1581. <height>21</height>
  1582. </rect>
  1583. </property>
  1584. <property name="font">
  1585. <font>
  1586. <family>Verdana</family>
  1587. <pointsize>8</pointsize>
  1588. </font>
  1589. </property>
  1590. <property name="text">
  1591. <string>Sexe : </string>
  1592. </property>
  1593. </widget>
  1594. <widget class="DmLineEdit" name="edc_detail_sexe">
  1595. <property name="geometry">
  1596. <rect>
  1597. <x>350</x>
  1598. <y>49</y>
  1599. <width>81</width>
  1600. <height>20</height>
  1601. </rect>
  1602. </property>
  1603. <property name="palette">
  1604. <palette>
  1605. <active>
  1606. <colorrole role="Base">
  1607. <brush brushstyle="SolidPattern">
  1608. <color alpha="255">
  1609. <red>248</red>
  1610. <green>248</green>
  1611. <blue>248</blue>
  1612. </color>
  1613. </brush>
  1614. </colorrole>
  1615. </active>
  1616. <inactive>
  1617. <colorrole role="Base">
  1618. <brush brushstyle="SolidPattern">
  1619. <color alpha="255">
  1620. <red>248</red>
  1621. <green>248</green>
  1622. <blue>248</blue>
  1623. </color>
  1624. </brush>
  1625. </colorrole>
  1626. </inactive>
  1627. <disabled>
  1628. <colorrole role="Base">
  1629. <brush brushstyle="SolidPattern">
  1630. <color alpha="255">
  1631. <red>240</red>
  1632. <green>240</green>
  1633. <blue>240</blue>
  1634. </color>
  1635. </brush>
  1636. </colorrole>
  1637. </disabled>
  1638. </palette>
  1639. </property>
  1640. <property name="font">
  1641. <font>
  1642. <family>Verdana</family>
  1643. </font>
  1644. </property>
  1645. </widget>
  1646. <widget class="QLabel" name="label_41">
  1647. <property name="geometry">
  1648. <rect>
  1649. <x>300</x>
  1650. <y>79</y>
  1651. <width>41</width>
  1652. <height>21</height>
  1653. </rect>
  1654. </property>
  1655. <property name="font">
  1656. <font>
  1657. <family>Verdana</family>
  1658. <pointsize>8</pointsize>
  1659. </font>
  1660. </property>
  1661. <property name="text">
  1662. <string>Poids : </string>
  1663. </property>
  1664. </widget>
  1665. <widget class="DmLineEdit" name="edc_detail_poids">
  1666. <property name="geometry">
  1667. <rect>
  1668. <x>350</x>
  1669. <y>80</y>
  1670. <width>81</width>
  1671. <height>20</height>
  1672. </rect>
  1673. </property>
  1674. <property name="palette">
  1675. <palette>
  1676. <active>
  1677. <colorrole role="Base">
  1678. <brush brushstyle="SolidPattern">
  1679. <color alpha="255">
  1680. <red>248</red>
  1681. <green>248</green>
  1682. <blue>248</blue>
  1683. </color>
  1684. </brush>
  1685. </colorrole>
  1686. </active>
  1687. <inactive>
  1688. <colorrole role="Base">
  1689. <brush brushstyle="SolidPattern">
  1690. <color alpha="255">
  1691. <red>248</red>
  1692. <green>248</green>
  1693. <blue>248</blue>
  1694. </color>
  1695. </brush>
  1696. </colorrole>
  1697. </inactive>
  1698. <disabled>
  1699. <colorrole role="Base">
  1700. <brush brushstyle="SolidPattern">
  1701. <color alpha="255">
  1702. <red>240</red>
  1703. <green>240</green>
  1704. <blue>240</blue>
  1705. </color>
  1706. </brush>
  1707. </colorrole>
  1708. </disabled>
  1709. </palette>
  1710. </property>
  1711. <property name="font">
  1712. <font>
  1713. <family>Verdana</family>
  1714. </font>
  1715. </property>
  1716. </widget>
  1717. <widget class="QLabel" name="label_43">
  1718. <property name="geometry">
  1719. <rect>
  1720. <x>20</x>
  1721. <y>20</y>
  1722. <width>61</width>
  1723. <height>21</height>
  1724. </rect>
  1725. </property>
  1726. <property name="font">
  1727. <font>
  1728. <family>Verdana</family>
  1729. <pointsize>8</pointsize>
  1730. </font>
  1731. </property>
  1732. <property name="text">
  1733. <string>Espèce : </string>
  1734. </property>
  1735. </widget>
  1736. <widget class="DmLineEdit" name="edc_detail_espece">
  1737. <property name="geometry">
  1738. <rect>
  1739. <x>100</x>
  1740. <y>21</y>
  1741. <width>171</width>
  1742. <height>20</height>
  1743. </rect>
  1744. </property>
  1745. <property name="palette">
  1746. <palette>
  1747. <active>
  1748. <colorrole role="Base">
  1749. <brush brushstyle="SolidPattern">
  1750. <color alpha="255">
  1751. <red>248</red>
  1752. <green>248</green>
  1753. <blue>248</blue>
  1754. </color>
  1755. </brush>
  1756. </colorrole>
  1757. </active>
  1758. <inactive>
  1759. <colorrole role="Base">
  1760. <brush brushstyle="SolidPattern">
  1761. <color alpha="255">
  1762. <red>248</red>
  1763. <green>248</green>
  1764. <blue>248</blue>
  1765. </color>
  1766. </brush>
  1767. </colorrole>
  1768. </inactive>
  1769. <disabled>
  1770. <colorrole role="Base">
  1771. <brush brushstyle="SolidPattern">
  1772. <color alpha="255">
  1773. <red>240</red>
  1774. <green>240</green>
  1775. <blue>240</blue>
  1776. </color>
  1777. </brush>
  1778. </colorrole>
  1779. </disabled>
  1780. </palette>
  1781. </property>
  1782. <property name="font">
  1783. <font>
  1784. <family>Verdana</family>
  1785. </font>
  1786. </property>
  1787. <property name="text">
  1788. <string/>
  1789. </property>
  1790. </widget>
  1791. <widget class="QLabel" name="label_44">
  1792. <property name="geometry">
  1793. <rect>
  1794. <x>20</x>
  1795. <y>49</y>
  1796. <width>81</width>
  1797. <height>21</height>
  1798. </rect>
  1799. </property>
  1800. <property name="font">
  1801. <font>
  1802. <family>Verdana</family>
  1803. <pointsize>8</pointsize>
  1804. </font>
  1805. </property>
  1806. <property name="text">
  1807. <string>Profession : </string>
  1808. </property>
  1809. </widget>
  1810. <widget class="DmLineEdit" name="edc_detail_profession">
  1811. <property name="geometry">
  1812. <rect>
  1813. <x>100</x>
  1814. <y>50</y>
  1815. <width>171</width>
  1816. <height>20</height>
  1817. </rect>
  1818. </property>
  1819. <property name="palette">
  1820. <palette>
  1821. <active>
  1822. <colorrole role="Base">
  1823. <brush brushstyle="SolidPattern">
  1824. <color alpha="255">
  1825. <red>248</red>
  1826. <green>248</green>
  1827. <blue>248</blue>
  1828. </color>
  1829. </brush>
  1830. </colorrole>
  1831. </active>
  1832. <inactive>
  1833. <colorrole role="Base">
  1834. <brush brushstyle="SolidPattern">
  1835. <color alpha="255">
  1836. <red>248</red>
  1837. <green>248</green>
  1838. <blue>248</blue>
  1839. </color>
  1840. </brush>
  1841. </colorrole>
  1842. </inactive>
  1843. <disabled>
  1844. <colorrole role="Base">
  1845. <brush brushstyle="SolidPattern">
  1846. <color alpha="255">
  1847. <red>240</red>
  1848. <green>240</green>
  1849. <blue>240</blue>
  1850. </color>
  1851. </brush>
  1852. </colorrole>
  1853. </disabled>
  1854. </palette>
  1855. </property>
  1856. <property name="font">
  1857. <font>
  1858. <family>Verdana</family>
  1859. </font>
  1860. </property>
  1861. <property name="text">
  1862. <string/>
  1863. </property>
  1864. </widget>
  1865. <widget class="DmLineEdit" name="edc_detail_religion">
  1866. <property name="geometry">
  1867. <rect>
  1868. <x>100</x>
  1869. <y>80</y>
  1870. <width>171</width>
  1871. <height>21</height>
  1872. </rect>
  1873. </property>
  1874. <property name="palette">
  1875. <palette>
  1876. <active>
  1877. <colorrole role="Base">
  1878. <brush brushstyle="SolidPattern">
  1879. <color alpha="255">
  1880. <red>248</red>
  1881. <green>248</green>
  1882. <blue>248</blue>
  1883. </color>
  1884. </brush>
  1885. </colorrole>
  1886. </active>
  1887. <inactive>
  1888. <colorrole role="Base">
  1889. <brush brushstyle="SolidPattern">
  1890. <color alpha="255">
  1891. <red>248</red>
  1892. <green>248</green>
  1893. <blue>248</blue>
  1894. </color>
  1895. </brush>
  1896. </colorrole>
  1897. </inactive>
  1898. <disabled>
  1899. <colorrole role="Base">
  1900. <brush brushstyle="SolidPattern">
  1901. <color alpha="255">
  1902. <red>240</red>
  1903. <green>240</green>
  1904. <blue>240</blue>
  1905. </color>
  1906. </brush>
  1907. </colorrole>
  1908. </disabled>
  1909. </palette>
  1910. </property>
  1911. <property name="font">
  1912. <font>
  1913. <family>Verdana</family>
  1914. </font>
  1915. </property>
  1916. <property name="text">
  1917. <string/>
  1918. </property>
  1919. </widget>
  1920. <widget class="QLabel" name="label_42">
  1921. <property name="geometry">
  1922. <rect>
  1923. <x>20</x>
  1924. <y>70</y>
  1925. <width>81</width>
  1926. <height>31</height>
  1927. </rect>
  1928. </property>
  1929. <property name="font">
  1930. <font>
  1931. <family>Verdana</family>
  1932. <pointsize>8</pointsize>
  1933. </font>
  1934. </property>
  1935. <property name="text">
  1936. <string>Religion /
  1937. Croyances :</string>
  1938. </property>
  1939. </widget>
  1940. </widget>
  1941. </widget>
  1942. </item>
  1943. <item>
  1944. <widget class="QFrame" name="frame">
  1945. <property name="minimumSize">
  1946. <size>
  1947. <width>392</width>
  1948. <height>50</height>
  1949. </size>
  1950. </property>
  1951. <property name="maximumSize">
  1952. <size>
  1953. <width>16777215</width>
  1954. <height>50</height>
  1955. </size>
  1956. </property>
  1957. <property name="frameShape">
  1958. <enum>QFrame::StyledPanel</enum>
  1959. </property>
  1960. <property name="frameShadow">
  1961. <enum>QFrame::Raised</enum>
  1962. </property>
  1963. <widget class="QPushButton" name="edc_enregistrer">
  1964. <property name="enabled">
  1965. <bool>false</bool>
  1966. </property>
  1967. <property name="geometry">
  1968. <rect>
  1969. <x>370</x>
  1970. <y>10</y>
  1971. <width>91</width>
  1972. <height>31</height>
  1973. </rect>
  1974. </property>
  1975. <property name="font">
  1976. <font>
  1977. <family>Verdana</family>
  1978. <weight>75</weight>
  1979. <bold>true</bold>
  1980. </font>
  1981. </property>
  1982. <property name="text">
  1983. <string>Enregistrer</string>
  1984. </property>
  1985. </widget>
  1986. <widget class="QPushButton" name="edc_annuler">
  1987. <property name="geometry">
  1988. <rect>
  1989. <x>10</x>
  1990. <y>10</y>
  1991. <width>81</width>
  1992. <height>31</height>
  1993. </rect>
  1994. </property>
  1995. <property name="font">
  1996. <font>
  1997. <family>Verdana</family>
  1998. </font>
  1999. </property>
  2000. <property name="text">
  2001. <string>Annuler</string>
  2002. </property>
  2003. </widget>
  2004. </widget>
  2005. </item>
  2006. </layout>
  2007. </item>
  2008. </layout>
  2009. </item>
  2010. </layout>
  2011. </widget>
  2012. <customwidgets>
  2013. <customwidget>
  2014. <class>DmTableMenu</class>
  2015. <extends>QTableWidget</extends>
  2016. <header location="global">dm.h</header>
  2017. </customwidget>
  2018. <customwidget>
  2019. <class>DmLabelChoixImage</class>
  2020. <extends>QLabel</extends>
  2021. <header location="global">dm.h</header>
  2022. </customwidget>
  2023. <customwidget>
  2024. <class>DmLineEdit</class>
  2025. <extends>QLineEdit</extends>
  2026. <header location="global">dm.h</header>
  2027. </customwidget>
  2028. </customwidgets>
  2029. <resources/>
  2030. <connections/>
  2031. </ui>