editionCombattant.ui 88 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934
  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 resource="ressource.qrc">
  372. <normaloff>:/interface/32/ressource/oeil_32.png</normaloff>:/interface/32/ressource/oeil_32.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 resource="ressource.qrc">
  395. <normaloff>:/interface/32/ressource/deplacement2_32.png</normaloff>:/interface/32/ressource/deplacement2_32.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 resource="ressource.qrc">
  418. <normaloff>:/interface/32/ressource/profil_32.png</normaloff>:/interface/32/ressource/profil_32.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 resource="ressource.qrc">
  441. <normaloff>:/interface/32/ressource/attaque_32.png</normaloff>:/interface/32/ressource/attaque_32.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 resource="ressource.qrc">
  464. <normaloff>:/interface/16/ressource/sac_16.png</normaloff>:/interface/16/ressource/sac_16.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 resource="ressource.qrc">
  487. <normaloff>:/interface/32/ressource/note_32.png</normaloff>:/interface/32/ressource/note_32.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>0</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="DmLabel" 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 resource="ressource.qrc">
  701. <normaloff>:/interface/32/ressource/portrait_32.png</normaloff>:/interface/32/ressource/portrait_32.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 resource="ressource.qrc">
  724. <normaloff>:/interface/16/ressource/palette_16.png</normaloff>:/interface/16/ressource/palette_16.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 resource="ressource.qrc">
  741. <normaloff>:/interface/32/ressource/aide_32.png</normaloff>:/interface/32/ressource/aide_32.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 resource="ressource.qrc">:/interface/16/ressource/marche_16.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 resource="ressource.qrc">:/interface/24/ressource/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 resource="ressource.qrc">:/interface/24/ressource/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 resource="ressource.qrc">:/interface/24/ressource/plume_24.png</pixmap>
  1296. </property>
  1297. <property name="scaledContents">
  1298. <bool>false</bool>
  1299. </property>
  1300. </widget>
  1301. <widget class="QSpinBox" 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="minimum">
  1353. <number>1</number>
  1354. </property>
  1355. </widget>
  1356. <widget class="QLabel" name="label_15">
  1357. <property name="geometry">
  1358. <rect>
  1359. <x>70</x>
  1360. <y>60</y>
  1361. <width>231</width>
  1362. <height>31</height>
  1363. </rect>
  1364. </property>
  1365. <property name="font">
  1366. <font>
  1367. <family>Verdana</family>
  1368. </font>
  1369. </property>
  1370. <property name="frameShape">
  1371. <enum>QFrame::NoFrame</enum>
  1372. </property>
  1373. <property name="text">
  1374. <string>Taille de la créature (en cases) : </string>
  1375. </property>
  1376. </widget>
  1377. </widget>
  1378. <widget class="QWidget" name="page_attr">
  1379. <widget class="QScrollArea" name="edc_deroulementAttributs">
  1380. <property name="geometry">
  1381. <rect>
  1382. <x>10</x>
  1383. <y>10</y>
  1384. <width>231</width>
  1385. <height>411</height>
  1386. </rect>
  1387. </property>
  1388. <property name="frameShape">
  1389. <enum>QFrame::StyledPanel</enum>
  1390. </property>
  1391. <property name="frameShadow">
  1392. <enum>QFrame::Raised</enum>
  1393. </property>
  1394. <property name="widgetResizable">
  1395. <bool>true</bool>
  1396. </property>
  1397. <widget class="QWidget" name="scrollAreaWidgetContents_2">
  1398. <property name="geometry">
  1399. <rect>
  1400. <x>0</x>
  1401. <y>0</y>
  1402. <width>229</width>
  1403. <height>409</height>
  1404. </rect>
  1405. </property>
  1406. <layout class="QVBoxLayout" name="edc_deroulementAttributs_layout">
  1407. <property name="spacing">
  1408. <number>1</number>
  1409. </property>
  1410. <property name="leftMargin">
  1411. <number>3</number>
  1412. </property>
  1413. <property name="topMargin">
  1414. <number>3</number>
  1415. </property>
  1416. <property name="rightMargin">
  1417. <number>3</number>
  1418. </property>
  1419. <property name="bottomMargin">
  1420. <number>3</number>
  1421. </property>
  1422. </layout>
  1423. </widget>
  1424. </widget>
  1425. <widget class="QTextEdit" name="edc_notes">
  1426. <property name="geometry">
  1427. <rect>
  1428. <x>270</x>
  1429. <y>30</y>
  1430. <width>181</width>
  1431. <height>391</height>
  1432. </rect>
  1433. </property>
  1434. <property name="palette">
  1435. <palette>
  1436. <active>
  1437. <colorrole role="Base">
  1438. <brush brushstyle="SolidPattern">
  1439. <color alpha="255">
  1440. <red>248</red>
  1441. <green>248</green>
  1442. <blue>248</blue>
  1443. </color>
  1444. </brush>
  1445. </colorrole>
  1446. </active>
  1447. <inactive>
  1448. <colorrole role="Base">
  1449. <brush brushstyle="SolidPattern">
  1450. <color alpha="255">
  1451. <red>248</red>
  1452. <green>248</green>
  1453. <blue>248</blue>
  1454. </color>
  1455. </brush>
  1456. </colorrole>
  1457. </inactive>
  1458. <disabled>
  1459. <colorrole role="Base">
  1460. <brush brushstyle="SolidPattern">
  1461. <color alpha="255">
  1462. <red>240</red>
  1463. <green>240</green>
  1464. <blue>240</blue>
  1465. </color>
  1466. </brush>
  1467. </colorrole>
  1468. </disabled>
  1469. </palette>
  1470. </property>
  1471. <property name="font">
  1472. <font>
  1473. <family>Verdana</family>
  1474. </font>
  1475. </property>
  1476. </widget>
  1477. <widget class="QLabel" name="label_23">
  1478. <property name="geometry">
  1479. <rect>
  1480. <x>280</x>
  1481. <y>9</y>
  1482. <width>141</width>
  1483. <height>21</height>
  1484. </rect>
  1485. </property>
  1486. <property name="font">
  1487. <font>
  1488. <family>Verdana</family>
  1489. <italic>true</italic>
  1490. </font>
  1491. </property>
  1492. <property name="text">
  1493. <string>Autre :</string>
  1494. </property>
  1495. </widget>
  1496. </widget>
  1497. <widget class="QWidget" name="page_att">
  1498. <widget class="QScrollArea" name="edc_deroulementAttaques">
  1499. <property name="geometry">
  1500. <rect>
  1501. <x>0</x>
  1502. <y>0</y>
  1503. <width>491</width>
  1504. <height>431</height>
  1505. </rect>
  1506. </property>
  1507. <property name="widgetResizable">
  1508. <bool>true</bool>
  1509. </property>
  1510. <widget class="QWidget" name="scrollAreaWidgetContents">
  1511. <property name="geometry">
  1512. <rect>
  1513. <x>0</x>
  1514. <y>0</y>
  1515. <width>489</width>
  1516. <height>429</height>
  1517. </rect>
  1518. </property>
  1519. <layout class="QVBoxLayout" name="edc_deroulementAttaques_layout">
  1520. <property name="spacing">
  1521. <number>1</number>
  1522. </property>
  1523. <property name="leftMargin">
  1524. <number>3</number>
  1525. </property>
  1526. <property name="topMargin">
  1527. <number>3</number>
  1528. </property>
  1529. <property name="rightMargin">
  1530. <number>3</number>
  1531. </property>
  1532. <property name="bottomMargin">
  1533. <number>3</number>
  1534. </property>
  1535. </layout>
  1536. </widget>
  1537. </widget>
  1538. </widget>
  1539. <widget class="QWidget" name="page_invent">
  1540. <widget class="DmTableInventaire" name="edc_listeInventaire">
  1541. <property name="geometry">
  1542. <rect>
  1543. <x>0</x>
  1544. <y>29</y>
  1545. <width>491</width>
  1546. <height>368</height>
  1547. </rect>
  1548. </property>
  1549. <property name="palette">
  1550. <palette>
  1551. <active>
  1552. <colorrole role="Base">
  1553. <brush brushstyle="SolidPattern">
  1554. <color alpha="255">
  1555. <red>248</red>
  1556. <green>248</green>
  1557. <blue>248</blue>
  1558. </color>
  1559. </brush>
  1560. </colorrole>
  1561. </active>
  1562. <inactive>
  1563. <colorrole role="Base">
  1564. <brush brushstyle="SolidPattern">
  1565. <color alpha="255">
  1566. <red>248</red>
  1567. <green>248</green>
  1568. <blue>248</blue>
  1569. </color>
  1570. </brush>
  1571. </colorrole>
  1572. </inactive>
  1573. <disabled>
  1574. <colorrole role="Base">
  1575. <brush brushstyle="SolidPattern">
  1576. <color alpha="255">
  1577. <red>240</red>
  1578. <green>240</green>
  1579. <blue>240</blue>
  1580. </color>
  1581. </brush>
  1582. </colorrole>
  1583. </disabled>
  1584. </palette>
  1585. </property>
  1586. <property name="font">
  1587. <font>
  1588. <family>Verdana</family>
  1589. </font>
  1590. </property>
  1591. <property name="frameShape">
  1592. <enum>QFrame::WinPanel</enum>
  1593. </property>
  1594. <property name="verticalScrollBarPolicy">
  1595. <enum>Qt::ScrollBarAsNeeded</enum>
  1596. </property>
  1597. <property name="horizontalScrollBarPolicy">
  1598. <enum>Qt::ScrollBarAlwaysOff</enum>
  1599. </property>
  1600. <property name="editTriggers">
  1601. <set>QAbstractItemView::NoEditTriggers</set>
  1602. </property>
  1603. <property name="alternatingRowColors">
  1604. <bool>false</bool>
  1605. </property>
  1606. <property name="selectionMode">
  1607. <enum>QAbstractItemView::NoSelection</enum>
  1608. </property>
  1609. <property name="selectionBehavior">
  1610. <enum>QAbstractItemView::SelectRows</enum>
  1611. </property>
  1612. <property name="showGrid">
  1613. <bool>true</bool>
  1614. </property>
  1615. <property name="gridStyle">
  1616. <enum>Qt::SolidLine</enum>
  1617. </property>
  1618. <property name="sortingEnabled">
  1619. <bool>true</bool>
  1620. </property>
  1621. <attribute name="horizontalHeaderVisible">
  1622. <bool>false</bool>
  1623. </attribute>
  1624. <attribute name="horizontalHeaderCascadingSectionResizes">
  1625. <bool>false</bool>
  1626. </attribute>
  1627. <attribute name="horizontalHeaderDefaultSectionSize">
  1628. <number>60</number>
  1629. </attribute>
  1630. <attribute name="horizontalHeaderMinimumSectionSize">
  1631. <number>32</number>
  1632. </attribute>
  1633. <attribute name="verticalHeaderVisible">
  1634. <bool>false</bool>
  1635. </attribute>
  1636. <attribute name="verticalHeaderDefaultSectionSize">
  1637. <number>18</number>
  1638. </attribute>
  1639. <attribute name="verticalHeaderMinimumSectionSize">
  1640. <number>14</number>
  1641. </attribute>
  1642. <row>
  1643. <property name="text">
  1644. <string>Nouvelle ligne</string>
  1645. </property>
  1646. </row>
  1647. <column>
  1648. <property name="text">
  1649. <string>Type</string>
  1650. </property>
  1651. <property name="font">
  1652. <font>
  1653. <family>Verdana</family>
  1654. <pointsize>7</pointsize>
  1655. <weight>75</weight>
  1656. <bold>true</bold>
  1657. </font>
  1658. </property>
  1659. </column>
  1660. <column>
  1661. <property name="text">
  1662. <string>Quantité</string>
  1663. </property>
  1664. <property name="font">
  1665. <font>
  1666. <family>Verdana</family>
  1667. <pointsize>7</pointsize>
  1668. <weight>75</weight>
  1669. <bold>true</bold>
  1670. </font>
  1671. </property>
  1672. </column>
  1673. <column>
  1674. <property name="text">
  1675. <string>Objet</string>
  1676. </property>
  1677. <property name="font">
  1678. <font>
  1679. <family>Verdana</family>
  1680. <pointsize>7</pointsize>
  1681. <weight>75</weight>
  1682. <italic>false</italic>
  1683. <bold>true</bold>
  1684. </font>
  1685. </property>
  1686. </column>
  1687. <column>
  1688. <property name="text">
  1689. <string/>
  1690. </property>
  1691. <property name="font">
  1692. <font>
  1693. <family>Verdana</family>
  1694. <pointsize>7</pointsize>
  1695. <weight>75</weight>
  1696. <bold>true</bold>
  1697. </font>
  1698. </property>
  1699. <property name="icon">
  1700. <iconset>
  1701. <normaloff>../../img/poids.png</normaloff>../../img/poids.png</iconset>
  1702. </property>
  1703. </column>
  1704. <column>
  1705. <property name="text">
  1706. <string>...</string>
  1707. </property>
  1708. <property name="font">
  1709. <font>
  1710. <family>Verdana</family>
  1711. <pointsize>7</pointsize>
  1712. <weight>75</weight>
  1713. <bold>true</bold>
  1714. </font>
  1715. </property>
  1716. </column>
  1717. <item row="0" column="0">
  1718. <property name="text">
  1719. <string>*</string>
  1720. </property>
  1721. <property name="font">
  1722. <font>
  1723. <weight>50</weight>
  1724. <bold>false</bold>
  1725. </font>
  1726. </property>
  1727. <property name="textAlignment">
  1728. <set>AlignHCenter|AlignVCenter|AlignCenter</set>
  1729. </property>
  1730. <property name="flags">
  1731. <set>ItemIsSelectable|ItemIsDragEnabled|ItemIsDropEnabled|ItemIsEnabled</set>
  1732. </property>
  1733. </item>
  1734. <item row="0" column="1">
  1735. <property name="text">
  1736. <string/>
  1737. </property>
  1738. <property name="flags">
  1739. <set>ItemIsSelectable|ItemIsDragEnabled|ItemIsDropEnabled|ItemIsUserCheckable|ItemIsEnabled</set>
  1740. </property>
  1741. </item>
  1742. <item row="0" column="2">
  1743. <property name="text">
  1744. <string>(Cliquer pour ajouter un item)</string>
  1745. </property>
  1746. <property name="font">
  1747. <font>
  1748. <family>Verdana</family>
  1749. <pointsize>8</pointsize>
  1750. <italic>true</italic>
  1751. </font>
  1752. </property>
  1753. <property name="flags">
  1754. <set>ItemIsSelectable|ItemIsDragEnabled|ItemIsDropEnabled|ItemIsUserCheckable|ItemIsEnabled</set>
  1755. </property>
  1756. </item>
  1757. <item row="0" column="3">
  1758. <property name="text">
  1759. <string/>
  1760. </property>
  1761. <property name="flags">
  1762. <set>ItemIsSelectable|ItemIsDragEnabled|ItemIsDropEnabled|ItemIsUserCheckable|ItemIsEnabled</set>
  1763. </property>
  1764. </item>
  1765. <item row="0" column="4">
  1766. <property name="text">
  1767. <string/>
  1768. </property>
  1769. <property name="flags">
  1770. <set>ItemIsSelectable|ItemIsDragEnabled|ItemIsDropEnabled|ItemIsUserCheckable|ItemIsEnabled</set>
  1771. </property>
  1772. </item>
  1773. </widget>
  1774. <widget class="QLabel" name="label">
  1775. <property name="geometry">
  1776. <rect>
  1777. <x>10</x>
  1778. <y>400</y>
  1779. <width>151</width>
  1780. <height>21</height>
  1781. </rect>
  1782. </property>
  1783. <property name="font">
  1784. <font>
  1785. <italic>true</italic>
  1786. </font>
  1787. </property>
  1788. <property name="text">
  1789. <string>Poids total transporté :</string>
  1790. </property>
  1791. </widget>
  1792. <widget class="DmLabel" name="edc_inventaire_poids">
  1793. <property name="geometry">
  1794. <rect>
  1795. <x>150</x>
  1796. <y>400</y>
  1797. <width>61</width>
  1798. <height>20</height>
  1799. </rect>
  1800. </property>
  1801. <property name="font">
  1802. <font>
  1803. <italic>true</italic>
  1804. </font>
  1805. </property>
  1806. <property name="text">
  1807. <string>... kg</string>
  1808. </property>
  1809. </widget>
  1810. <widget class="DmTabInventaire" name="edc_filtreTypeObjet">
  1811. <property name="geometry">
  1812. <rect>
  1813. <x>0</x>
  1814. <y>5</y>
  1815. <width>491</width>
  1816. <height>28</height>
  1817. </rect>
  1818. </property>
  1819. <property name="palette">
  1820. <palette>
  1821. <active>
  1822. <colorrole role="Base">
  1823. <brush brushstyle="SolidPattern">
  1824. <color alpha="100">
  1825. <red>170</red>
  1826. <green>0</green>
  1827. <blue>0</blue>
  1828. </color>
  1829. </brush>
  1830. </colorrole>
  1831. </active>
  1832. <inactive>
  1833. <colorrole role="Base">
  1834. <brush brushstyle="SolidPattern">
  1835. <color alpha="100">
  1836. <red>170</red>
  1837. <green>0</green>
  1838. <blue>0</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. <stylestrategy>PreferAntialias</stylestrategy>
  1859. </font>
  1860. </property>
  1861. <property name="tabShape">
  1862. <enum>QTabWidget::Rounded</enum>
  1863. </property>
  1864. <property name="currentIndex">
  1865. <number>4</number>
  1866. </property>
  1867. <property name="iconSize">
  1868. <size>
  1869. <width>19</width>
  1870. <height>21</height>
  1871. </size>
  1872. </property>
  1873. <widget class="QWidget" name="filtre_tout">
  1874. <attribute name="icon">
  1875. <iconset resource="ressource.qrc">
  1876. <normaloff>:/interface/32/ressource/etoile_32.png</normaloff>:/interface/32/ressource/etoile_32.png</iconset>
  1877. </attribute>
  1878. <attribute name="title">
  1879. <string/>
  1880. </attribute>
  1881. </widget>
  1882. <widget class="QWidget" name="filtre_0">
  1883. <attribute name="icon">
  1884. <iconset resource="ressource.qrc">
  1885. <normaloff>:/interface/32/ressource/pieces_32.png</normaloff>:/interface/32/ressource/pieces_32.png</iconset>
  1886. </attribute>
  1887. <attribute name="title">
  1888. <string/>
  1889. </attribute>
  1890. </widget>
  1891. <widget class="QWidget" name="filtre_1">
  1892. <attribute name="icon">
  1893. <iconset resource="ressource.qrc">
  1894. <normaloff>:/interface/32/ressource/armes_32.png</normaloff>:/interface/32/ressource/armes_32.png</iconset>
  1895. </attribute>
  1896. <attribute name="title">
  1897. <string/>
  1898. </attribute>
  1899. </widget>
  1900. <widget class="QWidget" name="filtre_2">
  1901. <attribute name="icon">
  1902. <iconset resource="ressource.qrc">
  1903. <normaloff>:/interface/32/ressource/chimie_32.png</normaloff>:/interface/32/ressource/chimie_32.png</iconset>
  1904. </attribute>
  1905. <attribute name="title">
  1906. <string/>
  1907. </attribute>
  1908. </widget>
  1909. <widget class="QWidget" name="filtre_3">
  1910. <attribute name="icon">
  1911. <iconset resource="ressource.qrc">
  1912. <normaloff>:/interface/32/ressource/diamant_32.png</normaloff>:/interface/32/ressource/diamant_32.png</iconset>
  1913. </attribute>
  1914. <attribute name="title">
  1915. <string/>
  1916. </attribute>
  1917. </widget>
  1918. <widget class="QWidget" name="filtre_4">
  1919. <attribute name="icon">
  1920. <iconset resource="ressource.qrc">
  1921. <normaloff>:/interface/32/ressource/boiteOutils_32.png</normaloff>:/interface/32/ressource/boiteOutils_32.png</iconset>
  1922. </attribute>
  1923. <attribute name="title">
  1924. <string/>
  1925. </attribute>
  1926. </widget>
  1927. </widget>
  1928. <zorder>edc_filtreTypeObjet</zorder>
  1929. <zorder>edc_listeInventaire</zorder>
  1930. <zorder>label</zorder>
  1931. <zorder>edc_inventaire_poids</zorder>
  1932. </widget>
  1933. <widget class="QWidget" name="page_notes">
  1934. <widget class="DmLineEdit" name="edc_detail_age">
  1935. <property name="geometry">
  1936. <rect>
  1937. <x>100</x>
  1938. <y>181</y>
  1939. <width>81</width>
  1940. <height>20</height>
  1941. </rect>
  1942. </property>
  1943. <property name="palette">
  1944. <palette>
  1945. <active>
  1946. <colorrole role="Base">
  1947. <brush brushstyle="SolidPattern">
  1948. <color alpha="255">
  1949. <red>248</red>
  1950. <green>248</green>
  1951. <blue>248</blue>
  1952. </color>
  1953. </brush>
  1954. </colorrole>
  1955. </active>
  1956. <inactive>
  1957. <colorrole role="Base">
  1958. <brush brushstyle="SolidPattern">
  1959. <color alpha="255">
  1960. <red>248</red>
  1961. <green>248</green>
  1962. <blue>248</blue>
  1963. </color>
  1964. </brush>
  1965. </colorrole>
  1966. </inactive>
  1967. <disabled>
  1968. <colorrole role="Base">
  1969. <brush brushstyle="SolidPattern">
  1970. <color alpha="255">
  1971. <red>240</red>
  1972. <green>240</green>
  1973. <blue>240</blue>
  1974. </color>
  1975. </brush>
  1976. </colorrole>
  1977. </disabled>
  1978. </palette>
  1979. </property>
  1980. <property name="font">
  1981. <font>
  1982. <family>Verdana</family>
  1983. </font>
  1984. </property>
  1985. </widget>
  1986. <widget class="QLabel" name="label_16">
  1987. <property name="geometry">
  1988. <rect>
  1989. <x>50</x>
  1990. <y>180</y>
  1991. <width>41</width>
  1992. <height>21</height>
  1993. </rect>
  1994. </property>
  1995. <property name="font">
  1996. <font>
  1997. <family>Verdana</family>
  1998. <pointsize>8</pointsize>
  1999. </font>
  2000. </property>
  2001. <property name="text">
  2002. <string>Age : </string>
  2003. </property>
  2004. </widget>
  2005. <widget class="QLabel" name="label_17">
  2006. <property name="geometry">
  2007. <rect>
  2008. <x>50</x>
  2009. <y>210</y>
  2010. <width>41</width>
  2011. <height>21</height>
  2012. </rect>
  2013. </property>
  2014. <property name="font">
  2015. <font>
  2016. <family>Verdana</family>
  2017. <pointsize>8</pointsize>
  2018. </font>
  2019. </property>
  2020. <property name="text">
  2021. <string>Sexe : </string>
  2022. </property>
  2023. </widget>
  2024. <widget class="DmLineEdit" name="edc_detail_sexe">
  2025. <property name="geometry">
  2026. <rect>
  2027. <x>100</x>
  2028. <y>210</y>
  2029. <width>81</width>
  2030. <height>20</height>
  2031. </rect>
  2032. </property>
  2033. <property name="palette">
  2034. <palette>
  2035. <active>
  2036. <colorrole role="Base">
  2037. <brush brushstyle="SolidPattern">
  2038. <color alpha="255">
  2039. <red>248</red>
  2040. <green>248</green>
  2041. <blue>248</blue>
  2042. </color>
  2043. </brush>
  2044. </colorrole>
  2045. </active>
  2046. <inactive>
  2047. <colorrole role="Base">
  2048. <brush brushstyle="SolidPattern">
  2049. <color alpha="255">
  2050. <red>248</red>
  2051. <green>248</green>
  2052. <blue>248</blue>
  2053. </color>
  2054. </brush>
  2055. </colorrole>
  2056. </inactive>
  2057. <disabled>
  2058. <colorrole role="Base">
  2059. <brush brushstyle="SolidPattern">
  2060. <color alpha="255">
  2061. <red>240</red>
  2062. <green>240</green>
  2063. <blue>240</blue>
  2064. </color>
  2065. </brush>
  2066. </colorrole>
  2067. </disabled>
  2068. </palette>
  2069. </property>
  2070. <property name="font">
  2071. <font>
  2072. <family>Verdana</family>
  2073. </font>
  2074. </property>
  2075. </widget>
  2076. <widget class="DmLineEdit" name="edc_detail_yeux">
  2077. <property name="geometry">
  2078. <rect>
  2079. <x>350</x>
  2080. <y>180</y>
  2081. <width>91</width>
  2082. <height>20</height>
  2083. </rect>
  2084. </property>
  2085. <property name="palette">
  2086. <palette>
  2087. <active>
  2088. <colorrole role="Base">
  2089. <brush brushstyle="SolidPattern">
  2090. <color alpha="255">
  2091. <red>248</red>
  2092. <green>248</green>
  2093. <blue>248</blue>
  2094. </color>
  2095. </brush>
  2096. </colorrole>
  2097. </active>
  2098. <inactive>
  2099. <colorrole role="Base">
  2100. <brush brushstyle="SolidPattern">
  2101. <color alpha="255">
  2102. <red>248</red>
  2103. <green>248</green>
  2104. <blue>248</blue>
  2105. </color>
  2106. </brush>
  2107. </colorrole>
  2108. </inactive>
  2109. <disabled>
  2110. <colorrole role="Base">
  2111. <brush brushstyle="SolidPattern">
  2112. <color alpha="255">
  2113. <red>240</red>
  2114. <green>240</green>
  2115. <blue>240</blue>
  2116. </color>
  2117. </brush>
  2118. </colorrole>
  2119. </disabled>
  2120. </palette>
  2121. </property>
  2122. <property name="font">
  2123. <font>
  2124. <family>Verdana</family>
  2125. </font>
  2126. </property>
  2127. <property name="text">
  2128. <string/>
  2129. </property>
  2130. </widget>
  2131. <widget class="QLabel" name="label_37">
  2132. <property name="geometry">
  2133. <rect>
  2134. <x>240</x>
  2135. <y>180</y>
  2136. <width>71</width>
  2137. <height>21</height>
  2138. </rect>
  2139. </property>
  2140. <property name="font">
  2141. <font>
  2142. <family>Verdana</family>
  2143. <pointsize>8</pointsize>
  2144. </font>
  2145. </property>
  2146. <property name="text">
  2147. <string>Yeux :</string>
  2148. </property>
  2149. </widget>
  2150. <widget class="DmLineEdit" name="edc_detail_peau">
  2151. <property name="geometry">
  2152. <rect>
  2153. <x>350</x>
  2154. <y>210</y>
  2155. <width>91</width>
  2156. <height>20</height>
  2157. </rect>
  2158. </property>
  2159. <property name="palette">
  2160. <palette>
  2161. <active>
  2162. <colorrole role="Base">
  2163. <brush brushstyle="SolidPattern">
  2164. <color alpha="255">
  2165. <red>248</red>
  2166. <green>248</green>
  2167. <blue>248</blue>
  2168. </color>
  2169. </brush>
  2170. </colorrole>
  2171. </active>
  2172. <inactive>
  2173. <colorrole role="Base">
  2174. <brush brushstyle="SolidPattern">
  2175. <color alpha="255">
  2176. <red>248</red>
  2177. <green>248</green>
  2178. <blue>248</blue>
  2179. </color>
  2180. </brush>
  2181. </colorrole>
  2182. </inactive>
  2183. <disabled>
  2184. <colorrole role="Base">
  2185. <brush brushstyle="SolidPattern">
  2186. <color alpha="255">
  2187. <red>240</red>
  2188. <green>240</green>
  2189. <blue>240</blue>
  2190. </color>
  2191. </brush>
  2192. </colorrole>
  2193. </disabled>
  2194. </palette>
  2195. </property>
  2196. <property name="font">
  2197. <font>
  2198. <family>Verdana</family>
  2199. </font>
  2200. </property>
  2201. <property name="text">
  2202. <string/>
  2203. </property>
  2204. </widget>
  2205. <widget class="QLabel" name="label_38">
  2206. <property name="geometry">
  2207. <rect>
  2208. <x>240</x>
  2209. <y>210</y>
  2210. <width>61</width>
  2211. <height>21</height>
  2212. </rect>
  2213. </property>
  2214. <property name="font">
  2215. <font>
  2216. <family>Verdana</family>
  2217. <pointsize>8</pointsize>
  2218. </font>
  2219. </property>
  2220. <property name="text">
  2221. <string>Peau :</string>
  2222. </property>
  2223. </widget>
  2224. <widget class="QLabel" name="label_39">
  2225. <property name="geometry">
  2226. <rect>
  2227. <x>240</x>
  2228. <y>240</y>
  2229. <width>101</width>
  2230. <height>21</height>
  2231. </rect>
  2232. </property>
  2233. <property name="font">
  2234. <font>
  2235. <family>Verdana</family>
  2236. <pointsize>8</pointsize>
  2237. </font>
  2238. </property>
  2239. <property name="text">
  2240. <string>Poils /Cheveux :</string>
  2241. </property>
  2242. </widget>
  2243. <widget class="DmLineEdit" name="edc_detail_cheveux">
  2244. <property name="geometry">
  2245. <rect>
  2246. <x>350</x>
  2247. <y>240</y>
  2248. <width>91</width>
  2249. <height>20</height>
  2250. </rect>
  2251. </property>
  2252. <property name="palette">
  2253. <palette>
  2254. <active>
  2255. <colorrole role="Base">
  2256. <brush brushstyle="SolidPattern">
  2257. <color alpha="255">
  2258. <red>248</red>
  2259. <green>248</green>
  2260. <blue>248</blue>
  2261. </color>
  2262. </brush>
  2263. </colorrole>
  2264. </active>
  2265. <inactive>
  2266. <colorrole role="Base">
  2267. <brush brushstyle="SolidPattern">
  2268. <color alpha="255">
  2269. <red>248</red>
  2270. <green>248</green>
  2271. <blue>248</blue>
  2272. </color>
  2273. </brush>
  2274. </colorrole>
  2275. </inactive>
  2276. <disabled>
  2277. <colorrole role="Base">
  2278. <brush brushstyle="SolidPattern">
  2279. <color alpha="255">
  2280. <red>240</red>
  2281. <green>240</green>
  2282. <blue>240</blue>
  2283. </color>
  2284. </brush>
  2285. </colorrole>
  2286. </disabled>
  2287. </palette>
  2288. </property>
  2289. <property name="font">
  2290. <font>
  2291. <family>Verdana</family>
  2292. </font>
  2293. </property>
  2294. <property name="text">
  2295. <string/>
  2296. </property>
  2297. </widget>
  2298. <widget class="DmLineEdit" name="edc_detail_lieuNaissance">
  2299. <property name="geometry">
  2300. <rect>
  2301. <x>130</x>
  2302. <y>140</y>
  2303. <width>171</width>
  2304. <height>20</height>
  2305. </rect>
  2306. </property>
  2307. <property name="palette">
  2308. <palette>
  2309. <active>
  2310. <colorrole role="Base">
  2311. <brush brushstyle="SolidPattern">
  2312. <color alpha="255">
  2313. <red>248</red>
  2314. <green>248</green>
  2315. <blue>248</blue>
  2316. </color>
  2317. </brush>
  2318. </colorrole>
  2319. </active>
  2320. <inactive>
  2321. <colorrole role="Base">
  2322. <brush brushstyle="SolidPattern">
  2323. <color alpha="255">
  2324. <red>248</red>
  2325. <green>248</green>
  2326. <blue>248</blue>
  2327. </color>
  2328. </brush>
  2329. </colorrole>
  2330. </inactive>
  2331. <disabled>
  2332. <colorrole role="Base">
  2333. <brush brushstyle="SolidPattern">
  2334. <color alpha="255">
  2335. <red>240</red>
  2336. <green>240</green>
  2337. <blue>240</blue>
  2338. </color>
  2339. </brush>
  2340. </colorrole>
  2341. </disabled>
  2342. </palette>
  2343. </property>
  2344. <property name="font">
  2345. <font>
  2346. <family>Verdana</family>
  2347. </font>
  2348. </property>
  2349. <property name="text">
  2350. <string/>
  2351. </property>
  2352. </widget>
  2353. <widget class="QLabel" name="label_40">
  2354. <property name="geometry">
  2355. <rect>
  2356. <x>50</x>
  2357. <y>130</y>
  2358. <width>71</width>
  2359. <height>31</height>
  2360. </rect>
  2361. </property>
  2362. <property name="font">
  2363. <font>
  2364. <family>Verdana</family>
  2365. <pointsize>8</pointsize>
  2366. </font>
  2367. </property>
  2368. <property name="text">
  2369. <string>Lieu de
  2370. naissance :</string>
  2371. </property>
  2372. </widget>
  2373. <widget class="QLabel" name="label_41">
  2374. <property name="geometry">
  2375. <rect>
  2376. <x>50</x>
  2377. <y>240</y>
  2378. <width>41</width>
  2379. <height>21</height>
  2380. </rect>
  2381. </property>
  2382. <property name="font">
  2383. <font>
  2384. <family>Verdana</family>
  2385. <pointsize>8</pointsize>
  2386. </font>
  2387. </property>
  2388. <property name="text">
  2389. <string>Poids : </string>
  2390. </property>
  2391. </widget>
  2392. <widget class="DmLineEdit" name="edc_detail_poids">
  2393. <property name="geometry">
  2394. <rect>
  2395. <x>100</x>
  2396. <y>241</y>
  2397. <width>81</width>
  2398. <height>20</height>
  2399. </rect>
  2400. </property>
  2401. <property name="palette">
  2402. <palette>
  2403. <active>
  2404. <colorrole role="Base">
  2405. <brush brushstyle="SolidPattern">
  2406. <color alpha="255">
  2407. <red>248</red>
  2408. <green>248</green>
  2409. <blue>248</blue>
  2410. </color>
  2411. </brush>
  2412. </colorrole>
  2413. </active>
  2414. <inactive>
  2415. <colorrole role="Base">
  2416. <brush brushstyle="SolidPattern">
  2417. <color alpha="255">
  2418. <red>248</red>
  2419. <green>248</green>
  2420. <blue>248</blue>
  2421. </color>
  2422. </brush>
  2423. </colorrole>
  2424. </inactive>
  2425. <disabled>
  2426. <colorrole role="Base">
  2427. <brush brushstyle="SolidPattern">
  2428. <color alpha="255">
  2429. <red>240</red>
  2430. <green>240</green>
  2431. <blue>240</blue>
  2432. </color>
  2433. </brush>
  2434. </colorrole>
  2435. </disabled>
  2436. </palette>
  2437. </property>
  2438. <property name="font">
  2439. <font>
  2440. <family>Verdana</family>
  2441. </font>
  2442. </property>
  2443. </widget>
  2444. <widget class="QLabel" name="label_43">
  2445. <property name="geometry">
  2446. <rect>
  2447. <x>50</x>
  2448. <y>50</y>
  2449. <width>61</width>
  2450. <height>21</height>
  2451. </rect>
  2452. </property>
  2453. <property name="font">
  2454. <font>
  2455. <family>Verdana</family>
  2456. <pointsize>8</pointsize>
  2457. </font>
  2458. </property>
  2459. <property name="text">
  2460. <string>Espèce : </string>
  2461. </property>
  2462. </widget>
  2463. <widget class="DmLineEdit" name="edc_detail_espece">
  2464. <property name="geometry">
  2465. <rect>
  2466. <x>130</x>
  2467. <y>51</y>
  2468. <width>171</width>
  2469. <height>20</height>
  2470. </rect>
  2471. </property>
  2472. <property name="palette">
  2473. <palette>
  2474. <active>
  2475. <colorrole role="Base">
  2476. <brush brushstyle="SolidPattern">
  2477. <color alpha="255">
  2478. <red>248</red>
  2479. <green>248</green>
  2480. <blue>248</blue>
  2481. </color>
  2482. </brush>
  2483. </colorrole>
  2484. </active>
  2485. <inactive>
  2486. <colorrole role="Base">
  2487. <brush brushstyle="SolidPattern">
  2488. <color alpha="255">
  2489. <red>248</red>
  2490. <green>248</green>
  2491. <blue>248</blue>
  2492. </color>
  2493. </brush>
  2494. </colorrole>
  2495. </inactive>
  2496. <disabled>
  2497. <colorrole role="Base">
  2498. <brush brushstyle="SolidPattern">
  2499. <color alpha="255">
  2500. <red>240</red>
  2501. <green>240</green>
  2502. <blue>240</blue>
  2503. </color>
  2504. </brush>
  2505. </colorrole>
  2506. </disabled>
  2507. </palette>
  2508. </property>
  2509. <property name="font">
  2510. <font>
  2511. <family>Verdana</family>
  2512. </font>
  2513. </property>
  2514. <property name="text">
  2515. <string/>
  2516. </property>
  2517. </widget>
  2518. <widget class="QLabel" name="label_44">
  2519. <property name="geometry">
  2520. <rect>
  2521. <x>50</x>
  2522. <y>79</y>
  2523. <width>81</width>
  2524. <height>21</height>
  2525. </rect>
  2526. </property>
  2527. <property name="font">
  2528. <font>
  2529. <family>Verdana</family>
  2530. <pointsize>8</pointsize>
  2531. </font>
  2532. </property>
  2533. <property name="text">
  2534. <string>Profession : </string>
  2535. </property>
  2536. </widget>
  2537. <widget class="DmLineEdit" name="edc_detail_profession">
  2538. <property name="geometry">
  2539. <rect>
  2540. <x>130</x>
  2541. <y>80</y>
  2542. <width>171</width>
  2543. <height>20</height>
  2544. </rect>
  2545. </property>
  2546. <property name="palette">
  2547. <palette>
  2548. <active>
  2549. <colorrole role="Base">
  2550. <brush brushstyle="SolidPattern">
  2551. <color alpha="255">
  2552. <red>248</red>
  2553. <green>248</green>
  2554. <blue>248</blue>
  2555. </color>
  2556. </brush>
  2557. </colorrole>
  2558. </active>
  2559. <inactive>
  2560. <colorrole role="Base">
  2561. <brush brushstyle="SolidPattern">
  2562. <color alpha="255">
  2563. <red>248</red>
  2564. <green>248</green>
  2565. <blue>248</blue>
  2566. </color>
  2567. </brush>
  2568. </colorrole>
  2569. </inactive>
  2570. <disabled>
  2571. <colorrole role="Base">
  2572. <brush brushstyle="SolidPattern">
  2573. <color alpha="255">
  2574. <red>240</red>
  2575. <green>240</green>
  2576. <blue>240</blue>
  2577. </color>
  2578. </brush>
  2579. </colorrole>
  2580. </disabled>
  2581. </palette>
  2582. </property>
  2583. <property name="font">
  2584. <font>
  2585. <family>Verdana</family>
  2586. </font>
  2587. </property>
  2588. <property name="text">
  2589. <string/>
  2590. </property>
  2591. </widget>
  2592. <widget class="QLabel" name="label_45">
  2593. <property name="geometry">
  2594. <rect>
  2595. <x>50</x>
  2596. <y>270</y>
  2597. <width>41</width>
  2598. <height>21</height>
  2599. </rect>
  2600. </property>
  2601. <property name="font">
  2602. <font>
  2603. <family>Verdana</family>
  2604. <pointsize>8</pointsize>
  2605. </font>
  2606. </property>
  2607. <property name="text">
  2608. <string>Taille : </string>
  2609. </property>
  2610. </widget>
  2611. <widget class="DmLineEdit" name="edc_detail_taille">
  2612. <property name="geometry">
  2613. <rect>
  2614. <x>100</x>
  2615. <y>270</y>
  2616. <width>81</width>
  2617. <height>21</height>
  2618. </rect>
  2619. </property>
  2620. <property name="palette">
  2621. <palette>
  2622. <active>
  2623. <colorrole role="Base">
  2624. <brush brushstyle="SolidPattern">
  2625. <color alpha="255">
  2626. <red>248</red>
  2627. <green>248</green>
  2628. <blue>248</blue>
  2629. </color>
  2630. </brush>
  2631. </colorrole>
  2632. </active>
  2633. <inactive>
  2634. <colorrole role="Base">
  2635. <brush brushstyle="SolidPattern">
  2636. <color alpha="255">
  2637. <red>248</red>
  2638. <green>248</green>
  2639. <blue>248</blue>
  2640. </color>
  2641. </brush>
  2642. </colorrole>
  2643. </inactive>
  2644. <disabled>
  2645. <colorrole role="Base">
  2646. <brush brushstyle="SolidPattern">
  2647. <color alpha="255">
  2648. <red>240</red>
  2649. <green>240</green>
  2650. <blue>240</blue>
  2651. </color>
  2652. </brush>
  2653. </colorrole>
  2654. </disabled>
  2655. </palette>
  2656. </property>
  2657. <property name="font">
  2658. <font>
  2659. <family>Verdana</family>
  2660. </font>
  2661. </property>
  2662. <property name="text">
  2663. <string/>
  2664. </property>
  2665. </widget>
  2666. <widget class="DmLineEdit" name="edc_detail_religion">
  2667. <property name="geometry">
  2668. <rect>
  2669. <x>130</x>
  2670. <y>110</y>
  2671. <width>171</width>
  2672. <height>21</height>
  2673. </rect>
  2674. </property>
  2675. <property name="palette">
  2676. <palette>
  2677. <active>
  2678. <colorrole role="Base">
  2679. <brush brushstyle="SolidPattern">
  2680. <color alpha="255">
  2681. <red>248</red>
  2682. <green>248</green>
  2683. <blue>248</blue>
  2684. </color>
  2685. </brush>
  2686. </colorrole>
  2687. </active>
  2688. <inactive>
  2689. <colorrole role="Base">
  2690. <brush brushstyle="SolidPattern">
  2691. <color alpha="255">
  2692. <red>248</red>
  2693. <green>248</green>
  2694. <blue>248</blue>
  2695. </color>
  2696. </brush>
  2697. </colorrole>
  2698. </inactive>
  2699. <disabled>
  2700. <colorrole role="Base">
  2701. <brush brushstyle="SolidPattern">
  2702. <color alpha="255">
  2703. <red>240</red>
  2704. <green>240</green>
  2705. <blue>240</blue>
  2706. </color>
  2707. </brush>
  2708. </colorrole>
  2709. </disabled>
  2710. </palette>
  2711. </property>
  2712. <property name="font">
  2713. <font>
  2714. <family>Verdana</family>
  2715. </font>
  2716. </property>
  2717. <property name="text">
  2718. <string/>
  2719. </property>
  2720. </widget>
  2721. <widget class="QLabel" name="label_42">
  2722. <property name="geometry">
  2723. <rect>
  2724. <x>50</x>
  2725. <y>100</y>
  2726. <width>81</width>
  2727. <height>31</height>
  2728. </rect>
  2729. </property>
  2730. <property name="font">
  2731. <font>
  2732. <family>Verdana</family>
  2733. <pointsize>8</pointsize>
  2734. </font>
  2735. </property>
  2736. <property name="text">
  2737. <string>Religion /
  2738. Croyances :</string>
  2739. </property>
  2740. </widget>
  2741. <widget class="DmLineEdit" name="edc_detail_langues">
  2742. <property name="geometry">
  2743. <rect>
  2744. <x>130</x>
  2745. <y>320</y>
  2746. <width>291</width>
  2747. <height>20</height>
  2748. </rect>
  2749. </property>
  2750. <property name="palette">
  2751. <palette>
  2752. <active>
  2753. <colorrole role="Base">
  2754. <brush brushstyle="SolidPattern">
  2755. <color alpha="255">
  2756. <red>248</red>
  2757. <green>248</green>
  2758. <blue>248</blue>
  2759. </color>
  2760. </brush>
  2761. </colorrole>
  2762. </active>
  2763. <inactive>
  2764. <colorrole role="Base">
  2765. <brush brushstyle="SolidPattern">
  2766. <color alpha="255">
  2767. <red>248</red>
  2768. <green>248</green>
  2769. <blue>248</blue>
  2770. </color>
  2771. </brush>
  2772. </colorrole>
  2773. </inactive>
  2774. <disabled>
  2775. <colorrole role="Base">
  2776. <brush brushstyle="SolidPattern">
  2777. <color alpha="255">
  2778. <red>240</red>
  2779. <green>240</green>
  2780. <blue>240</blue>
  2781. </color>
  2782. </brush>
  2783. </colorrole>
  2784. </disabled>
  2785. </palette>
  2786. </property>
  2787. </widget>
  2788. <widget class="QLabel" name="label_47">
  2789. <property name="geometry">
  2790. <rect>
  2791. <x>50</x>
  2792. <y>310</y>
  2793. <width>61</width>
  2794. <height>41</height>
  2795. </rect>
  2796. </property>
  2797. <property name="font">
  2798. <font>
  2799. <family>Verdana</family>
  2800. <pointsize>8</pointsize>
  2801. </font>
  2802. </property>
  2803. <property name="text">
  2804. <string>Langues
  2805. parlées : </string>
  2806. </property>
  2807. </widget>
  2808. </widget>
  2809. </widget>
  2810. </item>
  2811. <item>
  2812. <widget class="QFrame" name="frame">
  2813. <property name="minimumSize">
  2814. <size>
  2815. <width>392</width>
  2816. <height>50</height>
  2817. </size>
  2818. </property>
  2819. <property name="maximumSize">
  2820. <size>
  2821. <width>16777215</width>
  2822. <height>50</height>
  2823. </size>
  2824. </property>
  2825. <property name="font">
  2826. <font>
  2827. <family>Verdana</family>
  2828. </font>
  2829. </property>
  2830. <property name="frameShape">
  2831. <enum>QFrame::StyledPanel</enum>
  2832. </property>
  2833. <property name="frameShadow">
  2834. <enum>QFrame::Raised</enum>
  2835. </property>
  2836. <widget class="QPushButton" name="edc_enregistrer">
  2837. <property name="enabled">
  2838. <bool>false</bool>
  2839. </property>
  2840. <property name="geometry">
  2841. <rect>
  2842. <x>370</x>
  2843. <y>10</y>
  2844. <width>111</width>
  2845. <height>31</height>
  2846. </rect>
  2847. </property>
  2848. <property name="font">
  2849. <font>
  2850. <family>Verdana</family>
  2851. <weight>75</weight>
  2852. <bold>true</bold>
  2853. </font>
  2854. </property>
  2855. <property name="text">
  2856. <string>Enregistrer</string>
  2857. </property>
  2858. </widget>
  2859. <widget class="QPushButton" name="edc_annuler">
  2860. <property name="geometry">
  2861. <rect>
  2862. <x>280</x>
  2863. <y>10</y>
  2864. <width>81</width>
  2865. <height>31</height>
  2866. </rect>
  2867. </property>
  2868. <property name="font">
  2869. <font>
  2870. <family>Verdana</family>
  2871. </font>
  2872. </property>
  2873. <property name="text">
  2874. <string>Annuler</string>
  2875. </property>
  2876. </widget>
  2877. </widget>
  2878. </item>
  2879. </layout>
  2880. </item>
  2881. </layout>
  2882. </item>
  2883. </layout>
  2884. </widget>
  2885. <customwidgets>
  2886. <customwidget>
  2887. <class>DmTableMenu</class>
  2888. <extends>QTableWidget</extends>
  2889. <header location="global">dm.h</header>
  2890. </customwidget>
  2891. <customwidget>
  2892. <class>DmLineEdit</class>
  2893. <extends>QLineEdit</extends>
  2894. <header location="global">dm.h</header>
  2895. </customwidget>
  2896. <customwidget>
  2897. <class>DmLabel</class>
  2898. <extends>QLabel</extends>
  2899. <header location="global">dm.h</header>
  2900. </customwidget>
  2901. <customwidget>
  2902. <class>DmTableInventaire</class>
  2903. <extends>QTableWidget</extends>
  2904. <header location="global">dm.h</header>
  2905. </customwidget>
  2906. <customwidget>
  2907. <class>DmTabInventaire</class>
  2908. <extends>QTabWidget</extends>
  2909. <header>dm.h</header>
  2910. <container>1</container>
  2911. </customwidget>
  2912. </customwidgets>
  2913. <resources>
  2914. <include location="ressource.qrc"/>
  2915. </resources>
  2916. <connections>
  2917. <connection>
  2918. <sender>edc_menu</sender>
  2919. <signal>cellClicked(int,int)</signal>
  2920. <receiver>edc_pages</receiver>
  2921. <slot>setCurrentIndex(int)</slot>
  2922. <hints>
  2923. <hint type="sourcelabel">
  2924. <x>80</x>
  2925. <y>164</y>
  2926. </hint>
  2927. <hint type="destinationlabel">
  2928. <x>312</x>
  2929. <y>164</y>
  2930. </hint>
  2931. </hints>
  2932. </connection>
  2933. </connections>
  2934. </ui>