editionCombattant.ui 83 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3. <class>edc_fenetre</class>
  4. <widget class="QDialog" name="edc_fenetre">
  5. <property name="windowModality">
  6. <enum>Qt::ApplicationModal</enum>
  7. </property>
  8. <property name="geometry">
  9. <rect>
  10. <x>0</x>
  11. <y>0</y>
  12. <width>679</width>
  13. <height>484</height>
  14. </rect>
  15. </property>
  16. <property name="minimumSize">
  17. <size>
  18. <width>0</width>
  19. <height>484</height>
  20. </size>
  21. </property>
  22. <property name="maximumSize">
  23. <size>
  24. <width>16777215</width>
  25. <height>10000</height>
  26. </size>
  27. </property>
  28. <property name="windowTitle">
  29. <string>Creation / Edition de combattant</string>
  30. </property>
  31. <layout class="QHBoxLayout" name="horizontalLayout_2">
  32. <property name="leftMargin">
  33. <number>0</number>
  34. </property>
  35. <property name="topMargin">
  36. <number>0</number>
  37. </property>
  38. <property name="bottomMargin">
  39. <number>0</number>
  40. </property>
  41. <item>
  42. <layout class="QHBoxLayout" name="horizontalLayout" stretch="0,1">
  43. <property name="spacing">
  44. <number>3</number>
  45. </property>
  46. <item>
  47. <widget class="DmTableMenu" name="edc_menu">
  48. <property name="sizePolicy">
  49. <sizepolicy hsizetype="Fixed" vsizetype="Expanding">
  50. <horstretch>0</horstretch>
  51. <verstretch>0</verstretch>
  52. </sizepolicy>
  53. </property>
  54. <property name="minimumSize">
  55. <size>
  56. <width>170</width>
  57. <height>484</height>
  58. </size>
  59. </property>
  60. <property name="maximumSize">
  61. <size>
  62. <width>170</width>
  63. <height>484</height>
  64. </size>
  65. </property>
  66. <property name="palette">
  67. <palette>
  68. <active>
  69. <colorrole role="WindowText">
  70. <brush brushstyle="SolidPattern">
  71. <color alpha="255">
  72. <red>6</red>
  73. <green>6</green>
  74. <blue>6</blue>
  75. </color>
  76. </brush>
  77. </colorrole>
  78. <colorrole role="Mid">
  79. <brush brushstyle="SolidPattern">
  80. <color alpha="255">
  81. <red>190</red>
  82. <green>190</green>
  83. <blue>190</blue>
  84. </color>
  85. </brush>
  86. </colorrole>
  87. <colorrole role="Text">
  88. <brush brushstyle="SolidPattern">
  89. <color alpha="255">
  90. <red>255</red>
  91. <green>255</green>
  92. <blue>255</blue>
  93. </color>
  94. </brush>
  95. </colorrole>
  96. <colorrole role="Base">
  97. <brush brushstyle="SolidPattern">
  98. <color alpha="255">
  99. <red>140</red>
  100. <green>140</green>
  101. <blue>140</blue>
  102. </color>
  103. </brush>
  104. </colorrole>
  105. <colorrole role="Highlight">
  106. <brush brushstyle="SolidPattern">
  107. <color alpha="255">
  108. <red>240</red>
  109. <green>240</green>
  110. <blue>240</blue>
  111. </color>
  112. </brush>
  113. </colorrole>
  114. <colorrole role="HighlightedText">
  115. <brush brushstyle="SolidPattern">
  116. <color alpha="255">
  117. <red>7</red>
  118. <green>7</green>
  119. <blue>7</blue>
  120. </color>
  121. </brush>
  122. </colorrole>
  123. </active>
  124. <inactive>
  125. <colorrole role="WindowText">
  126. <brush brushstyle="SolidPattern">
  127. <color alpha="255">
  128. <red>6</red>
  129. <green>6</green>
  130. <blue>6</blue>
  131. </color>
  132. </brush>
  133. </colorrole>
  134. <colorrole role="Mid">
  135. <brush brushstyle="SolidPattern">
  136. <color alpha="255">
  137. <red>190</red>
  138. <green>190</green>
  139. <blue>190</blue>
  140. </color>
  141. </brush>
  142. </colorrole>
  143. <colorrole role="Text">
  144. <brush brushstyle="SolidPattern">
  145. <color alpha="255">
  146. <red>255</red>
  147. <green>255</green>
  148. <blue>255</blue>
  149. </color>
  150. </brush>
  151. </colorrole>
  152. <colorrole role="Base">
  153. <brush brushstyle="SolidPattern">
  154. <color alpha="255">
  155. <red>140</red>
  156. <green>140</green>
  157. <blue>140</blue>
  158. </color>
  159. </brush>
  160. </colorrole>
  161. <colorrole role="Highlight">
  162. <brush brushstyle="SolidPattern">
  163. <color alpha="255">
  164. <red>240</red>
  165. <green>240</green>
  166. <blue>240</blue>
  167. </color>
  168. </brush>
  169. </colorrole>
  170. <colorrole role="HighlightedText">
  171. <brush brushstyle="SolidPattern">
  172. <color alpha="255">
  173. <red>7</red>
  174. <green>7</green>
  175. <blue>7</blue>
  176. </color>
  177. </brush>
  178. </colorrole>
  179. </inactive>
  180. <disabled>
  181. <colorrole role="WindowText">
  182. <brush brushstyle="SolidPattern">
  183. <color alpha="255">
  184. <red>120</red>
  185. <green>120</green>
  186. <blue>120</blue>
  187. </color>
  188. </brush>
  189. </colorrole>
  190. <colorrole role="Mid">
  191. <brush brushstyle="SolidPattern">
  192. <color alpha="255">
  193. <red>190</red>
  194. <green>190</green>
  195. <blue>190</blue>
  196. </color>
  197. </brush>
  198. </colorrole>
  199. <colorrole role="Text">
  200. <brush brushstyle="SolidPattern">
  201. <color alpha="255">
  202. <red>120</red>
  203. <green>120</green>
  204. <blue>120</blue>
  205. </color>
  206. </brush>
  207. </colorrole>
  208. <colorrole role="Base">
  209. <brush brushstyle="SolidPattern">
  210. <color alpha="255">
  211. <red>240</red>
  212. <green>240</green>
  213. <blue>240</blue>
  214. </color>
  215. </brush>
  216. </colorrole>
  217. <colorrole role="Highlight">
  218. <brush brushstyle="SolidPattern">
  219. <color alpha="255">
  220. <red>51</red>
  221. <green>153</green>
  222. <blue>255</blue>
  223. </color>
  224. </brush>
  225. </colorrole>
  226. <colorrole role="HighlightedText">
  227. <brush brushstyle="SolidPattern">
  228. <color alpha="255">
  229. <red>7</red>
  230. <green>7</green>
  231. <blue>7</blue>
  232. </color>
  233. </brush>
  234. </colorrole>
  235. </disabled>
  236. </palette>
  237. </property>
  238. <property name="font">
  239. <font>
  240. <family>Candara</family>
  241. <pointsize>13</pointsize>
  242. <weight>50</weight>
  243. <bold>false</bold>
  244. </font>
  245. </property>
  246. <property name="focusPolicy">
  247. <enum>Qt::NoFocus</enum>
  248. </property>
  249. <property name="frameShape">
  250. <enum>QFrame::StyledPanel</enum>
  251. </property>
  252. <property name="frameShadow">
  253. <enum>QFrame::Sunken</enum>
  254. </property>
  255. <property name="lineWidth">
  256. <number>0</number>
  257. </property>
  258. <property name="verticalScrollBarPolicy">
  259. <enum>Qt::ScrollBarAlwaysOff</enum>
  260. </property>
  261. <property name="horizontalScrollBarPolicy">
  262. <enum>Qt::ScrollBarAlwaysOff</enum>
  263. </property>
  264. <property name="editTriggers">
  265. <set>QAbstractItemView::NoEditTriggers</set>
  266. </property>
  267. <property name="showDropIndicator" stdset="0">
  268. <bool>false</bool>
  269. </property>
  270. <property name="dragDropOverwriteMode">
  271. <bool>false</bool>
  272. </property>
  273. <property name="selectionMode">
  274. <enum>QAbstractItemView::SingleSelection</enum>
  275. </property>
  276. <property name="selectionBehavior">
  277. <enum>QAbstractItemView::SelectRows</enum>
  278. </property>
  279. <property name="iconSize">
  280. <size>
  281. <width>30</width>
  282. <height>30</height>
  283. </size>
  284. </property>
  285. <property name="showGrid">
  286. <bool>false</bool>
  287. </property>
  288. <property name="gridStyle">
  289. <enum>Qt::SolidLine</enum>
  290. </property>
  291. <property name="cornerButtonEnabled">
  292. <bool>false</bool>
  293. </property>
  294. <attribute name="horizontalHeaderVisible">
  295. <bool>false</bool>
  296. </attribute>
  297. <attribute name="horizontalHeaderDefaultSectionSize">
  298. <number>10</number>
  299. </attribute>
  300. <attribute name="horizontalHeaderHighlightSections">
  301. <bool>false</bool>
  302. </attribute>
  303. <attribute name="horizontalHeaderStretchLastSection">
  304. <bool>true</bool>
  305. </attribute>
  306. <attribute name="verticalHeaderVisible">
  307. <bool>false</bool>
  308. </attribute>
  309. <attribute name="verticalHeaderDefaultSectionSize">
  310. <number>80</number>
  311. </attribute>
  312. <attribute name="verticalHeaderHighlightSections">
  313. <bool>false</bool>
  314. </attribute>
  315. <row>
  316. <property name="text">
  317. <string>1</string>
  318. </property>
  319. </row>
  320. <row>
  321. <property name="text">
  322. <string>2</string>
  323. </property>
  324. </row>
  325. <row>
  326. <property name="text">
  327. <string>3</string>
  328. </property>
  329. </row>
  330. <row>
  331. <property name="text">
  332. <string>4</string>
  333. </property>
  334. </row>
  335. <row>
  336. <property name="text">
  337. <string>5</string>
  338. </property>
  339. </row>
  340. <row>
  341. <property name="text">
  342. <string>6</string>
  343. </property>
  344. </row>
  345. <column>
  346. <property name="text">
  347. <string>inutile</string>
  348. </property>
  349. </column>
  350. <column>
  351. <property name="text">
  352. <string>menus</string>
  353. </property>
  354. </column>
  355. <item row="0" column="0">
  356. <property name="text">
  357. <string/>
  358. </property>
  359. <property name="flags">
  360. <set>ItemIsSelectable</set>
  361. </property>
  362. </item>
  363. <item row="0" column="1">
  364. <property name="text">
  365. <string> NOM ET APPARENCE </string>
  366. </property>
  367. <property name="textAlignment">
  368. <set>AlignHCenter|AlignVCenter|AlignCenter</set>
  369. </property>
  370. <property name="icon">
  371. <iconset>
  372. <normaloff>img/oeil.png</normaloff>img/oeil.png</iconset>
  373. </property>
  374. <property name="flags">
  375. <set>ItemIsSelectable|ItemIsEnabled|ItemIsTristate</set>
  376. </property>
  377. </item>
  378. <item row="1" column="0">
  379. <property name="text">
  380. <string/>
  381. </property>
  382. <property name="flags">
  383. <set>ItemIsSelectable</set>
  384. </property>
  385. </item>
  386. <item row="1" column="1">
  387. <property name="text">
  388. <string> TAILLE ET DEPLACEMENT </string>
  389. </property>
  390. <property name="textAlignment">
  391. <set>AlignHCenter|AlignVCenter|AlignCenter</set>
  392. </property>
  393. <property name="icon">
  394. <iconset>
  395. <normaloff>img/btnZonePlacement.png</normaloff>img/btnZonePlacement.png</iconset>
  396. </property>
  397. <property name="flags">
  398. <set>ItemIsSelectable|ItemIsUserCheckable|ItemIsEnabled</set>
  399. </property>
  400. </item>
  401. <item row="2" column="0">
  402. <property name="text">
  403. <string/>
  404. </property>
  405. <property name="flags">
  406. <set>ItemIsSelectable</set>
  407. </property>
  408. </item>
  409. <item row="2" column="1">
  410. <property name="text">
  411. <string> ATTRIBUTS ET CAPACITES</string>
  412. </property>
  413. <property name="textAlignment">
  414. <set>AlignHCenter|AlignVCenter|AlignCenter</set>
  415. </property>
  416. <property name="icon">
  417. <iconset>
  418. <normaloff>img/profil.png</normaloff>img/profil.png</iconset>
  419. </property>
  420. <property name="flags">
  421. <set>ItemIsSelectable|ItemIsEnabled</set>
  422. </property>
  423. </item>
  424. <item row="3" column="0">
  425. <property name="text">
  426. <string/>
  427. </property>
  428. <property name="flags">
  429. <set>ItemIsSelectable</set>
  430. </property>
  431. </item>
  432. <item row="3" column="1">
  433. <property name="text">
  434. <string> ATTAQUES </string>
  435. </property>
  436. <property name="textAlignment">
  437. <set>AlignHCenter|AlignVCenter|AlignCenter</set>
  438. </property>
  439. <property name="icon">
  440. <iconset>
  441. <normaloff>img/attaque.png</normaloff>img/attaque.png</iconset>
  442. </property>
  443. <property name="flags">
  444. <set>ItemIsSelectable|ItemIsEnabled</set>
  445. </property>
  446. </item>
  447. <item row="4" column="0">
  448. <property name="text">
  449. <string/>
  450. </property>
  451. <property name="flags">
  452. <set>ItemIsSelectable</set>
  453. </property>
  454. </item>
  455. <item row="4" column="1">
  456. <property name="text">
  457. <string> INVENTAIRE </string>
  458. </property>
  459. <property name="textAlignment">
  460. <set>AlignHCenter|AlignVCenter|AlignCenter</set>
  461. </property>
  462. <property name="icon">
  463. <iconset>
  464. <normaloff>img/sac.png</normaloff>img/sac.png</iconset>
  465. </property>
  466. <property name="flags">
  467. <set>ItemIsSelectable|ItemIsEnabled</set>
  468. </property>
  469. </item>
  470. <item row="5" column="0">
  471. <property name="text">
  472. <string/>
  473. </property>
  474. <property name="flags">
  475. <set>ItemIsSelectable|ItemIsEnabled</set>
  476. </property>
  477. </item>
  478. <item row="5" column="1">
  479. <property name="text">
  480. <string> DIVERS</string>
  481. </property>
  482. <property name="textAlignment">
  483. <set>AlignHCenter|AlignVCenter|AlignCenter</set>
  484. </property>
  485. <property name="icon">
  486. <iconset>
  487. <normaloff>img/note.png</normaloff>img/note.png</iconset>
  488. </property>
  489. <property name="flags">
  490. <set>ItemIsSelectable|ItemIsEnabled</set>
  491. </property>
  492. </item>
  493. </widget>
  494. </item>
  495. <item>
  496. <layout class="QVBoxLayout" name="verticalLayout">
  497. <item>
  498. <widget class="QStackedWidget" name="edc_pages">
  499. <property name="minimumSize">
  500. <size>
  501. <width>392</width>
  502. <height>0</height>
  503. </size>
  504. </property>
  505. <property name="font">
  506. <font>
  507. <family>Verdana</family>
  508. </font>
  509. </property>
  510. <property name="currentIndex">
  511. <number>4</number>
  512. </property>
  513. <widget class="QWidget" name="page_nom">
  514. <widget class="DmLineEdit" name="edc_nom">
  515. <property name="geometry">
  516. <rect>
  517. <x>160</x>
  518. <y>20</y>
  519. <width>281</width>
  520. <height>31</height>
  521. </rect>
  522. </property>
  523. <property name="palette">
  524. <palette>
  525. <active>
  526. <colorrole role="Base">
  527. <brush brushstyle="SolidPattern">
  528. <color alpha="255">
  529. <red>248</red>
  530. <green>248</green>
  531. <blue>248</blue>
  532. </color>
  533. </brush>
  534. </colorrole>
  535. </active>
  536. <inactive>
  537. <colorrole role="Base">
  538. <brush brushstyle="SolidPattern">
  539. <color alpha="255">
  540. <red>248</red>
  541. <green>248</green>
  542. <blue>248</blue>
  543. </color>
  544. </brush>
  545. </colorrole>
  546. </inactive>
  547. <disabled>
  548. <colorrole role="Base">
  549. <brush brushstyle="SolidPattern">
  550. <color alpha="255">
  551. <red>240</red>
  552. <green>240</green>
  553. <blue>240</blue>
  554. </color>
  555. </brush>
  556. </colorrole>
  557. </disabled>
  558. </palette>
  559. </property>
  560. <property name="font">
  561. <font>
  562. <family>Verdana</family>
  563. </font>
  564. </property>
  565. </widget>
  566. <widget class="DmLabelChoixImage" name="edc_logo">
  567. <property name="geometry">
  568. <rect>
  569. <x>20</x>
  570. <y>10</y>
  571. <width>71</width>
  572. <height>71</height>
  573. </rect>
  574. </property>
  575. <property name="font">
  576. <font>
  577. <family>Verdana</family>
  578. <pointsize>7</pointsize>
  579. </font>
  580. </property>
  581. <property name="frameShape">
  582. <enum>QFrame::Box</enum>
  583. </property>
  584. <property name="frameShadow">
  585. <enum>QFrame::Sunken</enum>
  586. </property>
  587. <property name="text">
  588. <string>Choisissez
  589. un fichier
  590. image</string>
  591. </property>
  592. <property name="alignment">
  593. <set>Qt::AlignCenter</set>
  594. </property>
  595. </widget>
  596. <widget class="QLabel" name="label_8">
  597. <property name="geometry">
  598. <rect>
  599. <x>110</x>
  600. <y>20</y>
  601. <width>51</width>
  602. <height>31</height>
  603. </rect>
  604. </property>
  605. <property name="font">
  606. <font>
  607. <family>Verdana</family>
  608. <pointsize>8</pointsize>
  609. <italic>true</italic>
  610. </font>
  611. </property>
  612. <property name="text">
  613. <string>Nom : </string>
  614. </property>
  615. </widget>
  616. <widget class="QFrame" name="frame_2">
  617. <property name="geometry">
  618. <rect>
  619. <x>50</x>
  620. <y>70</y>
  621. <width>401</width>
  622. <height>351</height>
  623. </rect>
  624. </property>
  625. <property name="frameShape">
  626. <enum>QFrame::NoFrame</enum>
  627. </property>
  628. <property name="frameShadow">
  629. <enum>QFrame::Raised</enum>
  630. </property>
  631. <widget class="QGraphicsView" name="edc_vueForme">
  632. <property name="geometry">
  633. <rect>
  634. <x>40</x>
  635. <y>28</y>
  636. <width>293</width>
  637. <height>296</height>
  638. </rect>
  639. </property>
  640. <property name="palette">
  641. <palette>
  642. <active>
  643. <colorrole role="Base">
  644. <brush brushstyle="SolidPattern">
  645. <color alpha="255">
  646. <red>244</red>
  647. <green>244</green>
  648. <blue>244</blue>
  649. </color>
  650. </brush>
  651. </colorrole>
  652. </active>
  653. <inactive>
  654. <colorrole role="Base">
  655. <brush brushstyle="SolidPattern">
  656. <color alpha="255">
  657. <red>244</red>
  658. <green>244</green>
  659. <blue>244</blue>
  660. </color>
  661. </brush>
  662. </colorrole>
  663. </inactive>
  664. <disabled>
  665. <colorrole role="Base">
  666. <brush brushstyle="SolidPattern">
  667. <color alpha="255">
  668. <red>240</red>
  669. <green>240</green>
  670. <blue>240</blue>
  671. </color>
  672. </brush>
  673. </colorrole>
  674. </disabled>
  675. </palette>
  676. </property>
  677. <property name="frameShape">
  678. <enum>QFrame::WinPanel</enum>
  679. </property>
  680. <property name="frameShadow">
  681. <enum>QFrame::Raised</enum>
  682. </property>
  683. <property name="renderHints">
  684. <set>QPainter::Antialiasing|QPainter::HighQualityAntialiasing|QPainter::TextAntialiasing</set>
  685. </property>
  686. </widget>
  687. <widget class="QToolButton" name="edc_image">
  688. <property name="geometry">
  689. <rect>
  690. <x>340</x>
  691. <y>70</y>
  692. <width>31</width>
  693. <height>31</height>
  694. </rect>
  695. </property>
  696. <property name="text">
  697. <string>...</string>
  698. </property>
  699. <property name="icon">
  700. <iconset>
  701. <normaloff>img/portrait.png</normaloff>img/portrait.png</iconset>
  702. </property>
  703. <property name="iconSize">
  704. <size>
  705. <width>22</width>
  706. <height>22</height>
  707. </size>
  708. </property>
  709. </widget>
  710. <widget class="QToolButton" name="edc_couleur">
  711. <property name="geometry">
  712. <rect>
  713. <x>340</x>
  714. <y>30</y>
  715. <width>31</width>
  716. <height>31</height>
  717. </rect>
  718. </property>
  719. <property name="text">
  720. <string/>
  721. </property>
  722. <property name="icon">
  723. <iconset>
  724. <normaloff>img/btnCouleurs.png</normaloff>img/btnCouleurs.png</iconset>
  725. </property>
  726. </widget>
  727. <widget class="QToolButton" name="edc_aideForme">
  728. <property name="geometry">
  729. <rect>
  730. <x>340</x>
  731. <y>290</y>
  732. <width>31</width>
  733. <height>31</height>
  734. </rect>
  735. </property>
  736. <property name="text">
  737. <string>...</string>
  738. </property>
  739. <property name="icon">
  740. <iconset>
  741. <normaloff>img/aide.png</normaloff>img/aide.png</iconset>
  742. </property>
  743. </widget>
  744. <widget class="QRadioButton" name="edc_casesHexa">
  745. <property name="geometry">
  746. <rect>
  747. <x>40</x>
  748. <y>320</y>
  749. <width>151</width>
  750. <height>31</height>
  751. </rect>
  752. </property>
  753. <property name="text">
  754. <string>Cases hexagonales</string>
  755. </property>
  756. <property name="checked">
  757. <bool>true</bool>
  758. </property>
  759. </widget>
  760. <widget class="QRadioButton" name="edc_casesCarrees">
  761. <property name="geometry">
  762. <rect>
  763. <x>220</x>
  764. <y>320</y>
  765. <width>111</width>
  766. <height>31</height>
  767. </rect>
  768. </property>
  769. <property name="text">
  770. <string>Cases carrées</string>
  771. </property>
  772. </widget>
  773. </widget>
  774. </widget>
  775. <widget class="QWidget" name="page_dep">
  776. <widget class="QLabel" name="label_9">
  777. <property name="geometry">
  778. <rect>
  779. <x>70</x>
  780. <y>100</y>
  781. <width>391</width>
  782. <height>31</height>
  783. </rect>
  784. </property>
  785. <property name="font">
  786. <font>
  787. <family>Verdana</family>
  788. </font>
  789. </property>
  790. <property name="frameShape">
  791. <enum>QFrame::NoFrame</enum>
  792. </property>
  793. <property name="text">
  794. <string>Nombre de cases que la créature peut parcourir en un tour : </string>
  795. </property>
  796. </widget>
  797. <widget class="QDoubleSpinBox" name="edc_depMarche">
  798. <property name="geometry">
  799. <rect>
  800. <x>240</x>
  801. <y>140</y>
  802. <width>51</width>
  803. <height>31</height>
  804. </rect>
  805. </property>
  806. <property name="palette">
  807. <palette>
  808. <active>
  809. <colorrole role="Base">
  810. <brush brushstyle="SolidPattern">
  811. <color alpha="255">
  812. <red>248</red>
  813. <green>248</green>
  814. <blue>248</blue>
  815. </color>
  816. </brush>
  817. </colorrole>
  818. </active>
  819. <inactive>
  820. <colorrole role="Base">
  821. <brush brushstyle="SolidPattern">
  822. <color alpha="255">
  823. <red>248</red>
  824. <green>248</green>
  825. <blue>248</blue>
  826. </color>
  827. </brush>
  828. </colorrole>
  829. </inactive>
  830. <disabled>
  831. <colorrole role="Base">
  832. <brush brushstyle="SolidPattern">
  833. <color alpha="255">
  834. <red>240</red>
  835. <green>240</green>
  836. <blue>240</blue>
  837. </color>
  838. </brush>
  839. </colorrole>
  840. </disabled>
  841. </palette>
  842. </property>
  843. <property name="font">
  844. <font>
  845. <family>Verdana</family>
  846. </font>
  847. </property>
  848. <property name="prefix">
  849. <string/>
  850. </property>
  851. <property name="decimals">
  852. <number>0</number>
  853. </property>
  854. <property name="singleStep">
  855. <double>1.000000000000000</double>
  856. </property>
  857. <property name="value">
  858. <double>8.000000000000000</double>
  859. </property>
  860. </widget>
  861. <widget class="QLabel" name="label_10">
  862. <property name="geometry">
  863. <rect>
  864. <x>130</x>
  865. <y>140</y>
  866. <width>101</width>
  867. <height>31</height>
  868. </rect>
  869. </property>
  870. <property name="font">
  871. <font>
  872. <family>Verdana</family>
  873. </font>
  874. </property>
  875. <property name="frameShape">
  876. <enum>QFrame::NoFrame</enum>
  877. </property>
  878. <property name="text">
  879. <string>Marche / Course</string>
  880. </property>
  881. </widget>
  882. <widget class="QDoubleSpinBox" name="edc_depNage">
  883. <property name="geometry">
  884. <rect>
  885. <x>240</x>
  886. <y>180</y>
  887. <width>51</width>
  888. <height>31</height>
  889. </rect>
  890. </property>
  891. <property name="palette">
  892. <palette>
  893. <active>
  894. <colorrole role="Base">
  895. <brush brushstyle="SolidPattern">
  896. <color alpha="255">
  897. <red>248</red>
  898. <green>248</green>
  899. <blue>248</blue>
  900. </color>
  901. </brush>
  902. </colorrole>
  903. </active>
  904. <inactive>
  905. <colorrole role="Base">
  906. <brush brushstyle="SolidPattern">
  907. <color alpha="255">
  908. <red>248</red>
  909. <green>248</green>
  910. <blue>248</blue>
  911. </color>
  912. </brush>
  913. </colorrole>
  914. </inactive>
  915. <disabled>
  916. <colorrole role="Base">
  917. <brush brushstyle="SolidPattern">
  918. <color alpha="255">
  919. <red>240</red>
  920. <green>240</green>
  921. <blue>240</blue>
  922. </color>
  923. </brush>
  924. </colorrole>
  925. </disabled>
  926. </palette>
  927. </property>
  928. <property name="font">
  929. <font>
  930. <family>Verdana</family>
  931. </font>
  932. </property>
  933. <property name="prefix">
  934. <string/>
  935. </property>
  936. <property name="decimals">
  937. <number>0</number>
  938. </property>
  939. <property name="singleStep">
  940. <double>1.000000000000000</double>
  941. </property>
  942. <property name="value">
  943. <double>4.000000000000000</double>
  944. </property>
  945. </widget>
  946. <widget class="QLabel" name="label_11">
  947. <property name="geometry">
  948. <rect>
  949. <x>130</x>
  950. <y>180</y>
  951. <width>81</width>
  952. <height>31</height>
  953. </rect>
  954. </property>
  955. <property name="font">
  956. <font>
  957. <family>Verdana</family>
  958. </font>
  959. </property>
  960. <property name="frameShape">
  961. <enum>QFrame::NoFrame</enum>
  962. </property>
  963. <property name="text">
  964. <string>Nage </string>
  965. </property>
  966. </widget>
  967. <widget class="QDoubleSpinBox" name="edc_depEscalade">
  968. <property name="geometry">
  969. <rect>
  970. <x>240</x>
  971. <y>220</y>
  972. <width>51</width>
  973. <height>31</height>
  974. </rect>
  975. </property>
  976. <property name="palette">
  977. <palette>
  978. <active>
  979. <colorrole role="Base">
  980. <brush brushstyle="SolidPattern">
  981. <color alpha="255">
  982. <red>248</red>
  983. <green>248</green>
  984. <blue>248</blue>
  985. </color>
  986. </brush>
  987. </colorrole>
  988. </active>
  989. <inactive>
  990. <colorrole role="Base">
  991. <brush brushstyle="SolidPattern">
  992. <color alpha="255">
  993. <red>248</red>
  994. <green>248</green>
  995. <blue>248</blue>
  996. </color>
  997. </brush>
  998. </colorrole>
  999. </inactive>
  1000. <disabled>
  1001. <colorrole role="Base">
  1002. <brush brushstyle="SolidPattern">
  1003. <color alpha="255">
  1004. <red>240</red>
  1005. <green>240</green>
  1006. <blue>240</blue>
  1007. </color>
  1008. </brush>
  1009. </colorrole>
  1010. </disabled>
  1011. </palette>
  1012. </property>
  1013. <property name="font">
  1014. <font>
  1015. <family>Verdana</family>
  1016. </font>
  1017. </property>
  1018. <property name="prefix">
  1019. <string/>
  1020. </property>
  1021. <property name="decimals">
  1022. <number>0</number>
  1023. </property>
  1024. <property name="singleStep">
  1025. <double>1.000000000000000</double>
  1026. </property>
  1027. <property name="value">
  1028. <double>2.000000000000000</double>
  1029. </property>
  1030. </widget>
  1031. <widget class="QLabel" name="label_12">
  1032. <property name="geometry">
  1033. <rect>
  1034. <x>130</x>
  1035. <y>220</y>
  1036. <width>91</width>
  1037. <height>31</height>
  1038. </rect>
  1039. </property>
  1040. <property name="font">
  1041. <font>
  1042. <family>Verdana</family>
  1043. </font>
  1044. </property>
  1045. <property name="frameShape">
  1046. <enum>QFrame::NoFrame</enum>
  1047. </property>
  1048. <property name="text">
  1049. <string>Escalade </string>
  1050. </property>
  1051. </widget>
  1052. <widget class="QLabel" name="label_13">
  1053. <property name="geometry">
  1054. <rect>
  1055. <x>130</x>
  1056. <y>260</y>
  1057. <width>61</width>
  1058. <height>31</height>
  1059. </rect>
  1060. </property>
  1061. <property name="font">
  1062. <font>
  1063. <family>Verdana</family>
  1064. </font>
  1065. </property>
  1066. <property name="frameShape">
  1067. <enum>QFrame::NoFrame</enum>
  1068. </property>
  1069. <property name="text">
  1070. <string>Vol </string>
  1071. </property>
  1072. </widget>
  1073. <widget class="QDoubleSpinBox" name="edc_depVol">
  1074. <property name="geometry">
  1075. <rect>
  1076. <x>240</x>
  1077. <y>260</y>
  1078. <width>51</width>
  1079. <height>31</height>
  1080. </rect>
  1081. </property>
  1082. <property name="palette">
  1083. <palette>
  1084. <active>
  1085. <colorrole role="Base">
  1086. <brush brushstyle="SolidPattern">
  1087. <color alpha="255">
  1088. <red>248</red>
  1089. <green>248</green>
  1090. <blue>248</blue>
  1091. </color>
  1092. </brush>
  1093. </colorrole>
  1094. </active>
  1095. <inactive>
  1096. <colorrole role="Base">
  1097. <brush brushstyle="SolidPattern">
  1098. <color alpha="255">
  1099. <red>248</red>
  1100. <green>248</green>
  1101. <blue>248</blue>
  1102. </color>
  1103. </brush>
  1104. </colorrole>
  1105. </inactive>
  1106. <disabled>
  1107. <colorrole role="Base">
  1108. <brush brushstyle="SolidPattern">
  1109. <color alpha="255">
  1110. <red>240</red>
  1111. <green>240</green>
  1112. <blue>240</blue>
  1113. </color>
  1114. </brush>
  1115. </colorrole>
  1116. </disabled>
  1117. </palette>
  1118. </property>
  1119. <property name="font">
  1120. <font>
  1121. <family>Verdana</family>
  1122. </font>
  1123. </property>
  1124. <property name="prefix">
  1125. <string/>
  1126. </property>
  1127. <property name="decimals">
  1128. <number>0</number>
  1129. </property>
  1130. <property name="singleStep">
  1131. <double>1.000000000000000</double>
  1132. </property>
  1133. <property name="value">
  1134. <double>0.000000000000000</double>
  1135. </property>
  1136. </widget>
  1137. <widget class="QDoubleSpinBox" name="edc_saut">
  1138. <property name="geometry">
  1139. <rect>
  1140. <x>310</x>
  1141. <y>320</y>
  1142. <width>51</width>
  1143. <height>31</height>
  1144. </rect>
  1145. </property>
  1146. <property name="palette">
  1147. <palette>
  1148. <active>
  1149. <colorrole role="Base">
  1150. <brush brushstyle="SolidPattern">
  1151. <color alpha="255">
  1152. <red>248</red>
  1153. <green>248</green>
  1154. <blue>248</blue>
  1155. </color>
  1156. </brush>
  1157. </colorrole>
  1158. </active>
  1159. <inactive>
  1160. <colorrole role="Base">
  1161. <brush brushstyle="SolidPattern">
  1162. <color alpha="255">
  1163. <red>248</red>
  1164. <green>248</green>
  1165. <blue>248</blue>
  1166. </color>
  1167. </brush>
  1168. </colorrole>
  1169. </inactive>
  1170. <disabled>
  1171. <colorrole role="Base">
  1172. <brush brushstyle="SolidPattern">
  1173. <color alpha="255">
  1174. <red>240</red>
  1175. <green>240</green>
  1176. <blue>240</blue>
  1177. </color>
  1178. </brush>
  1179. </colorrole>
  1180. </disabled>
  1181. </palette>
  1182. </property>
  1183. <property name="font">
  1184. <font>
  1185. <family>Verdana</family>
  1186. </font>
  1187. </property>
  1188. <property name="prefix">
  1189. <string/>
  1190. </property>
  1191. <property name="decimals">
  1192. <number>0</number>
  1193. </property>
  1194. <property name="singleStep">
  1195. <double>1.000000000000000</double>
  1196. </property>
  1197. <property name="value">
  1198. <double>5.000000000000000</double>
  1199. </property>
  1200. </widget>
  1201. <widget class="QLabel" name="label_14">
  1202. <property name="geometry">
  1203. <rect>
  1204. <x>70</x>
  1205. <y>320</y>
  1206. <width>231</width>
  1207. <height>31</height>
  1208. </rect>
  1209. </property>
  1210. <property name="font">
  1211. <font>
  1212. <family>Verdana</family>
  1213. </font>
  1214. </property>
  1215. <property name="frameShape">
  1216. <enum>QFrame::NoFrame</enum>
  1217. </property>
  1218. <property name="text">
  1219. <string>Hauteur maximum pour les sauts : </string>
  1220. </property>
  1221. </widget>
  1222. <widget class="QLabel" name="label_2">
  1223. <property name="geometry">
  1224. <rect>
  1225. <x>80</x>
  1226. <y>140</y>
  1227. <width>31</width>
  1228. <height>31</height>
  1229. </rect>
  1230. </property>
  1231. <property name="text">
  1232. <string/>
  1233. </property>
  1234. <property name="pixmap">
  1235. <pixmap>img/btnZonePlacement.png</pixmap>
  1236. </property>
  1237. <property name="scaledContents">
  1238. <bool>false</bool>
  1239. </property>
  1240. <property name="alignment">
  1241. <set>Qt::AlignCenter</set>
  1242. </property>
  1243. </widget>
  1244. <widget class="QLabel" name="label_3">
  1245. <property name="geometry">
  1246. <rect>
  1247. <x>80</x>
  1248. <y>180</y>
  1249. <width>31</width>
  1250. <height>31</height>
  1251. </rect>
  1252. </property>
  1253. <property name="text">
  1254. <string/>
  1255. </property>
  1256. <property name="pixmap">
  1257. <pixmap>img/nage_24.png</pixmap>
  1258. </property>
  1259. <property name="scaledContents">
  1260. <bool>false</bool>
  1261. </property>
  1262. </widget>
  1263. <widget class="QLabel" name="label_4">
  1264. <property name="geometry">
  1265. <rect>
  1266. <x>80</x>
  1267. <y>220</y>
  1268. <width>31</width>
  1269. <height>31</height>
  1270. </rect>
  1271. </property>
  1272. <property name="text">
  1273. <string/>
  1274. </property>
  1275. <property name="pixmap">
  1276. <pixmap>img/escalade_24.png</pixmap>
  1277. </property>
  1278. <property name="scaledContents">
  1279. <bool>false</bool>
  1280. </property>
  1281. </widget>
  1282. <widget class="QLabel" name="label_5">
  1283. <property name="geometry">
  1284. <rect>
  1285. <x>80</x>
  1286. <y>260</y>
  1287. <width>31</width>
  1288. <height>31</height>
  1289. </rect>
  1290. </property>
  1291. <property name="text">
  1292. <string/>
  1293. </property>
  1294. <property name="pixmap">
  1295. <pixmap>img/plume_24.png</pixmap>
  1296. </property>
  1297. <property name="scaledContents">
  1298. <bool>false</bool>
  1299. </property>
  1300. </widget>
  1301. <widget class="QDoubleSpinBox" name="edc_taille">
  1302. <property name="geometry">
  1303. <rect>
  1304. <x>310</x>
  1305. <y>60</y>
  1306. <width>51</width>
  1307. <height>31</height>
  1308. </rect>
  1309. </property>
  1310. <property name="palette">
  1311. <palette>
  1312. <active>
  1313. <colorrole role="Base">
  1314. <brush brushstyle="SolidPattern">
  1315. <color alpha="255">
  1316. <red>248</red>
  1317. <green>248</green>
  1318. <blue>248</blue>
  1319. </color>
  1320. </brush>
  1321. </colorrole>
  1322. </active>
  1323. <inactive>
  1324. <colorrole role="Base">
  1325. <brush brushstyle="SolidPattern">
  1326. <color alpha="255">
  1327. <red>248</red>
  1328. <green>248</green>
  1329. <blue>248</blue>
  1330. </color>
  1331. </brush>
  1332. </colorrole>
  1333. </inactive>
  1334. <disabled>
  1335. <colorrole role="Base">
  1336. <brush brushstyle="SolidPattern">
  1337. <color alpha="255">
  1338. <red>240</red>
  1339. <green>240</green>
  1340. <blue>240</blue>
  1341. </color>
  1342. </brush>
  1343. </colorrole>
  1344. </disabled>
  1345. </palette>
  1346. </property>
  1347. <property name="font">
  1348. <font>
  1349. <family>Verdana</family>
  1350. </font>
  1351. </property>
  1352. <property name="prefix">
  1353. <string/>
  1354. </property>
  1355. <property name="decimals">
  1356. <number>0</number>
  1357. </property>
  1358. <property name="singleStep">
  1359. <double>1.000000000000000</double>
  1360. </property>
  1361. <property name="value">
  1362. <double>2.000000000000000</double>
  1363. </property>
  1364. </widget>
  1365. <widget class="QLabel" name="label_15">
  1366. <property name="geometry">
  1367. <rect>
  1368. <x>70</x>
  1369. <y>60</y>
  1370. <width>231</width>
  1371. <height>31</height>
  1372. </rect>
  1373. </property>
  1374. <property name="font">
  1375. <font>
  1376. <family>Verdana</family>
  1377. </font>
  1378. </property>
  1379. <property name="frameShape">
  1380. <enum>QFrame::NoFrame</enum>
  1381. </property>
  1382. <property name="text">
  1383. <string>Taille de la créature (en cases) : </string>
  1384. </property>
  1385. </widget>
  1386. </widget>
  1387. <widget class="QWidget" name="page_attr">
  1388. <widget class="QScrollArea" name="edc_deroulementAttributs">
  1389. <property name="geometry">
  1390. <rect>
  1391. <x>10</x>
  1392. <y>10</y>
  1393. <width>231</width>
  1394. <height>411</height>
  1395. </rect>
  1396. </property>
  1397. <property name="frameShape">
  1398. <enum>QFrame::StyledPanel</enum>
  1399. </property>
  1400. <property name="frameShadow">
  1401. <enum>QFrame::Raised</enum>
  1402. </property>
  1403. <property name="widgetResizable">
  1404. <bool>true</bool>
  1405. </property>
  1406. <widget class="QWidget" name="scrollAreaWidgetContents_2">
  1407. <property name="geometry">
  1408. <rect>
  1409. <x>0</x>
  1410. <y>0</y>
  1411. <width>229</width>
  1412. <height>409</height>
  1413. </rect>
  1414. </property>
  1415. <layout class="QVBoxLayout" name="edc_deroulementAttributs_layout">
  1416. <property name="spacing">
  1417. <number>1</number>
  1418. </property>
  1419. <property name="leftMargin">
  1420. <number>3</number>
  1421. </property>
  1422. <property name="topMargin">
  1423. <number>3</number>
  1424. </property>
  1425. <property name="rightMargin">
  1426. <number>3</number>
  1427. </property>
  1428. <property name="bottomMargin">
  1429. <number>3</number>
  1430. </property>
  1431. </layout>
  1432. </widget>
  1433. </widget>
  1434. <widget class="QTextEdit" name="edc_notes">
  1435. <property name="geometry">
  1436. <rect>
  1437. <x>270</x>
  1438. <y>30</y>
  1439. <width>181</width>
  1440. <height>391</height>
  1441. </rect>
  1442. </property>
  1443. <property name="palette">
  1444. <palette>
  1445. <active>
  1446. <colorrole role="Base">
  1447. <brush brushstyle="SolidPattern">
  1448. <color alpha="255">
  1449. <red>248</red>
  1450. <green>248</green>
  1451. <blue>248</blue>
  1452. </color>
  1453. </brush>
  1454. </colorrole>
  1455. </active>
  1456. <inactive>
  1457. <colorrole role="Base">
  1458. <brush brushstyle="SolidPattern">
  1459. <color alpha="255">
  1460. <red>248</red>
  1461. <green>248</green>
  1462. <blue>248</blue>
  1463. </color>
  1464. </brush>
  1465. </colorrole>
  1466. </inactive>
  1467. <disabled>
  1468. <colorrole role="Base">
  1469. <brush brushstyle="SolidPattern">
  1470. <color alpha="255">
  1471. <red>240</red>
  1472. <green>240</green>
  1473. <blue>240</blue>
  1474. </color>
  1475. </brush>
  1476. </colorrole>
  1477. </disabled>
  1478. </palette>
  1479. </property>
  1480. <property name="font">
  1481. <font>
  1482. <family>Verdana</family>
  1483. </font>
  1484. </property>
  1485. </widget>
  1486. <widget class="QLabel" name="label_23">
  1487. <property name="geometry">
  1488. <rect>
  1489. <x>280</x>
  1490. <y>9</y>
  1491. <width>141</width>
  1492. <height>21</height>
  1493. </rect>
  1494. </property>
  1495. <property name="font">
  1496. <font>
  1497. <family>Verdana</family>
  1498. <italic>true</italic>
  1499. </font>
  1500. </property>
  1501. <property name="text">
  1502. <string>Autre :</string>
  1503. </property>
  1504. </widget>
  1505. </widget>
  1506. <widget class="QWidget" name="page_att">
  1507. <widget class="QScrollArea" name="edc_deroulementAttaques">
  1508. <property name="geometry">
  1509. <rect>
  1510. <x>0</x>
  1511. <y>0</y>
  1512. <width>491</width>
  1513. <height>431</height>
  1514. </rect>
  1515. </property>
  1516. <property name="widgetResizable">
  1517. <bool>true</bool>
  1518. </property>
  1519. <widget class="QWidget" name="scrollAreaWidgetContents">
  1520. <property name="geometry">
  1521. <rect>
  1522. <x>0</x>
  1523. <y>0</y>
  1524. <width>489</width>
  1525. <height>429</height>
  1526. </rect>
  1527. </property>
  1528. <layout class="QVBoxLayout" name="edc_deroulementAttaques_layout">
  1529. <property name="spacing">
  1530. <number>1</number>
  1531. </property>
  1532. <property name="leftMargin">
  1533. <number>3</number>
  1534. </property>
  1535. <property name="topMargin">
  1536. <number>3</number>
  1537. </property>
  1538. <property name="rightMargin">
  1539. <number>3</number>
  1540. </property>
  1541. <property name="bottomMargin">
  1542. <number>3</number>
  1543. </property>
  1544. </layout>
  1545. </widget>
  1546. </widget>
  1547. </widget>
  1548. <widget class="QWidget" name="page_invent">
  1549. <widget class="DmTableInventaire" name="edc_listeInventaire">
  1550. <property name="geometry">
  1551. <rect>
  1552. <x>0</x>
  1553. <y>50</y>
  1554. <width>491</width>
  1555. <height>351</height>
  1556. </rect>
  1557. </property>
  1558. <property name="palette">
  1559. <palette>
  1560. <active>
  1561. <colorrole role="Base">
  1562. <brush brushstyle="SolidPattern">
  1563. <color alpha="150">
  1564. <red>255</red>
  1565. <green>255</green>
  1566. <blue>255</blue>
  1567. </color>
  1568. </brush>
  1569. </colorrole>
  1570. </active>
  1571. <inactive>
  1572. <colorrole role="Base">
  1573. <brush brushstyle="SolidPattern">
  1574. <color alpha="150">
  1575. <red>255</red>
  1576. <green>255</green>
  1577. <blue>255</blue>
  1578. </color>
  1579. </brush>
  1580. </colorrole>
  1581. </inactive>
  1582. <disabled>
  1583. <colorrole role="Base">
  1584. <brush brushstyle="SolidPattern">
  1585. <color alpha="255">
  1586. <red>240</red>
  1587. <green>240</green>
  1588. <blue>240</blue>
  1589. </color>
  1590. </brush>
  1591. </colorrole>
  1592. </disabled>
  1593. </palette>
  1594. </property>
  1595. <property name="font">
  1596. <font>
  1597. <family>Verdana</family>
  1598. </font>
  1599. </property>
  1600. <property name="frameShape">
  1601. <enum>QFrame::WinPanel</enum>
  1602. </property>
  1603. <property name="verticalScrollBarPolicy">
  1604. <enum>Qt::ScrollBarAsNeeded</enum>
  1605. </property>
  1606. <property name="horizontalScrollBarPolicy">
  1607. <enum>Qt::ScrollBarAlwaysOff</enum>
  1608. </property>
  1609. <property name="editTriggers">
  1610. <set>QAbstractItemView::NoEditTriggers</set>
  1611. </property>
  1612. <property name="showDropIndicator" stdset="0">
  1613. <bool>false</bool>
  1614. </property>
  1615. <property name="dragDropOverwriteMode">
  1616. <bool>false</bool>
  1617. </property>
  1618. <property name="alternatingRowColors">
  1619. <bool>false</bool>
  1620. </property>
  1621. <property name="selectionMode">
  1622. <enum>QAbstractItemView::NoSelection</enum>
  1623. </property>
  1624. <property name="showGrid">
  1625. <bool>true</bool>
  1626. </property>
  1627. <property name="gridStyle">
  1628. <enum>Qt::SolidLine</enum>
  1629. </property>
  1630. <attribute name="horizontalHeaderVisible">
  1631. <bool>false</bool>
  1632. </attribute>
  1633. <attribute name="horizontalHeaderCascadingSectionResizes">
  1634. <bool>false</bool>
  1635. </attribute>
  1636. <attribute name="horizontalHeaderDefaultSectionSize">
  1637. <number>60</number>
  1638. </attribute>
  1639. <attribute name="horizontalHeaderMinimumSectionSize">
  1640. <number>32</number>
  1641. </attribute>
  1642. <attribute name="verticalHeaderVisible">
  1643. <bool>false</bool>
  1644. </attribute>
  1645. <attribute name="verticalHeaderDefaultSectionSize">
  1646. <number>18</number>
  1647. </attribute>
  1648. <attribute name="verticalHeaderMinimumSectionSize">
  1649. <number>14</number>
  1650. </attribute>
  1651. <row>
  1652. <property name="text">
  1653. <string>Nouvelle ligne</string>
  1654. </property>
  1655. </row>
  1656. <column>
  1657. <property name="text">
  1658. <string>Nombre</string>
  1659. </property>
  1660. </column>
  1661. <column>
  1662. <property name="text">
  1663. <string>Objet</string>
  1664. </property>
  1665. </column>
  1666. <column>
  1667. <property name="text">
  1668. <string>Poids</string>
  1669. </property>
  1670. </column>
  1671. <column>
  1672. <property name="text">
  1673. <string>Valeur</string>
  1674. </property>
  1675. </column>
  1676. <column>
  1677. <property name="text">
  1678. <string>vide</string>
  1679. </property>
  1680. </column>
  1681. <item row="0" column="0">
  1682. <property name="text">
  1683. <string> </string>
  1684. </property>
  1685. </item>
  1686. <item row="0" column="1">
  1687. <property name="text">
  1688. <string>(Cliquer pour ajouter un item)</string>
  1689. </property>
  1690. <property name="font">
  1691. <font>
  1692. <family>Verdana</family>
  1693. <pointsize>8</pointsize>
  1694. <italic>true</italic>
  1695. </font>
  1696. </property>
  1697. </item>
  1698. <item row="0" column="2">
  1699. <property name="text">
  1700. <string> </string>
  1701. </property>
  1702. </item>
  1703. <item row="0" column="3">
  1704. <property name="text">
  1705. <string> </string>
  1706. </property>
  1707. </item>
  1708. <item row="0" column="4">
  1709. <property name="text">
  1710. <string> </string>
  1711. </property>
  1712. </item>
  1713. </widget>
  1714. <widget class="QLabel" name="edc_inventaire_e1">
  1715. <property name="geometry">
  1716. <rect>
  1717. <x>3</x>
  1718. <y>20</y>
  1719. <width>61</width>
  1720. <height>21</height>
  1721. </rect>
  1722. </property>
  1723. <property name="text">
  1724. <string>Quantité</string>
  1725. </property>
  1726. </widget>
  1727. <widget class="QLabel" name="edc_inventaire_e2">
  1728. <property name="geometry">
  1729. <rect>
  1730. <x>70</x>
  1731. <y>20</y>
  1732. <width>211</width>
  1733. <height>21</height>
  1734. </rect>
  1735. </property>
  1736. <property name="text">
  1737. <string>Objet</string>
  1738. </property>
  1739. </widget>
  1740. <widget class="QLabel" name="edc_inventaire_e5">
  1741. <property name="geometry">
  1742. <rect>
  1743. <x>410</x>
  1744. <y>20</y>
  1745. <width>20</width>
  1746. <height>20</height>
  1747. </rect>
  1748. </property>
  1749. <property name="text">
  1750. <string/>
  1751. </property>
  1752. <property name="pixmap">
  1753. <pixmap>img/pieces.png</pixmap>
  1754. </property>
  1755. <property name="scaledContents">
  1756. <bool>true</bool>
  1757. </property>
  1758. </widget>
  1759. <widget class="QLabel" name="edc_inventaire_e6">
  1760. <property name="geometry">
  1761. <rect>
  1762. <x>450</x>
  1763. <y>20</y>
  1764. <width>21</width>
  1765. <height>21</height>
  1766. </rect>
  1767. </property>
  1768. <property name="text">
  1769. <string/>
  1770. </property>
  1771. <property name="pixmap">
  1772. <pixmap>img/poids.png</pixmap>
  1773. </property>
  1774. <property name="scaledContents">
  1775. <bool>true</bool>
  1776. </property>
  1777. </widget>
  1778. <widget class="QLabel" name="label">
  1779. <property name="geometry">
  1780. <rect>
  1781. <x>10</x>
  1782. <y>400</y>
  1783. <width>51</width>
  1784. <height>21</height>
  1785. </rect>
  1786. </property>
  1787. <property name="font">
  1788. <font>
  1789. <italic>true</italic>
  1790. </font>
  1791. </property>
  1792. <property name="text">
  1793. <string>Au total : </string>
  1794. </property>
  1795. </widget>
  1796. <widget class="QLabel" name="label_6">
  1797. <property name="geometry">
  1798. <rect>
  1799. <x>345</x>
  1800. <y>400</y>
  1801. <width>61</width>
  1802. <height>20</height>
  1803. </rect>
  1804. </property>
  1805. <property name="font">
  1806. <font>
  1807. <italic>true</italic>
  1808. </font>
  1809. </property>
  1810. <property name="text">
  1811. <string>... po</string>
  1812. </property>
  1813. </widget>
  1814. <widget class="QLabel" name="label_7">
  1815. <property name="geometry">
  1816. <rect>
  1817. <x>435</x>
  1818. <y>400</y>
  1819. <width>61</width>
  1820. <height>20</height>
  1821. </rect>
  1822. </property>
  1823. <property name="font">
  1824. <font>
  1825. <italic>true</italic>
  1826. </font>
  1827. </property>
  1828. <property name="text">
  1829. <string>... kg</string>
  1830. </property>
  1831. </widget>
  1832. </widget>
  1833. <widget class="QWidget" name="page_notes">
  1834. <widget class="DmLineEdit" name="edc_detail_age">
  1835. <property name="geometry">
  1836. <rect>
  1837. <x>100</x>
  1838. <y>181</y>
  1839. <width>81</width>
  1840. <height>20</height>
  1841. </rect>
  1842. </property>
  1843. <property name="palette">
  1844. <palette>
  1845. <active>
  1846. <colorrole role="Base">
  1847. <brush brushstyle="SolidPattern">
  1848. <color alpha="255">
  1849. <red>248</red>
  1850. <green>248</green>
  1851. <blue>248</blue>
  1852. </color>
  1853. </brush>
  1854. </colorrole>
  1855. </active>
  1856. <inactive>
  1857. <colorrole role="Base">
  1858. <brush brushstyle="SolidPattern">
  1859. <color alpha="255">
  1860. <red>248</red>
  1861. <green>248</green>
  1862. <blue>248</blue>
  1863. </color>
  1864. </brush>
  1865. </colorrole>
  1866. </inactive>
  1867. <disabled>
  1868. <colorrole role="Base">
  1869. <brush brushstyle="SolidPattern">
  1870. <color alpha="255">
  1871. <red>240</red>
  1872. <green>240</green>
  1873. <blue>240</blue>
  1874. </color>
  1875. </brush>
  1876. </colorrole>
  1877. </disabled>
  1878. </palette>
  1879. </property>
  1880. <property name="font">
  1881. <font>
  1882. <family>Verdana</family>
  1883. </font>
  1884. </property>
  1885. </widget>
  1886. <widget class="QLabel" name="label_16">
  1887. <property name="geometry">
  1888. <rect>
  1889. <x>50</x>
  1890. <y>180</y>
  1891. <width>41</width>
  1892. <height>21</height>
  1893. </rect>
  1894. </property>
  1895. <property name="font">
  1896. <font>
  1897. <family>Verdana</family>
  1898. <pointsize>8</pointsize>
  1899. </font>
  1900. </property>
  1901. <property name="text">
  1902. <string>Age : </string>
  1903. </property>
  1904. </widget>
  1905. <widget class="QLabel" name="label_17">
  1906. <property name="geometry">
  1907. <rect>
  1908. <x>50</x>
  1909. <y>210</y>
  1910. <width>41</width>
  1911. <height>21</height>
  1912. </rect>
  1913. </property>
  1914. <property name="font">
  1915. <font>
  1916. <family>Verdana</family>
  1917. <pointsize>8</pointsize>
  1918. </font>
  1919. </property>
  1920. <property name="text">
  1921. <string>Sexe : </string>
  1922. </property>
  1923. </widget>
  1924. <widget class="DmLineEdit" name="edc_detail_sexe">
  1925. <property name="geometry">
  1926. <rect>
  1927. <x>100</x>
  1928. <y>210</y>
  1929. <width>81</width>
  1930. <height>20</height>
  1931. </rect>
  1932. </property>
  1933. <property name="palette">
  1934. <palette>
  1935. <active>
  1936. <colorrole role="Base">
  1937. <brush brushstyle="SolidPattern">
  1938. <color alpha="255">
  1939. <red>248</red>
  1940. <green>248</green>
  1941. <blue>248</blue>
  1942. </color>
  1943. </brush>
  1944. </colorrole>
  1945. </active>
  1946. <inactive>
  1947. <colorrole role="Base">
  1948. <brush brushstyle="SolidPattern">
  1949. <color alpha="255">
  1950. <red>248</red>
  1951. <green>248</green>
  1952. <blue>248</blue>
  1953. </color>
  1954. </brush>
  1955. </colorrole>
  1956. </inactive>
  1957. <disabled>
  1958. <colorrole role="Base">
  1959. <brush brushstyle="SolidPattern">
  1960. <color alpha="255">
  1961. <red>240</red>
  1962. <green>240</green>
  1963. <blue>240</blue>
  1964. </color>
  1965. </brush>
  1966. </colorrole>
  1967. </disabled>
  1968. </palette>
  1969. </property>
  1970. <property name="font">
  1971. <font>
  1972. <family>Verdana</family>
  1973. </font>
  1974. </property>
  1975. </widget>
  1976. <widget class="DmLineEdit" name="edc_detail_yeux">
  1977. <property name="geometry">
  1978. <rect>
  1979. <x>350</x>
  1980. <y>180</y>
  1981. <width>91</width>
  1982. <height>20</height>
  1983. </rect>
  1984. </property>
  1985. <property name="palette">
  1986. <palette>
  1987. <active>
  1988. <colorrole role="Base">
  1989. <brush brushstyle="SolidPattern">
  1990. <color alpha="255">
  1991. <red>248</red>
  1992. <green>248</green>
  1993. <blue>248</blue>
  1994. </color>
  1995. </brush>
  1996. </colorrole>
  1997. </active>
  1998. <inactive>
  1999. <colorrole role="Base">
  2000. <brush brushstyle="SolidPattern">
  2001. <color alpha="255">
  2002. <red>248</red>
  2003. <green>248</green>
  2004. <blue>248</blue>
  2005. </color>
  2006. </brush>
  2007. </colorrole>
  2008. </inactive>
  2009. <disabled>
  2010. <colorrole role="Base">
  2011. <brush brushstyle="SolidPattern">
  2012. <color alpha="255">
  2013. <red>240</red>
  2014. <green>240</green>
  2015. <blue>240</blue>
  2016. </color>
  2017. </brush>
  2018. </colorrole>
  2019. </disabled>
  2020. </palette>
  2021. </property>
  2022. <property name="font">
  2023. <font>
  2024. <family>Verdana</family>
  2025. </font>
  2026. </property>
  2027. <property name="text">
  2028. <string/>
  2029. </property>
  2030. </widget>
  2031. <widget class="QLabel" name="label_37">
  2032. <property name="geometry">
  2033. <rect>
  2034. <x>240</x>
  2035. <y>180</y>
  2036. <width>71</width>
  2037. <height>21</height>
  2038. </rect>
  2039. </property>
  2040. <property name="font">
  2041. <font>
  2042. <family>Verdana</family>
  2043. <pointsize>8</pointsize>
  2044. </font>
  2045. </property>
  2046. <property name="text">
  2047. <string>Yeux :</string>
  2048. </property>
  2049. </widget>
  2050. <widget class="DmLineEdit" name="edc_detail_peau">
  2051. <property name="geometry">
  2052. <rect>
  2053. <x>350</x>
  2054. <y>210</y>
  2055. <width>91</width>
  2056. <height>20</height>
  2057. </rect>
  2058. </property>
  2059. <property name="palette">
  2060. <palette>
  2061. <active>
  2062. <colorrole role="Base">
  2063. <brush brushstyle="SolidPattern">
  2064. <color alpha="255">
  2065. <red>248</red>
  2066. <green>248</green>
  2067. <blue>248</blue>
  2068. </color>
  2069. </brush>
  2070. </colorrole>
  2071. </active>
  2072. <inactive>
  2073. <colorrole role="Base">
  2074. <brush brushstyle="SolidPattern">
  2075. <color alpha="255">
  2076. <red>248</red>
  2077. <green>248</green>
  2078. <blue>248</blue>
  2079. </color>
  2080. </brush>
  2081. </colorrole>
  2082. </inactive>
  2083. <disabled>
  2084. <colorrole role="Base">
  2085. <brush brushstyle="SolidPattern">
  2086. <color alpha="255">
  2087. <red>240</red>
  2088. <green>240</green>
  2089. <blue>240</blue>
  2090. </color>
  2091. </brush>
  2092. </colorrole>
  2093. </disabled>
  2094. </palette>
  2095. </property>
  2096. <property name="font">
  2097. <font>
  2098. <family>Verdana</family>
  2099. </font>
  2100. </property>
  2101. <property name="text">
  2102. <string/>
  2103. </property>
  2104. </widget>
  2105. <widget class="QLabel" name="label_38">
  2106. <property name="geometry">
  2107. <rect>
  2108. <x>240</x>
  2109. <y>210</y>
  2110. <width>61</width>
  2111. <height>21</height>
  2112. </rect>
  2113. </property>
  2114. <property name="font">
  2115. <font>
  2116. <family>Verdana</family>
  2117. <pointsize>8</pointsize>
  2118. </font>
  2119. </property>
  2120. <property name="text">
  2121. <string>Peau :</string>
  2122. </property>
  2123. </widget>
  2124. <widget class="QLabel" name="label_39">
  2125. <property name="geometry">
  2126. <rect>
  2127. <x>240</x>
  2128. <y>240</y>
  2129. <width>101</width>
  2130. <height>21</height>
  2131. </rect>
  2132. </property>
  2133. <property name="font">
  2134. <font>
  2135. <family>Verdana</family>
  2136. <pointsize>8</pointsize>
  2137. </font>
  2138. </property>
  2139. <property name="text">
  2140. <string>Poils /Cheveux :</string>
  2141. </property>
  2142. </widget>
  2143. <widget class="DmLineEdit" name="edc_detail_cheveux">
  2144. <property name="geometry">
  2145. <rect>
  2146. <x>350</x>
  2147. <y>240</y>
  2148. <width>91</width>
  2149. <height>20</height>
  2150. </rect>
  2151. </property>
  2152. <property name="palette">
  2153. <palette>
  2154. <active>
  2155. <colorrole role="Base">
  2156. <brush brushstyle="SolidPattern">
  2157. <color alpha="255">
  2158. <red>248</red>
  2159. <green>248</green>
  2160. <blue>248</blue>
  2161. </color>
  2162. </brush>
  2163. </colorrole>
  2164. </active>
  2165. <inactive>
  2166. <colorrole role="Base">
  2167. <brush brushstyle="SolidPattern">
  2168. <color alpha="255">
  2169. <red>248</red>
  2170. <green>248</green>
  2171. <blue>248</blue>
  2172. </color>
  2173. </brush>
  2174. </colorrole>
  2175. </inactive>
  2176. <disabled>
  2177. <colorrole role="Base">
  2178. <brush brushstyle="SolidPattern">
  2179. <color alpha="255">
  2180. <red>240</red>
  2181. <green>240</green>
  2182. <blue>240</blue>
  2183. </color>
  2184. </brush>
  2185. </colorrole>
  2186. </disabled>
  2187. </palette>
  2188. </property>
  2189. <property name="font">
  2190. <font>
  2191. <family>Verdana</family>
  2192. </font>
  2193. </property>
  2194. <property name="text">
  2195. <string/>
  2196. </property>
  2197. </widget>
  2198. <widget class="DmLineEdit" name="edc_detail_lieuNaissance">
  2199. <property name="geometry">
  2200. <rect>
  2201. <x>130</x>
  2202. <y>140</y>
  2203. <width>171</width>
  2204. <height>20</height>
  2205. </rect>
  2206. </property>
  2207. <property name="palette">
  2208. <palette>
  2209. <active>
  2210. <colorrole role="Base">
  2211. <brush brushstyle="SolidPattern">
  2212. <color alpha="255">
  2213. <red>248</red>
  2214. <green>248</green>
  2215. <blue>248</blue>
  2216. </color>
  2217. </brush>
  2218. </colorrole>
  2219. </active>
  2220. <inactive>
  2221. <colorrole role="Base">
  2222. <brush brushstyle="SolidPattern">
  2223. <color alpha="255">
  2224. <red>248</red>
  2225. <green>248</green>
  2226. <blue>248</blue>
  2227. </color>
  2228. </brush>
  2229. </colorrole>
  2230. </inactive>
  2231. <disabled>
  2232. <colorrole role="Base">
  2233. <brush brushstyle="SolidPattern">
  2234. <color alpha="255">
  2235. <red>240</red>
  2236. <green>240</green>
  2237. <blue>240</blue>
  2238. </color>
  2239. </brush>
  2240. </colorrole>
  2241. </disabled>
  2242. </palette>
  2243. </property>
  2244. <property name="font">
  2245. <font>
  2246. <family>Verdana</family>
  2247. </font>
  2248. </property>
  2249. <property name="text">
  2250. <string/>
  2251. </property>
  2252. </widget>
  2253. <widget class="QLabel" name="label_40">
  2254. <property name="geometry">
  2255. <rect>
  2256. <x>50</x>
  2257. <y>130</y>
  2258. <width>71</width>
  2259. <height>31</height>
  2260. </rect>
  2261. </property>
  2262. <property name="font">
  2263. <font>
  2264. <family>Verdana</family>
  2265. <pointsize>8</pointsize>
  2266. </font>
  2267. </property>
  2268. <property name="text">
  2269. <string>Lieu de
  2270. naissance :</string>
  2271. </property>
  2272. </widget>
  2273. <widget class="QLabel" name="label_41">
  2274. <property name="geometry">
  2275. <rect>
  2276. <x>50</x>
  2277. <y>240</y>
  2278. <width>41</width>
  2279. <height>21</height>
  2280. </rect>
  2281. </property>
  2282. <property name="font">
  2283. <font>
  2284. <family>Verdana</family>
  2285. <pointsize>8</pointsize>
  2286. </font>
  2287. </property>
  2288. <property name="text">
  2289. <string>Poids : </string>
  2290. </property>
  2291. </widget>
  2292. <widget class="DmLineEdit" name="edc_detail_poids">
  2293. <property name="geometry">
  2294. <rect>
  2295. <x>100</x>
  2296. <y>241</y>
  2297. <width>81</width>
  2298. <height>20</height>
  2299. </rect>
  2300. </property>
  2301. <property name="palette">
  2302. <palette>
  2303. <active>
  2304. <colorrole role="Base">
  2305. <brush brushstyle="SolidPattern">
  2306. <color alpha="255">
  2307. <red>248</red>
  2308. <green>248</green>
  2309. <blue>248</blue>
  2310. </color>
  2311. </brush>
  2312. </colorrole>
  2313. </active>
  2314. <inactive>
  2315. <colorrole role="Base">
  2316. <brush brushstyle="SolidPattern">
  2317. <color alpha="255">
  2318. <red>248</red>
  2319. <green>248</green>
  2320. <blue>248</blue>
  2321. </color>
  2322. </brush>
  2323. </colorrole>
  2324. </inactive>
  2325. <disabled>
  2326. <colorrole role="Base">
  2327. <brush brushstyle="SolidPattern">
  2328. <color alpha="255">
  2329. <red>240</red>
  2330. <green>240</green>
  2331. <blue>240</blue>
  2332. </color>
  2333. </brush>
  2334. </colorrole>
  2335. </disabled>
  2336. </palette>
  2337. </property>
  2338. <property name="font">
  2339. <font>
  2340. <family>Verdana</family>
  2341. </font>
  2342. </property>
  2343. </widget>
  2344. <widget class="QLabel" name="label_43">
  2345. <property name="geometry">
  2346. <rect>
  2347. <x>50</x>
  2348. <y>50</y>
  2349. <width>61</width>
  2350. <height>21</height>
  2351. </rect>
  2352. </property>
  2353. <property name="font">
  2354. <font>
  2355. <family>Verdana</family>
  2356. <pointsize>8</pointsize>
  2357. </font>
  2358. </property>
  2359. <property name="text">
  2360. <string>Espèce : </string>
  2361. </property>
  2362. </widget>
  2363. <widget class="DmLineEdit" name="edc_detail_espece">
  2364. <property name="geometry">
  2365. <rect>
  2366. <x>130</x>
  2367. <y>51</y>
  2368. <width>171</width>
  2369. <height>20</height>
  2370. </rect>
  2371. </property>
  2372. <property name="palette">
  2373. <palette>
  2374. <active>
  2375. <colorrole role="Base">
  2376. <brush brushstyle="SolidPattern">
  2377. <color alpha="255">
  2378. <red>248</red>
  2379. <green>248</green>
  2380. <blue>248</blue>
  2381. </color>
  2382. </brush>
  2383. </colorrole>
  2384. </active>
  2385. <inactive>
  2386. <colorrole role="Base">
  2387. <brush brushstyle="SolidPattern">
  2388. <color alpha="255">
  2389. <red>248</red>
  2390. <green>248</green>
  2391. <blue>248</blue>
  2392. </color>
  2393. </brush>
  2394. </colorrole>
  2395. </inactive>
  2396. <disabled>
  2397. <colorrole role="Base">
  2398. <brush brushstyle="SolidPattern">
  2399. <color alpha="255">
  2400. <red>240</red>
  2401. <green>240</green>
  2402. <blue>240</blue>
  2403. </color>
  2404. </brush>
  2405. </colorrole>
  2406. </disabled>
  2407. </palette>
  2408. </property>
  2409. <property name="font">
  2410. <font>
  2411. <family>Verdana</family>
  2412. </font>
  2413. </property>
  2414. <property name="text">
  2415. <string/>
  2416. </property>
  2417. </widget>
  2418. <widget class="QLabel" name="label_44">
  2419. <property name="geometry">
  2420. <rect>
  2421. <x>50</x>
  2422. <y>79</y>
  2423. <width>81</width>
  2424. <height>21</height>
  2425. </rect>
  2426. </property>
  2427. <property name="font">
  2428. <font>
  2429. <family>Verdana</family>
  2430. <pointsize>8</pointsize>
  2431. </font>
  2432. </property>
  2433. <property name="text">
  2434. <string>Profession : </string>
  2435. </property>
  2436. </widget>
  2437. <widget class="DmLineEdit" name="edc_detail_profession">
  2438. <property name="geometry">
  2439. <rect>
  2440. <x>130</x>
  2441. <y>80</y>
  2442. <width>171</width>
  2443. <height>20</height>
  2444. </rect>
  2445. </property>
  2446. <property name="palette">
  2447. <palette>
  2448. <active>
  2449. <colorrole role="Base">
  2450. <brush brushstyle="SolidPattern">
  2451. <color alpha="255">
  2452. <red>248</red>
  2453. <green>248</green>
  2454. <blue>248</blue>
  2455. </color>
  2456. </brush>
  2457. </colorrole>
  2458. </active>
  2459. <inactive>
  2460. <colorrole role="Base">
  2461. <brush brushstyle="SolidPattern">
  2462. <color alpha="255">
  2463. <red>248</red>
  2464. <green>248</green>
  2465. <blue>248</blue>
  2466. </color>
  2467. </brush>
  2468. </colorrole>
  2469. </inactive>
  2470. <disabled>
  2471. <colorrole role="Base">
  2472. <brush brushstyle="SolidPattern">
  2473. <color alpha="255">
  2474. <red>240</red>
  2475. <green>240</green>
  2476. <blue>240</blue>
  2477. </color>
  2478. </brush>
  2479. </colorrole>
  2480. </disabled>
  2481. </palette>
  2482. </property>
  2483. <property name="font">
  2484. <font>
  2485. <family>Verdana</family>
  2486. </font>
  2487. </property>
  2488. <property name="text">
  2489. <string/>
  2490. </property>
  2491. </widget>
  2492. <widget class="QLabel" name="label_45">
  2493. <property name="geometry">
  2494. <rect>
  2495. <x>50</x>
  2496. <y>270</y>
  2497. <width>41</width>
  2498. <height>21</height>
  2499. </rect>
  2500. </property>
  2501. <property name="font">
  2502. <font>
  2503. <family>Verdana</family>
  2504. <pointsize>8</pointsize>
  2505. </font>
  2506. </property>
  2507. <property name="text">
  2508. <string>Taille : </string>
  2509. </property>
  2510. </widget>
  2511. <widget class="DmLineEdit" name="edc_detail_taille">
  2512. <property name="geometry">
  2513. <rect>
  2514. <x>100</x>
  2515. <y>270</y>
  2516. <width>81</width>
  2517. <height>21</height>
  2518. </rect>
  2519. </property>
  2520. <property name="palette">
  2521. <palette>
  2522. <active>
  2523. <colorrole role="Base">
  2524. <brush brushstyle="SolidPattern">
  2525. <color alpha="255">
  2526. <red>248</red>
  2527. <green>248</green>
  2528. <blue>248</blue>
  2529. </color>
  2530. </brush>
  2531. </colorrole>
  2532. </active>
  2533. <inactive>
  2534. <colorrole role="Base">
  2535. <brush brushstyle="SolidPattern">
  2536. <color alpha="255">
  2537. <red>248</red>
  2538. <green>248</green>
  2539. <blue>248</blue>
  2540. </color>
  2541. </brush>
  2542. </colorrole>
  2543. </inactive>
  2544. <disabled>
  2545. <colorrole role="Base">
  2546. <brush brushstyle="SolidPattern">
  2547. <color alpha="255">
  2548. <red>240</red>
  2549. <green>240</green>
  2550. <blue>240</blue>
  2551. </color>
  2552. </brush>
  2553. </colorrole>
  2554. </disabled>
  2555. </palette>
  2556. </property>
  2557. <property name="font">
  2558. <font>
  2559. <family>Verdana</family>
  2560. </font>
  2561. </property>
  2562. <property name="text">
  2563. <string/>
  2564. </property>
  2565. </widget>
  2566. <widget class="DmLineEdit" name="edc_detail_religion">
  2567. <property name="geometry">
  2568. <rect>
  2569. <x>130</x>
  2570. <y>110</y>
  2571. <width>171</width>
  2572. <height>21</height>
  2573. </rect>
  2574. </property>
  2575. <property name="palette">
  2576. <palette>
  2577. <active>
  2578. <colorrole role="Base">
  2579. <brush brushstyle="SolidPattern">
  2580. <color alpha="255">
  2581. <red>248</red>
  2582. <green>248</green>
  2583. <blue>248</blue>
  2584. </color>
  2585. </brush>
  2586. </colorrole>
  2587. </active>
  2588. <inactive>
  2589. <colorrole role="Base">
  2590. <brush brushstyle="SolidPattern">
  2591. <color alpha="255">
  2592. <red>248</red>
  2593. <green>248</green>
  2594. <blue>248</blue>
  2595. </color>
  2596. </brush>
  2597. </colorrole>
  2598. </inactive>
  2599. <disabled>
  2600. <colorrole role="Base">
  2601. <brush brushstyle="SolidPattern">
  2602. <color alpha="255">
  2603. <red>240</red>
  2604. <green>240</green>
  2605. <blue>240</blue>
  2606. </color>
  2607. </brush>
  2608. </colorrole>
  2609. </disabled>
  2610. </palette>
  2611. </property>
  2612. <property name="font">
  2613. <font>
  2614. <family>Verdana</family>
  2615. </font>
  2616. </property>
  2617. <property name="text">
  2618. <string/>
  2619. </property>
  2620. </widget>
  2621. <widget class="QLabel" name="label_42">
  2622. <property name="geometry">
  2623. <rect>
  2624. <x>50</x>
  2625. <y>100</y>
  2626. <width>81</width>
  2627. <height>31</height>
  2628. </rect>
  2629. </property>
  2630. <property name="font">
  2631. <font>
  2632. <family>Verdana</family>
  2633. <pointsize>8</pointsize>
  2634. </font>
  2635. </property>
  2636. <property name="text">
  2637. <string>Religion /
  2638. Croyances :</string>
  2639. </property>
  2640. </widget>
  2641. <widget class="DmLineEdit" name="edc_detail_langues">
  2642. <property name="geometry">
  2643. <rect>
  2644. <x>130</x>
  2645. <y>320</y>
  2646. <width>291</width>
  2647. <height>20</height>
  2648. </rect>
  2649. </property>
  2650. <property name="palette">
  2651. <palette>
  2652. <active>
  2653. <colorrole role="Base">
  2654. <brush brushstyle="SolidPattern">
  2655. <color alpha="255">
  2656. <red>248</red>
  2657. <green>248</green>
  2658. <blue>248</blue>
  2659. </color>
  2660. </brush>
  2661. </colorrole>
  2662. </active>
  2663. <inactive>
  2664. <colorrole role="Base">
  2665. <brush brushstyle="SolidPattern">
  2666. <color alpha="255">
  2667. <red>248</red>
  2668. <green>248</green>
  2669. <blue>248</blue>
  2670. </color>
  2671. </brush>
  2672. </colorrole>
  2673. </inactive>
  2674. <disabled>
  2675. <colorrole role="Base">
  2676. <brush brushstyle="SolidPattern">
  2677. <color alpha="255">
  2678. <red>240</red>
  2679. <green>240</green>
  2680. <blue>240</blue>
  2681. </color>
  2682. </brush>
  2683. </colorrole>
  2684. </disabled>
  2685. </palette>
  2686. </property>
  2687. </widget>
  2688. <widget class="QLabel" name="label_47">
  2689. <property name="geometry">
  2690. <rect>
  2691. <x>50</x>
  2692. <y>310</y>
  2693. <width>61</width>
  2694. <height>41</height>
  2695. </rect>
  2696. </property>
  2697. <property name="font">
  2698. <font>
  2699. <family>Verdana</family>
  2700. <pointsize>8</pointsize>
  2701. </font>
  2702. </property>
  2703. <property name="text">
  2704. <string>Langues
  2705. parlées : </string>
  2706. </property>
  2707. </widget>
  2708. </widget>
  2709. </widget>
  2710. </item>
  2711. <item>
  2712. <widget class="QFrame" name="frame">
  2713. <property name="minimumSize">
  2714. <size>
  2715. <width>392</width>
  2716. <height>50</height>
  2717. </size>
  2718. </property>
  2719. <property name="maximumSize">
  2720. <size>
  2721. <width>16777215</width>
  2722. <height>50</height>
  2723. </size>
  2724. </property>
  2725. <property name="font">
  2726. <font>
  2727. <family>Verdana</family>
  2728. </font>
  2729. </property>
  2730. <property name="frameShape">
  2731. <enum>QFrame::StyledPanel</enum>
  2732. </property>
  2733. <property name="frameShadow">
  2734. <enum>QFrame::Raised</enum>
  2735. </property>
  2736. <widget class="QPushButton" name="edc_enregistrer">
  2737. <property name="enabled">
  2738. <bool>false</bool>
  2739. </property>
  2740. <property name="geometry">
  2741. <rect>
  2742. <x>370</x>
  2743. <y>10</y>
  2744. <width>111</width>
  2745. <height>31</height>
  2746. </rect>
  2747. </property>
  2748. <property name="font">
  2749. <font>
  2750. <family>Verdana</family>
  2751. <weight>75</weight>
  2752. <bold>true</bold>
  2753. </font>
  2754. </property>
  2755. <property name="text">
  2756. <string>Enregistrer</string>
  2757. </property>
  2758. </widget>
  2759. <widget class="QPushButton" name="edc_annuler">
  2760. <property name="geometry">
  2761. <rect>
  2762. <x>280</x>
  2763. <y>10</y>
  2764. <width>81</width>
  2765. <height>31</height>
  2766. </rect>
  2767. </property>
  2768. <property name="font">
  2769. <font>
  2770. <family>Verdana</family>
  2771. </font>
  2772. </property>
  2773. <property name="text">
  2774. <string>Annuler</string>
  2775. </property>
  2776. </widget>
  2777. </widget>
  2778. </item>
  2779. </layout>
  2780. </item>
  2781. </layout>
  2782. </item>
  2783. </layout>
  2784. </widget>
  2785. <customwidgets>
  2786. <customwidget>
  2787. <class>DmTableMenu</class>
  2788. <extends>QTableWidget</extends>
  2789. <header location="global">dm.h</header>
  2790. </customwidget>
  2791. <customwidget>
  2792. <class>DmLabelChoixImage</class>
  2793. <extends>QLabel</extends>
  2794. <header location="global">dm.h</header>
  2795. </customwidget>
  2796. <customwidget>
  2797. <class>DmLineEdit</class>
  2798. <extends>QLineEdit</extends>
  2799. <header location="global">dm.h</header>
  2800. </customwidget>
  2801. <customwidget>
  2802. <class>DmTableInventaire</class>
  2803. <extends>QTableWidget</extends>
  2804. <header location="global">dm.h</header>
  2805. </customwidget>
  2806. </customwidgets>
  2807. <resources/>
  2808. <connections>
  2809. <connection>
  2810. <sender>edc_menu</sender>
  2811. <signal>cellClicked(int,int)</signal>
  2812. <receiver>edc_pages</receiver>
  2813. <slot>setCurrentIndex(int)</slot>
  2814. <hints>
  2815. <hint type="sourcelabel">
  2816. <x>80</x>
  2817. <y>164</y>
  2818. </hint>
  2819. <hint type="destinationlabel">
  2820. <x>312</x>
  2821. <y>164</y>
  2822. </hint>
  2823. </hints>
  2824. </connection>
  2825. </connections>
  2826. </ui>