editionCombattant.ui 90 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895
  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>486</height>
  14. </rect>
  15. </property>
  16. <property name="minimumSize">
  17. <size>
  18. <width>679</width>
  19. <height>484</height>
  20. </size>
  21. </property>
  22. <property name="maximumSize">
  23. <size>
  24. <width>679</width>
  25. <height>486</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>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="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="QSpinBox" 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="value">
  849. <number>9</number>
  850. </property>
  851. </widget>
  852. <widget class="QLabel" name="label_10">
  853. <property name="geometry">
  854. <rect>
  855. <x>130</x>
  856. <y>140</y>
  857. <width>101</width>
  858. <height>31</height>
  859. </rect>
  860. </property>
  861. <property name="font">
  862. <font>
  863. <family>Verdana</family>
  864. </font>
  865. </property>
  866. <property name="frameShape">
  867. <enum>QFrame::NoFrame</enum>
  868. </property>
  869. <property name="text">
  870. <string>Marche / Course</string>
  871. </property>
  872. </widget>
  873. <widget class="QSpinBox" name="edc_depNage">
  874. <property name="geometry">
  875. <rect>
  876. <x>240</x>
  877. <y>180</y>
  878. <width>51</width>
  879. <height>31</height>
  880. </rect>
  881. </property>
  882. <property name="palette">
  883. <palette>
  884. <active>
  885. <colorrole role="Base">
  886. <brush brushstyle="SolidPattern">
  887. <color alpha="255">
  888. <red>248</red>
  889. <green>248</green>
  890. <blue>248</blue>
  891. </color>
  892. </brush>
  893. </colorrole>
  894. </active>
  895. <inactive>
  896. <colorrole role="Base">
  897. <brush brushstyle="SolidPattern">
  898. <color alpha="255">
  899. <red>248</red>
  900. <green>248</green>
  901. <blue>248</blue>
  902. </color>
  903. </brush>
  904. </colorrole>
  905. </inactive>
  906. <disabled>
  907. <colorrole role="Base">
  908. <brush brushstyle="SolidPattern">
  909. <color alpha="255">
  910. <red>240</red>
  911. <green>240</green>
  912. <blue>240</blue>
  913. </color>
  914. </brush>
  915. </colorrole>
  916. </disabled>
  917. </palette>
  918. </property>
  919. <property name="font">
  920. <font>
  921. <family>Verdana</family>
  922. </font>
  923. </property>
  924. <property name="value">
  925. <number>6</number>
  926. </property>
  927. </widget>
  928. <widget class="QLabel" name="label_11">
  929. <property name="geometry">
  930. <rect>
  931. <x>130</x>
  932. <y>180</y>
  933. <width>81</width>
  934. <height>31</height>
  935. </rect>
  936. </property>
  937. <property name="font">
  938. <font>
  939. <family>Verdana</family>
  940. </font>
  941. </property>
  942. <property name="frameShape">
  943. <enum>QFrame::NoFrame</enum>
  944. </property>
  945. <property name="text">
  946. <string>Nage </string>
  947. </property>
  948. </widget>
  949. <widget class="QSpinBox" name="edc_depEscalade">
  950. <property name="geometry">
  951. <rect>
  952. <x>240</x>
  953. <y>220</y>
  954. <width>51</width>
  955. <height>31</height>
  956. </rect>
  957. </property>
  958. <property name="palette">
  959. <palette>
  960. <active>
  961. <colorrole role="Base">
  962. <brush brushstyle="SolidPattern">
  963. <color alpha="255">
  964. <red>248</red>
  965. <green>248</green>
  966. <blue>248</blue>
  967. </color>
  968. </brush>
  969. </colorrole>
  970. </active>
  971. <inactive>
  972. <colorrole role="Base">
  973. <brush brushstyle="SolidPattern">
  974. <color alpha="255">
  975. <red>248</red>
  976. <green>248</green>
  977. <blue>248</blue>
  978. </color>
  979. </brush>
  980. </colorrole>
  981. </inactive>
  982. <disabled>
  983. <colorrole role="Base">
  984. <brush brushstyle="SolidPattern">
  985. <color alpha="255">
  986. <red>240</red>
  987. <green>240</green>
  988. <blue>240</blue>
  989. </color>
  990. </brush>
  991. </colorrole>
  992. </disabled>
  993. </palette>
  994. </property>
  995. <property name="font">
  996. <font>
  997. <family>Verdana</family>
  998. </font>
  999. </property>
  1000. <property name="value">
  1001. <number>4</number>
  1002. </property>
  1003. </widget>
  1004. <widget class="QLabel" name="label_12">
  1005. <property name="geometry">
  1006. <rect>
  1007. <x>130</x>
  1008. <y>220</y>
  1009. <width>91</width>
  1010. <height>31</height>
  1011. </rect>
  1012. </property>
  1013. <property name="font">
  1014. <font>
  1015. <family>Verdana</family>
  1016. </font>
  1017. </property>
  1018. <property name="frameShape">
  1019. <enum>QFrame::NoFrame</enum>
  1020. </property>
  1021. <property name="text">
  1022. <string>Escalade </string>
  1023. </property>
  1024. </widget>
  1025. <widget class="QLabel" name="label_13">
  1026. <property name="geometry">
  1027. <rect>
  1028. <x>130</x>
  1029. <y>260</y>
  1030. <width>61</width>
  1031. <height>31</height>
  1032. </rect>
  1033. </property>
  1034. <property name="font">
  1035. <font>
  1036. <family>Verdana</family>
  1037. </font>
  1038. </property>
  1039. <property name="frameShape">
  1040. <enum>QFrame::NoFrame</enum>
  1041. </property>
  1042. <property name="text">
  1043. <string>Vol </string>
  1044. </property>
  1045. </widget>
  1046. <widget class="QSpinBox" name="edc_depVol">
  1047. <property name="geometry">
  1048. <rect>
  1049. <x>240</x>
  1050. <y>260</y>
  1051. <width>51</width>
  1052. <height>31</height>
  1053. </rect>
  1054. </property>
  1055. <property name="palette">
  1056. <palette>
  1057. <active>
  1058. <colorrole role="Base">
  1059. <brush brushstyle="SolidPattern">
  1060. <color alpha="255">
  1061. <red>248</red>
  1062. <green>248</green>
  1063. <blue>248</blue>
  1064. </color>
  1065. </brush>
  1066. </colorrole>
  1067. </active>
  1068. <inactive>
  1069. <colorrole role="Base">
  1070. <brush brushstyle="SolidPattern">
  1071. <color alpha="255">
  1072. <red>248</red>
  1073. <green>248</green>
  1074. <blue>248</blue>
  1075. </color>
  1076. </brush>
  1077. </colorrole>
  1078. </inactive>
  1079. <disabled>
  1080. <colorrole role="Base">
  1081. <brush brushstyle="SolidPattern">
  1082. <color alpha="255">
  1083. <red>240</red>
  1084. <green>240</green>
  1085. <blue>240</blue>
  1086. </color>
  1087. </brush>
  1088. </colorrole>
  1089. </disabled>
  1090. </palette>
  1091. </property>
  1092. <property name="font">
  1093. <font>
  1094. <family>Verdana</family>
  1095. </font>
  1096. </property>
  1097. </widget>
  1098. <widget class="QDoubleSpinBox" name="edc_saut">
  1099. <property name="geometry">
  1100. <rect>
  1101. <x>310</x>
  1102. <y>320</y>
  1103. <width>51</width>
  1104. <height>31</height>
  1105. </rect>
  1106. </property>
  1107. <property name="palette">
  1108. <palette>
  1109. <active>
  1110. <colorrole role="Base">
  1111. <brush brushstyle="SolidPattern">
  1112. <color alpha="255">
  1113. <red>248</red>
  1114. <green>248</green>
  1115. <blue>248</blue>
  1116. </color>
  1117. </brush>
  1118. </colorrole>
  1119. </active>
  1120. <inactive>
  1121. <colorrole role="Base">
  1122. <brush brushstyle="SolidPattern">
  1123. <color alpha="255">
  1124. <red>248</red>
  1125. <green>248</green>
  1126. <blue>248</blue>
  1127. </color>
  1128. </brush>
  1129. </colorrole>
  1130. </inactive>
  1131. <disabled>
  1132. <colorrole role="Base">
  1133. <brush brushstyle="SolidPattern">
  1134. <color alpha="255">
  1135. <red>240</red>
  1136. <green>240</green>
  1137. <blue>240</blue>
  1138. </color>
  1139. </brush>
  1140. </colorrole>
  1141. </disabled>
  1142. </palette>
  1143. </property>
  1144. <property name="font">
  1145. <font>
  1146. <family>Verdana</family>
  1147. </font>
  1148. </property>
  1149. <property name="prefix">
  1150. <string/>
  1151. </property>
  1152. <property name="decimals">
  1153. <number>0</number>
  1154. </property>
  1155. <property name="singleStep">
  1156. <double>1.000000000000000</double>
  1157. </property>
  1158. <property name="value">
  1159. <double>5.000000000000000</double>
  1160. </property>
  1161. </widget>
  1162. <widget class="QLabel" name="label_14">
  1163. <property name="geometry">
  1164. <rect>
  1165. <x>70</x>
  1166. <y>320</y>
  1167. <width>231</width>
  1168. <height>31</height>
  1169. </rect>
  1170. </property>
  1171. <property name="font">
  1172. <font>
  1173. <family>Verdana</family>
  1174. </font>
  1175. </property>
  1176. <property name="frameShape">
  1177. <enum>QFrame::NoFrame</enum>
  1178. </property>
  1179. <property name="text">
  1180. <string>Hauteur maximum pour les sauts : </string>
  1181. </property>
  1182. </widget>
  1183. <widget class="QLabel" name="label_2">
  1184. <property name="geometry">
  1185. <rect>
  1186. <x>80</x>
  1187. <y>140</y>
  1188. <width>31</width>
  1189. <height>31</height>
  1190. </rect>
  1191. </property>
  1192. <property name="text">
  1193. <string/>
  1194. </property>
  1195. <property name="pixmap">
  1196. <pixmap resource="ressource.qrc">:/interface/16/ressource/marche_16.png</pixmap>
  1197. </property>
  1198. <property name="scaledContents">
  1199. <bool>false</bool>
  1200. </property>
  1201. <property name="alignment">
  1202. <set>Qt::AlignCenter</set>
  1203. </property>
  1204. </widget>
  1205. <widget class="QLabel" name="label_3">
  1206. <property name="geometry">
  1207. <rect>
  1208. <x>80</x>
  1209. <y>180</y>
  1210. <width>31</width>
  1211. <height>31</height>
  1212. </rect>
  1213. </property>
  1214. <property name="text">
  1215. <string/>
  1216. </property>
  1217. <property name="pixmap">
  1218. <pixmap resource="ressource.qrc">:/interface/24/ressource/nage_24.png</pixmap>
  1219. </property>
  1220. <property name="scaledContents">
  1221. <bool>false</bool>
  1222. </property>
  1223. </widget>
  1224. <widget class="QLabel" name="label_4">
  1225. <property name="geometry">
  1226. <rect>
  1227. <x>80</x>
  1228. <y>220</y>
  1229. <width>31</width>
  1230. <height>31</height>
  1231. </rect>
  1232. </property>
  1233. <property name="text">
  1234. <string/>
  1235. </property>
  1236. <property name="pixmap">
  1237. <pixmap resource="ressource.qrc">:/interface/24/ressource/escalade_24.png</pixmap>
  1238. </property>
  1239. <property name="scaledContents">
  1240. <bool>false</bool>
  1241. </property>
  1242. </widget>
  1243. <widget class="QLabel" name="label_5">
  1244. <property name="geometry">
  1245. <rect>
  1246. <x>80</x>
  1247. <y>260</y>
  1248. <width>31</width>
  1249. <height>31</height>
  1250. </rect>
  1251. </property>
  1252. <property name="text">
  1253. <string/>
  1254. </property>
  1255. <property name="pixmap">
  1256. <pixmap resource="ressource.qrc">:/interface/24/ressource/plume_24.png</pixmap>
  1257. </property>
  1258. <property name="scaledContents">
  1259. <bool>false</bool>
  1260. </property>
  1261. </widget>
  1262. <widget class="QSpinBox" name="edc_taille">
  1263. <property name="geometry">
  1264. <rect>
  1265. <x>310</x>
  1266. <y>60</y>
  1267. <width>51</width>
  1268. <height>31</height>
  1269. </rect>
  1270. </property>
  1271. <property name="palette">
  1272. <palette>
  1273. <active>
  1274. <colorrole role="Base">
  1275. <brush brushstyle="SolidPattern">
  1276. <color alpha="255">
  1277. <red>248</red>
  1278. <green>248</green>
  1279. <blue>248</blue>
  1280. </color>
  1281. </brush>
  1282. </colorrole>
  1283. </active>
  1284. <inactive>
  1285. <colorrole role="Base">
  1286. <brush brushstyle="SolidPattern">
  1287. <color alpha="255">
  1288. <red>248</red>
  1289. <green>248</green>
  1290. <blue>248</blue>
  1291. </color>
  1292. </brush>
  1293. </colorrole>
  1294. </inactive>
  1295. <disabled>
  1296. <colorrole role="Base">
  1297. <brush brushstyle="SolidPattern">
  1298. <color alpha="255">
  1299. <red>240</red>
  1300. <green>240</green>
  1301. <blue>240</blue>
  1302. </color>
  1303. </brush>
  1304. </colorrole>
  1305. </disabled>
  1306. </palette>
  1307. </property>
  1308. <property name="font">
  1309. <font>
  1310. <family>Verdana</family>
  1311. </font>
  1312. </property>
  1313. <property name="minimum">
  1314. <number>1</number>
  1315. </property>
  1316. </widget>
  1317. <widget class="QLabel" name="label_15">
  1318. <property name="geometry">
  1319. <rect>
  1320. <x>70</x>
  1321. <y>60</y>
  1322. <width>231</width>
  1323. <height>31</height>
  1324. </rect>
  1325. </property>
  1326. <property name="font">
  1327. <font>
  1328. <family>Verdana</family>
  1329. </font>
  1330. </property>
  1331. <property name="frameShape">
  1332. <enum>QFrame::NoFrame</enum>
  1333. </property>
  1334. <property name="text">
  1335. <string>Taille de la créature (en cases) : </string>
  1336. </property>
  1337. </widget>
  1338. </widget>
  1339. <widget class="QWidget" name="page_attr">
  1340. <widget class="QScrollArea" name="edc_deroulementAttributs">
  1341. <property name="geometry">
  1342. <rect>
  1343. <x>10</x>
  1344. <y>10</y>
  1345. <width>231</width>
  1346. <height>411</height>
  1347. </rect>
  1348. </property>
  1349. <property name="frameShape">
  1350. <enum>QFrame::StyledPanel</enum>
  1351. </property>
  1352. <property name="frameShadow">
  1353. <enum>QFrame::Raised</enum>
  1354. </property>
  1355. <property name="widgetResizable">
  1356. <bool>true</bool>
  1357. </property>
  1358. <widget class="QWidget" name="scrollAreaWidgetContents_2">
  1359. <property name="geometry">
  1360. <rect>
  1361. <x>0</x>
  1362. <y>0</y>
  1363. <width>229</width>
  1364. <height>409</height>
  1365. </rect>
  1366. </property>
  1367. <layout class="QVBoxLayout" name="edc_deroulementAttributs_layout">
  1368. <property name="spacing">
  1369. <number>1</number>
  1370. </property>
  1371. <property name="leftMargin">
  1372. <number>3</number>
  1373. </property>
  1374. <property name="topMargin">
  1375. <number>3</number>
  1376. </property>
  1377. <property name="rightMargin">
  1378. <number>3</number>
  1379. </property>
  1380. <property name="bottomMargin">
  1381. <number>3</number>
  1382. </property>
  1383. </layout>
  1384. </widget>
  1385. </widget>
  1386. <widget class="QTextEdit" name="edc_notes">
  1387. <property name="geometry">
  1388. <rect>
  1389. <x>270</x>
  1390. <y>30</y>
  1391. <width>181</width>
  1392. <height>391</height>
  1393. </rect>
  1394. </property>
  1395. <property name="palette">
  1396. <palette>
  1397. <active>
  1398. <colorrole role="Base">
  1399. <brush brushstyle="SolidPattern">
  1400. <color alpha="255">
  1401. <red>248</red>
  1402. <green>248</green>
  1403. <blue>248</blue>
  1404. </color>
  1405. </brush>
  1406. </colorrole>
  1407. </active>
  1408. <inactive>
  1409. <colorrole role="Base">
  1410. <brush brushstyle="SolidPattern">
  1411. <color alpha="255">
  1412. <red>248</red>
  1413. <green>248</green>
  1414. <blue>248</blue>
  1415. </color>
  1416. </brush>
  1417. </colorrole>
  1418. </inactive>
  1419. <disabled>
  1420. <colorrole role="Base">
  1421. <brush brushstyle="SolidPattern">
  1422. <color alpha="255">
  1423. <red>240</red>
  1424. <green>240</green>
  1425. <blue>240</blue>
  1426. </color>
  1427. </brush>
  1428. </colorrole>
  1429. </disabled>
  1430. </palette>
  1431. </property>
  1432. <property name="font">
  1433. <font>
  1434. <family>Verdana</family>
  1435. </font>
  1436. </property>
  1437. </widget>
  1438. <widget class="QLabel" name="label_23">
  1439. <property name="geometry">
  1440. <rect>
  1441. <x>280</x>
  1442. <y>9</y>
  1443. <width>141</width>
  1444. <height>21</height>
  1445. </rect>
  1446. </property>
  1447. <property name="font">
  1448. <font>
  1449. <family>Verdana</family>
  1450. <italic>true</italic>
  1451. </font>
  1452. </property>
  1453. <property name="text">
  1454. <string>Autre :</string>
  1455. </property>
  1456. </widget>
  1457. </widget>
  1458. <widget class="QWidget" name="page_att">
  1459. <widget class="QScrollArea" name="edc_deroulementAttaques">
  1460. <property name="geometry">
  1461. <rect>
  1462. <x>0</x>
  1463. <y>0</y>
  1464. <width>491</width>
  1465. <height>431</height>
  1466. </rect>
  1467. </property>
  1468. <property name="widgetResizable">
  1469. <bool>true</bool>
  1470. </property>
  1471. <widget class="QWidget" name="scrollAreaWidgetContents">
  1472. <property name="geometry">
  1473. <rect>
  1474. <x>0</x>
  1475. <y>0</y>
  1476. <width>489</width>
  1477. <height>429</height>
  1478. </rect>
  1479. </property>
  1480. <layout class="QVBoxLayout" name="edc_deroulementAttaques_layout">
  1481. <property name="spacing">
  1482. <number>1</number>
  1483. </property>
  1484. <property name="leftMargin">
  1485. <number>3</number>
  1486. </property>
  1487. <property name="topMargin">
  1488. <number>3</number>
  1489. </property>
  1490. <property name="rightMargin">
  1491. <number>3</number>
  1492. </property>
  1493. <property name="bottomMargin">
  1494. <number>3</number>
  1495. </property>
  1496. </layout>
  1497. </widget>
  1498. </widget>
  1499. </widget>
  1500. <widget class="QWidget" name="page_invent">
  1501. <widget class="DmTableInventaire" name="edc_listeInventaire">
  1502. <property name="geometry">
  1503. <rect>
  1504. <x>0</x>
  1505. <y>29</y>
  1506. <width>491</width>
  1507. <height>368</height>
  1508. </rect>
  1509. </property>
  1510. <property name="palette">
  1511. <palette>
  1512. <active>
  1513. <colorrole role="Base">
  1514. <brush brushstyle="SolidPattern">
  1515. <color alpha="255">
  1516. <red>248</red>
  1517. <green>248</green>
  1518. <blue>248</blue>
  1519. </color>
  1520. </brush>
  1521. </colorrole>
  1522. </active>
  1523. <inactive>
  1524. <colorrole role="Base">
  1525. <brush brushstyle="SolidPattern">
  1526. <color alpha="255">
  1527. <red>248</red>
  1528. <green>248</green>
  1529. <blue>248</blue>
  1530. </color>
  1531. </brush>
  1532. </colorrole>
  1533. </inactive>
  1534. <disabled>
  1535. <colorrole role="Base">
  1536. <brush brushstyle="SolidPattern">
  1537. <color alpha="255">
  1538. <red>240</red>
  1539. <green>240</green>
  1540. <blue>240</blue>
  1541. </color>
  1542. </brush>
  1543. </colorrole>
  1544. </disabled>
  1545. </palette>
  1546. </property>
  1547. <property name="font">
  1548. <font>
  1549. <family>Verdana</family>
  1550. </font>
  1551. </property>
  1552. <property name="frameShape">
  1553. <enum>QFrame::WinPanel</enum>
  1554. </property>
  1555. <property name="verticalScrollBarPolicy">
  1556. <enum>Qt::ScrollBarAsNeeded</enum>
  1557. </property>
  1558. <property name="horizontalScrollBarPolicy">
  1559. <enum>Qt::ScrollBarAlwaysOff</enum>
  1560. </property>
  1561. <property name="editTriggers">
  1562. <set>QAbstractItemView::NoEditTriggers</set>
  1563. </property>
  1564. <property name="alternatingRowColors">
  1565. <bool>false</bool>
  1566. </property>
  1567. <property name="selectionMode">
  1568. <enum>QAbstractItemView::NoSelection</enum>
  1569. </property>
  1570. <property name="selectionBehavior">
  1571. <enum>QAbstractItemView::SelectRows</enum>
  1572. </property>
  1573. <property name="showGrid">
  1574. <bool>true</bool>
  1575. </property>
  1576. <property name="gridStyle">
  1577. <enum>Qt::SolidLine</enum>
  1578. </property>
  1579. <property name="sortingEnabled">
  1580. <bool>true</bool>
  1581. </property>
  1582. <attribute name="horizontalHeaderVisible">
  1583. <bool>false</bool>
  1584. </attribute>
  1585. <attribute name="horizontalHeaderCascadingSectionResizes">
  1586. <bool>false</bool>
  1587. </attribute>
  1588. <attribute name="horizontalHeaderDefaultSectionSize">
  1589. <number>60</number>
  1590. </attribute>
  1591. <attribute name="horizontalHeaderMinimumSectionSize">
  1592. <number>32</number>
  1593. </attribute>
  1594. <attribute name="verticalHeaderVisible">
  1595. <bool>false</bool>
  1596. </attribute>
  1597. <attribute name="verticalHeaderDefaultSectionSize">
  1598. <number>18</number>
  1599. </attribute>
  1600. <attribute name="verticalHeaderMinimumSectionSize">
  1601. <number>14</number>
  1602. </attribute>
  1603. <row>
  1604. <property name="text">
  1605. <string>Nouvelle ligne</string>
  1606. </property>
  1607. </row>
  1608. <column>
  1609. <property name="text">
  1610. <string>Type</string>
  1611. </property>
  1612. <property name="font">
  1613. <font>
  1614. <family>Verdana</family>
  1615. <pointsize>7</pointsize>
  1616. <weight>75</weight>
  1617. <bold>true</bold>
  1618. </font>
  1619. </property>
  1620. </column>
  1621. <column>
  1622. <property name="text">
  1623. <string>Quantité</string>
  1624. </property>
  1625. <property name="font">
  1626. <font>
  1627. <family>Verdana</family>
  1628. <pointsize>7</pointsize>
  1629. <weight>75</weight>
  1630. <bold>true</bold>
  1631. </font>
  1632. </property>
  1633. </column>
  1634. <column>
  1635. <property name="text">
  1636. <string>Objet</string>
  1637. </property>
  1638. <property name="font">
  1639. <font>
  1640. <family>Verdana</family>
  1641. <pointsize>7</pointsize>
  1642. <weight>75</weight>
  1643. <italic>false</italic>
  1644. <bold>true</bold>
  1645. </font>
  1646. </property>
  1647. </column>
  1648. <column>
  1649. <property name="text">
  1650. <string/>
  1651. </property>
  1652. <property name="font">
  1653. <font>
  1654. <family>Verdana</family>
  1655. <pointsize>7</pointsize>
  1656. <weight>75</weight>
  1657. <bold>true</bold>
  1658. </font>
  1659. </property>
  1660. <property name="icon">
  1661. <iconset>
  1662. <normaloff>../../img/poids.png</normaloff>../../img/poids.png</iconset>
  1663. </property>
  1664. </column>
  1665. <column>
  1666. <property name="text">
  1667. <string>...</string>
  1668. </property>
  1669. <property name="font">
  1670. <font>
  1671. <family>Verdana</family>
  1672. <pointsize>7</pointsize>
  1673. <weight>75</weight>
  1674. <bold>true</bold>
  1675. </font>
  1676. </property>
  1677. </column>
  1678. <item row="0" column="0">
  1679. <property name="text">
  1680. <string>*</string>
  1681. </property>
  1682. <property name="font">
  1683. <font>
  1684. <weight>50</weight>
  1685. <bold>false</bold>
  1686. </font>
  1687. </property>
  1688. <property name="textAlignment">
  1689. <set>AlignHCenter|AlignVCenter|AlignCenter</set>
  1690. </property>
  1691. <property name="flags">
  1692. <set>ItemIsSelectable|ItemIsDragEnabled|ItemIsDropEnabled|ItemIsEnabled</set>
  1693. </property>
  1694. </item>
  1695. <item row="0" column="1">
  1696. <property name="text">
  1697. <string/>
  1698. </property>
  1699. <property name="flags">
  1700. <set>ItemIsSelectable|ItemIsDragEnabled|ItemIsDropEnabled|ItemIsUserCheckable|ItemIsEnabled</set>
  1701. </property>
  1702. </item>
  1703. <item row="0" column="2">
  1704. <property name="text">
  1705. <string>(Cliquer pour ajouter un item)</string>
  1706. </property>
  1707. <property name="font">
  1708. <font>
  1709. <family>Verdana</family>
  1710. <pointsize>8</pointsize>
  1711. <italic>true</italic>
  1712. </font>
  1713. </property>
  1714. <property name="flags">
  1715. <set>ItemIsSelectable|ItemIsDragEnabled|ItemIsDropEnabled|ItemIsUserCheckable|ItemIsEnabled</set>
  1716. </property>
  1717. </item>
  1718. <item row="0" column="3">
  1719. <property name="text">
  1720. <string/>
  1721. </property>
  1722. <property name="flags">
  1723. <set>ItemIsSelectable|ItemIsDragEnabled|ItemIsDropEnabled|ItemIsUserCheckable|ItemIsEnabled</set>
  1724. </property>
  1725. </item>
  1726. <item row="0" column="4">
  1727. <property name="text">
  1728. <string/>
  1729. </property>
  1730. <property name="flags">
  1731. <set>ItemIsSelectable|ItemIsDragEnabled|ItemIsDropEnabled|ItemIsUserCheckable|ItemIsEnabled</set>
  1732. </property>
  1733. </item>
  1734. </widget>
  1735. <widget class="QLabel" name="label">
  1736. <property name="geometry">
  1737. <rect>
  1738. <x>10</x>
  1739. <y>400</y>
  1740. <width>151</width>
  1741. <height>21</height>
  1742. </rect>
  1743. </property>
  1744. <property name="font">
  1745. <font>
  1746. <italic>true</italic>
  1747. </font>
  1748. </property>
  1749. <property name="text">
  1750. <string>Poids total transporté :</string>
  1751. </property>
  1752. </widget>
  1753. <widget class="DmLabel" name="edc_inventaire_poids">
  1754. <property name="geometry">
  1755. <rect>
  1756. <x>150</x>
  1757. <y>400</y>
  1758. <width>61</width>
  1759. <height>20</height>
  1760. </rect>
  1761. </property>
  1762. <property name="font">
  1763. <font>
  1764. <italic>true</italic>
  1765. </font>
  1766. </property>
  1767. <property name="text">
  1768. <string>... kg</string>
  1769. </property>
  1770. </widget>
  1771. <widget class="DmTabInventaire" name="edc_filtreTypeObjet">
  1772. <property name="geometry">
  1773. <rect>
  1774. <x>0</x>
  1775. <y>5</y>
  1776. <width>491</width>
  1777. <height>28</height>
  1778. </rect>
  1779. </property>
  1780. <property name="palette">
  1781. <palette>
  1782. <active>
  1783. <colorrole role="Base">
  1784. <brush brushstyle="SolidPattern">
  1785. <color alpha="100">
  1786. <red>170</red>
  1787. <green>0</green>
  1788. <blue>0</blue>
  1789. </color>
  1790. </brush>
  1791. </colorrole>
  1792. </active>
  1793. <inactive>
  1794. <colorrole role="Base">
  1795. <brush brushstyle="SolidPattern">
  1796. <color alpha="100">
  1797. <red>170</red>
  1798. <green>0</green>
  1799. <blue>0</blue>
  1800. </color>
  1801. </brush>
  1802. </colorrole>
  1803. </inactive>
  1804. <disabled>
  1805. <colorrole role="Base">
  1806. <brush brushstyle="SolidPattern">
  1807. <color alpha="255">
  1808. <red>240</red>
  1809. <green>240</green>
  1810. <blue>240</blue>
  1811. </color>
  1812. </brush>
  1813. </colorrole>
  1814. </disabled>
  1815. </palette>
  1816. </property>
  1817. <property name="font">
  1818. <font>
  1819. <stylestrategy>PreferAntialias</stylestrategy>
  1820. </font>
  1821. </property>
  1822. <property name="tabShape">
  1823. <enum>QTabWidget::Rounded</enum>
  1824. </property>
  1825. <property name="currentIndex">
  1826. <number>0</number>
  1827. </property>
  1828. <property name="iconSize">
  1829. <size>
  1830. <width>19</width>
  1831. <height>21</height>
  1832. </size>
  1833. </property>
  1834. <widget class="QWidget" name="filtre_tout">
  1835. <attribute name="icon">
  1836. <iconset resource="ressource.qrc">
  1837. <normaloff>:/interface/32/ressource/etoile_32.png</normaloff>:/interface/32/ressource/etoile_32.png</iconset>
  1838. </attribute>
  1839. <attribute name="title">
  1840. <string/>
  1841. </attribute>
  1842. </widget>
  1843. <widget class="QWidget" name="filtre_0">
  1844. <attribute name="icon">
  1845. <iconset resource="ressource.qrc">
  1846. <normaloff>:/interface/32/ressource/pieces_32.png</normaloff>:/interface/32/ressource/pieces_32.png</iconset>
  1847. </attribute>
  1848. <attribute name="title">
  1849. <string/>
  1850. </attribute>
  1851. </widget>
  1852. <widget class="QWidget" name="filtre_1">
  1853. <attribute name="icon">
  1854. <iconset resource="ressource.qrc">
  1855. <normaloff>:/interface/32/ressource/armes_32.png</normaloff>:/interface/32/ressource/armes_32.png</iconset>
  1856. </attribute>
  1857. <attribute name="title">
  1858. <string/>
  1859. </attribute>
  1860. </widget>
  1861. <widget class="QWidget" name="filtre_2">
  1862. <attribute name="icon">
  1863. <iconset resource="ressource.qrc">
  1864. <normaloff>:/interface/32/ressource/chimie_32.png</normaloff>:/interface/32/ressource/chimie_32.png</iconset>
  1865. </attribute>
  1866. <attribute name="title">
  1867. <string/>
  1868. </attribute>
  1869. </widget>
  1870. <widget class="QWidget" name="filtre_3">
  1871. <attribute name="icon">
  1872. <iconset resource="ressource.qrc">
  1873. <normaloff>:/interface/32/ressource/diamant_32.png</normaloff>:/interface/32/ressource/diamant_32.png</iconset>
  1874. </attribute>
  1875. <attribute name="title">
  1876. <string/>
  1877. </attribute>
  1878. </widget>
  1879. <widget class="QWidget" name="filtre_4">
  1880. <attribute name="icon">
  1881. <iconset resource="ressource.qrc">
  1882. <normaloff>:/interface/32/ressource/boiteOutils_32.png</normaloff>:/interface/32/ressource/boiteOutils_32.png</iconset>
  1883. </attribute>
  1884. <attribute name="title">
  1885. <string/>
  1886. </attribute>
  1887. </widget>
  1888. </widget>
  1889. <zorder>edc_filtreTypeObjet</zorder>
  1890. <zorder>edc_listeInventaire</zorder>
  1891. <zorder>label</zorder>
  1892. <zorder>edc_inventaire_poids</zorder>
  1893. </widget>
  1894. <widget class="QWidget" name="page_notes">
  1895. <widget class="DmLineEdit" name="edc_detail_age">
  1896. <property name="geometry">
  1897. <rect>
  1898. <x>100</x>
  1899. <y>181</y>
  1900. <width>81</width>
  1901. <height>20</height>
  1902. </rect>
  1903. </property>
  1904. <property name="palette">
  1905. <palette>
  1906. <active>
  1907. <colorrole role="Base">
  1908. <brush brushstyle="SolidPattern">
  1909. <color alpha="255">
  1910. <red>248</red>
  1911. <green>248</green>
  1912. <blue>248</blue>
  1913. </color>
  1914. </brush>
  1915. </colorrole>
  1916. </active>
  1917. <inactive>
  1918. <colorrole role="Base">
  1919. <brush brushstyle="SolidPattern">
  1920. <color alpha="255">
  1921. <red>248</red>
  1922. <green>248</green>
  1923. <blue>248</blue>
  1924. </color>
  1925. </brush>
  1926. </colorrole>
  1927. </inactive>
  1928. <disabled>
  1929. <colorrole role="Base">
  1930. <brush brushstyle="SolidPattern">
  1931. <color alpha="255">
  1932. <red>240</red>
  1933. <green>240</green>
  1934. <blue>240</blue>
  1935. </color>
  1936. </brush>
  1937. </colorrole>
  1938. </disabled>
  1939. </palette>
  1940. </property>
  1941. <property name="font">
  1942. <font>
  1943. <family>Verdana</family>
  1944. </font>
  1945. </property>
  1946. </widget>
  1947. <widget class="QLabel" name="label_16">
  1948. <property name="geometry">
  1949. <rect>
  1950. <x>50</x>
  1951. <y>180</y>
  1952. <width>41</width>
  1953. <height>21</height>
  1954. </rect>
  1955. </property>
  1956. <property name="font">
  1957. <font>
  1958. <family>Verdana</family>
  1959. <pointsize>8</pointsize>
  1960. </font>
  1961. </property>
  1962. <property name="text">
  1963. <string>Age : </string>
  1964. </property>
  1965. </widget>
  1966. <widget class="QLabel" name="label_17">
  1967. <property name="geometry">
  1968. <rect>
  1969. <x>50</x>
  1970. <y>210</y>
  1971. <width>41</width>
  1972. <height>21</height>
  1973. </rect>
  1974. </property>
  1975. <property name="font">
  1976. <font>
  1977. <family>Verdana</family>
  1978. <pointsize>8</pointsize>
  1979. </font>
  1980. </property>
  1981. <property name="text">
  1982. <string>Sexe : </string>
  1983. </property>
  1984. </widget>
  1985. <widget class="DmLineEdit" name="edc_detail_sexe">
  1986. <property name="geometry">
  1987. <rect>
  1988. <x>100</x>
  1989. <y>210</y>
  1990. <width>81</width>
  1991. <height>20</height>
  1992. </rect>
  1993. </property>
  1994. <property name="palette">
  1995. <palette>
  1996. <active>
  1997. <colorrole role="Base">
  1998. <brush brushstyle="SolidPattern">
  1999. <color alpha="255">
  2000. <red>248</red>
  2001. <green>248</green>
  2002. <blue>248</blue>
  2003. </color>
  2004. </brush>
  2005. </colorrole>
  2006. </active>
  2007. <inactive>
  2008. <colorrole role="Base">
  2009. <brush brushstyle="SolidPattern">
  2010. <color alpha="255">
  2011. <red>248</red>
  2012. <green>248</green>
  2013. <blue>248</blue>
  2014. </color>
  2015. </brush>
  2016. </colorrole>
  2017. </inactive>
  2018. <disabled>
  2019. <colorrole role="Base">
  2020. <brush brushstyle="SolidPattern">
  2021. <color alpha="255">
  2022. <red>240</red>
  2023. <green>240</green>
  2024. <blue>240</blue>
  2025. </color>
  2026. </brush>
  2027. </colorrole>
  2028. </disabled>
  2029. </palette>
  2030. </property>
  2031. <property name="font">
  2032. <font>
  2033. <family>Verdana</family>
  2034. </font>
  2035. </property>
  2036. </widget>
  2037. <widget class="DmLineEdit" name="edc_detail_yeux">
  2038. <property name="geometry">
  2039. <rect>
  2040. <x>350</x>
  2041. <y>180</y>
  2042. <width>91</width>
  2043. <height>20</height>
  2044. </rect>
  2045. </property>
  2046. <property name="palette">
  2047. <palette>
  2048. <active>
  2049. <colorrole role="Base">
  2050. <brush brushstyle="SolidPattern">
  2051. <color alpha="255">
  2052. <red>248</red>
  2053. <green>248</green>
  2054. <blue>248</blue>
  2055. </color>
  2056. </brush>
  2057. </colorrole>
  2058. </active>
  2059. <inactive>
  2060. <colorrole role="Base">
  2061. <brush brushstyle="SolidPattern">
  2062. <color alpha="255">
  2063. <red>248</red>
  2064. <green>248</green>
  2065. <blue>248</blue>
  2066. </color>
  2067. </brush>
  2068. </colorrole>
  2069. </inactive>
  2070. <disabled>
  2071. <colorrole role="Base">
  2072. <brush brushstyle="SolidPattern">
  2073. <color alpha="255">
  2074. <red>240</red>
  2075. <green>240</green>
  2076. <blue>240</blue>
  2077. </color>
  2078. </brush>
  2079. </colorrole>
  2080. </disabled>
  2081. </palette>
  2082. </property>
  2083. <property name="font">
  2084. <font>
  2085. <family>Verdana</family>
  2086. </font>
  2087. </property>
  2088. <property name="text">
  2089. <string/>
  2090. </property>
  2091. </widget>
  2092. <widget class="QLabel" name="label_37">
  2093. <property name="geometry">
  2094. <rect>
  2095. <x>240</x>
  2096. <y>180</y>
  2097. <width>71</width>
  2098. <height>21</height>
  2099. </rect>
  2100. </property>
  2101. <property name="font">
  2102. <font>
  2103. <family>Verdana</family>
  2104. <pointsize>8</pointsize>
  2105. </font>
  2106. </property>
  2107. <property name="text">
  2108. <string>Yeux :</string>
  2109. </property>
  2110. </widget>
  2111. <widget class="DmLineEdit" name="edc_detail_peau">
  2112. <property name="geometry">
  2113. <rect>
  2114. <x>350</x>
  2115. <y>210</y>
  2116. <width>91</width>
  2117. <height>20</height>
  2118. </rect>
  2119. </property>
  2120. <property name="palette">
  2121. <palette>
  2122. <active>
  2123. <colorrole role="Base">
  2124. <brush brushstyle="SolidPattern">
  2125. <color alpha="255">
  2126. <red>248</red>
  2127. <green>248</green>
  2128. <blue>248</blue>
  2129. </color>
  2130. </brush>
  2131. </colorrole>
  2132. </active>
  2133. <inactive>
  2134. <colorrole role="Base">
  2135. <brush brushstyle="SolidPattern">
  2136. <color alpha="255">
  2137. <red>248</red>
  2138. <green>248</green>
  2139. <blue>248</blue>
  2140. </color>
  2141. </brush>
  2142. </colorrole>
  2143. </inactive>
  2144. <disabled>
  2145. <colorrole role="Base">
  2146. <brush brushstyle="SolidPattern">
  2147. <color alpha="255">
  2148. <red>240</red>
  2149. <green>240</green>
  2150. <blue>240</blue>
  2151. </color>
  2152. </brush>
  2153. </colorrole>
  2154. </disabled>
  2155. </palette>
  2156. </property>
  2157. <property name="font">
  2158. <font>
  2159. <family>Verdana</family>
  2160. </font>
  2161. </property>
  2162. <property name="text">
  2163. <string/>
  2164. </property>
  2165. </widget>
  2166. <widget class="QLabel" name="label_38">
  2167. <property name="geometry">
  2168. <rect>
  2169. <x>240</x>
  2170. <y>210</y>
  2171. <width>61</width>
  2172. <height>21</height>
  2173. </rect>
  2174. </property>
  2175. <property name="font">
  2176. <font>
  2177. <family>Verdana</family>
  2178. <pointsize>8</pointsize>
  2179. </font>
  2180. </property>
  2181. <property name="text">
  2182. <string>Peau :</string>
  2183. </property>
  2184. </widget>
  2185. <widget class="QLabel" name="label_39">
  2186. <property name="geometry">
  2187. <rect>
  2188. <x>240</x>
  2189. <y>240</y>
  2190. <width>101</width>
  2191. <height>21</height>
  2192. </rect>
  2193. </property>
  2194. <property name="font">
  2195. <font>
  2196. <family>Verdana</family>
  2197. <pointsize>8</pointsize>
  2198. </font>
  2199. </property>
  2200. <property name="text">
  2201. <string>Poils /Cheveux :</string>
  2202. </property>
  2203. </widget>
  2204. <widget class="DmLineEdit" name="edc_detail_cheveux">
  2205. <property name="geometry">
  2206. <rect>
  2207. <x>350</x>
  2208. <y>240</y>
  2209. <width>91</width>
  2210. <height>20</height>
  2211. </rect>
  2212. </property>
  2213. <property name="palette">
  2214. <palette>
  2215. <active>
  2216. <colorrole role="Base">
  2217. <brush brushstyle="SolidPattern">
  2218. <color alpha="255">
  2219. <red>248</red>
  2220. <green>248</green>
  2221. <blue>248</blue>
  2222. </color>
  2223. </brush>
  2224. </colorrole>
  2225. </active>
  2226. <inactive>
  2227. <colorrole role="Base">
  2228. <brush brushstyle="SolidPattern">
  2229. <color alpha="255">
  2230. <red>248</red>
  2231. <green>248</green>
  2232. <blue>248</blue>
  2233. </color>
  2234. </brush>
  2235. </colorrole>
  2236. </inactive>
  2237. <disabled>
  2238. <colorrole role="Base">
  2239. <brush brushstyle="SolidPattern">
  2240. <color alpha="255">
  2241. <red>240</red>
  2242. <green>240</green>
  2243. <blue>240</blue>
  2244. </color>
  2245. </brush>
  2246. </colorrole>
  2247. </disabled>
  2248. </palette>
  2249. </property>
  2250. <property name="font">
  2251. <font>
  2252. <family>Verdana</family>
  2253. </font>
  2254. </property>
  2255. <property name="text">
  2256. <string/>
  2257. </property>
  2258. </widget>
  2259. <widget class="DmLineEdit" name="edc_detail_lieuNaissance">
  2260. <property name="geometry">
  2261. <rect>
  2262. <x>130</x>
  2263. <y>140</y>
  2264. <width>171</width>
  2265. <height>20</height>
  2266. </rect>
  2267. </property>
  2268. <property name="palette">
  2269. <palette>
  2270. <active>
  2271. <colorrole role="Base">
  2272. <brush brushstyle="SolidPattern">
  2273. <color alpha="255">
  2274. <red>248</red>
  2275. <green>248</green>
  2276. <blue>248</blue>
  2277. </color>
  2278. </brush>
  2279. </colorrole>
  2280. </active>
  2281. <inactive>
  2282. <colorrole role="Base">
  2283. <brush brushstyle="SolidPattern">
  2284. <color alpha="255">
  2285. <red>248</red>
  2286. <green>248</green>
  2287. <blue>248</blue>
  2288. </color>
  2289. </brush>
  2290. </colorrole>
  2291. </inactive>
  2292. <disabled>
  2293. <colorrole role="Base">
  2294. <brush brushstyle="SolidPattern">
  2295. <color alpha="255">
  2296. <red>240</red>
  2297. <green>240</green>
  2298. <blue>240</blue>
  2299. </color>
  2300. </brush>
  2301. </colorrole>
  2302. </disabled>
  2303. </palette>
  2304. </property>
  2305. <property name="font">
  2306. <font>
  2307. <family>Verdana</family>
  2308. </font>
  2309. </property>
  2310. <property name="text">
  2311. <string/>
  2312. </property>
  2313. </widget>
  2314. <widget class="QLabel" name="label_40">
  2315. <property name="geometry">
  2316. <rect>
  2317. <x>50</x>
  2318. <y>130</y>
  2319. <width>71</width>
  2320. <height>31</height>
  2321. </rect>
  2322. </property>
  2323. <property name="font">
  2324. <font>
  2325. <family>Verdana</family>
  2326. <pointsize>8</pointsize>
  2327. </font>
  2328. </property>
  2329. <property name="text">
  2330. <string>Lieu de
  2331. naissance :</string>
  2332. </property>
  2333. </widget>
  2334. <widget class="QLabel" name="label_41">
  2335. <property name="geometry">
  2336. <rect>
  2337. <x>50</x>
  2338. <y>240</y>
  2339. <width>41</width>
  2340. <height>21</height>
  2341. </rect>
  2342. </property>
  2343. <property name="font">
  2344. <font>
  2345. <family>Verdana</family>
  2346. <pointsize>8</pointsize>
  2347. </font>
  2348. </property>
  2349. <property name="text">
  2350. <string>Poids : </string>
  2351. </property>
  2352. </widget>
  2353. <widget class="DmLineEdit" name="edc_detail_poids">
  2354. <property name="geometry">
  2355. <rect>
  2356. <x>100</x>
  2357. <y>241</y>
  2358. <width>81</width>
  2359. <height>20</height>
  2360. </rect>
  2361. </property>
  2362. <property name="palette">
  2363. <palette>
  2364. <active>
  2365. <colorrole role="Base">
  2366. <brush brushstyle="SolidPattern">
  2367. <color alpha="255">
  2368. <red>248</red>
  2369. <green>248</green>
  2370. <blue>248</blue>
  2371. </color>
  2372. </brush>
  2373. </colorrole>
  2374. </active>
  2375. <inactive>
  2376. <colorrole role="Base">
  2377. <brush brushstyle="SolidPattern">
  2378. <color alpha="255">
  2379. <red>248</red>
  2380. <green>248</green>
  2381. <blue>248</blue>
  2382. </color>
  2383. </brush>
  2384. </colorrole>
  2385. </inactive>
  2386. <disabled>
  2387. <colorrole role="Base">
  2388. <brush brushstyle="SolidPattern">
  2389. <color alpha="255">
  2390. <red>240</red>
  2391. <green>240</green>
  2392. <blue>240</blue>
  2393. </color>
  2394. </brush>
  2395. </colorrole>
  2396. </disabled>
  2397. </palette>
  2398. </property>
  2399. <property name="font">
  2400. <font>
  2401. <family>Verdana</family>
  2402. </font>
  2403. </property>
  2404. </widget>
  2405. <widget class="QLabel" name="label_43">
  2406. <property name="geometry">
  2407. <rect>
  2408. <x>50</x>
  2409. <y>50</y>
  2410. <width>61</width>
  2411. <height>21</height>
  2412. </rect>
  2413. </property>
  2414. <property name="font">
  2415. <font>
  2416. <family>Verdana</family>
  2417. <pointsize>8</pointsize>
  2418. </font>
  2419. </property>
  2420. <property name="text">
  2421. <string>Espèce : </string>
  2422. </property>
  2423. </widget>
  2424. <widget class="DmLineEdit" name="edc_detail_espece">
  2425. <property name="geometry">
  2426. <rect>
  2427. <x>130</x>
  2428. <y>51</y>
  2429. <width>171</width>
  2430. <height>20</height>
  2431. </rect>
  2432. </property>
  2433. <property name="palette">
  2434. <palette>
  2435. <active>
  2436. <colorrole role="Base">
  2437. <brush brushstyle="SolidPattern">
  2438. <color alpha="255">
  2439. <red>248</red>
  2440. <green>248</green>
  2441. <blue>248</blue>
  2442. </color>
  2443. </brush>
  2444. </colorrole>
  2445. </active>
  2446. <inactive>
  2447. <colorrole role="Base">
  2448. <brush brushstyle="SolidPattern">
  2449. <color alpha="255">
  2450. <red>248</red>
  2451. <green>248</green>
  2452. <blue>248</blue>
  2453. </color>
  2454. </brush>
  2455. </colorrole>
  2456. </inactive>
  2457. <disabled>
  2458. <colorrole role="Base">
  2459. <brush brushstyle="SolidPattern">
  2460. <color alpha="255">
  2461. <red>240</red>
  2462. <green>240</green>
  2463. <blue>240</blue>
  2464. </color>
  2465. </brush>
  2466. </colorrole>
  2467. </disabled>
  2468. </palette>
  2469. </property>
  2470. <property name="font">
  2471. <font>
  2472. <family>Verdana</family>
  2473. </font>
  2474. </property>
  2475. <property name="text">
  2476. <string/>
  2477. </property>
  2478. </widget>
  2479. <widget class="QLabel" name="label_44">
  2480. <property name="geometry">
  2481. <rect>
  2482. <x>50</x>
  2483. <y>79</y>
  2484. <width>81</width>
  2485. <height>21</height>
  2486. </rect>
  2487. </property>
  2488. <property name="font">
  2489. <font>
  2490. <family>Verdana</family>
  2491. <pointsize>8</pointsize>
  2492. </font>
  2493. </property>
  2494. <property name="text">
  2495. <string>Profession : </string>
  2496. </property>
  2497. </widget>
  2498. <widget class="DmLineEdit" name="edc_detail_profession">
  2499. <property name="geometry">
  2500. <rect>
  2501. <x>130</x>
  2502. <y>80</y>
  2503. <width>171</width>
  2504. <height>20</height>
  2505. </rect>
  2506. </property>
  2507. <property name="palette">
  2508. <palette>
  2509. <active>
  2510. <colorrole role="Base">
  2511. <brush brushstyle="SolidPattern">
  2512. <color alpha="255">
  2513. <red>248</red>
  2514. <green>248</green>
  2515. <blue>248</blue>
  2516. </color>
  2517. </brush>
  2518. </colorrole>
  2519. </active>
  2520. <inactive>
  2521. <colorrole role="Base">
  2522. <brush brushstyle="SolidPattern">
  2523. <color alpha="255">
  2524. <red>248</red>
  2525. <green>248</green>
  2526. <blue>248</blue>
  2527. </color>
  2528. </brush>
  2529. </colorrole>
  2530. </inactive>
  2531. <disabled>
  2532. <colorrole role="Base">
  2533. <brush brushstyle="SolidPattern">
  2534. <color alpha="255">
  2535. <red>240</red>
  2536. <green>240</green>
  2537. <blue>240</blue>
  2538. </color>
  2539. </brush>
  2540. </colorrole>
  2541. </disabled>
  2542. </palette>
  2543. </property>
  2544. <property name="font">
  2545. <font>
  2546. <family>Verdana</family>
  2547. </font>
  2548. </property>
  2549. <property name="text">
  2550. <string/>
  2551. </property>
  2552. </widget>
  2553. <widget class="QLabel" name="label_45">
  2554. <property name="geometry">
  2555. <rect>
  2556. <x>50</x>
  2557. <y>270</y>
  2558. <width>41</width>
  2559. <height>21</height>
  2560. </rect>
  2561. </property>
  2562. <property name="font">
  2563. <font>
  2564. <family>Verdana</family>
  2565. <pointsize>8</pointsize>
  2566. </font>
  2567. </property>
  2568. <property name="text">
  2569. <string>Taille : </string>
  2570. </property>
  2571. </widget>
  2572. <widget class="DmLineEdit" name="edc_detail_taille">
  2573. <property name="geometry">
  2574. <rect>
  2575. <x>100</x>
  2576. <y>270</y>
  2577. <width>81</width>
  2578. <height>21</height>
  2579. </rect>
  2580. </property>
  2581. <property name="palette">
  2582. <palette>
  2583. <active>
  2584. <colorrole role="Base">
  2585. <brush brushstyle="SolidPattern">
  2586. <color alpha="255">
  2587. <red>248</red>
  2588. <green>248</green>
  2589. <blue>248</blue>
  2590. </color>
  2591. </brush>
  2592. </colorrole>
  2593. </active>
  2594. <inactive>
  2595. <colorrole role="Base">
  2596. <brush brushstyle="SolidPattern">
  2597. <color alpha="255">
  2598. <red>248</red>
  2599. <green>248</green>
  2600. <blue>248</blue>
  2601. </color>
  2602. </brush>
  2603. </colorrole>
  2604. </inactive>
  2605. <disabled>
  2606. <colorrole role="Base">
  2607. <brush brushstyle="SolidPattern">
  2608. <color alpha="255">
  2609. <red>240</red>
  2610. <green>240</green>
  2611. <blue>240</blue>
  2612. </color>
  2613. </brush>
  2614. </colorrole>
  2615. </disabled>
  2616. </palette>
  2617. </property>
  2618. <property name="font">
  2619. <font>
  2620. <family>Verdana</family>
  2621. </font>
  2622. </property>
  2623. <property name="text">
  2624. <string/>
  2625. </property>
  2626. </widget>
  2627. <widget class="DmLineEdit" name="edc_detail_religion">
  2628. <property name="geometry">
  2629. <rect>
  2630. <x>130</x>
  2631. <y>110</y>
  2632. <width>171</width>
  2633. <height>21</height>
  2634. </rect>
  2635. </property>
  2636. <property name="palette">
  2637. <palette>
  2638. <active>
  2639. <colorrole role="Base">
  2640. <brush brushstyle="SolidPattern">
  2641. <color alpha="255">
  2642. <red>248</red>
  2643. <green>248</green>
  2644. <blue>248</blue>
  2645. </color>
  2646. </brush>
  2647. </colorrole>
  2648. </active>
  2649. <inactive>
  2650. <colorrole role="Base">
  2651. <brush brushstyle="SolidPattern">
  2652. <color alpha="255">
  2653. <red>248</red>
  2654. <green>248</green>
  2655. <blue>248</blue>
  2656. </color>
  2657. </brush>
  2658. </colorrole>
  2659. </inactive>
  2660. <disabled>
  2661. <colorrole role="Base">
  2662. <brush brushstyle="SolidPattern">
  2663. <color alpha="255">
  2664. <red>240</red>
  2665. <green>240</green>
  2666. <blue>240</blue>
  2667. </color>
  2668. </brush>
  2669. </colorrole>
  2670. </disabled>
  2671. </palette>
  2672. </property>
  2673. <property name="font">
  2674. <font>
  2675. <family>Verdana</family>
  2676. </font>
  2677. </property>
  2678. <property name="text">
  2679. <string/>
  2680. </property>
  2681. </widget>
  2682. <widget class="QLabel" name="label_42">
  2683. <property name="geometry">
  2684. <rect>
  2685. <x>50</x>
  2686. <y>100</y>
  2687. <width>81</width>
  2688. <height>31</height>
  2689. </rect>
  2690. </property>
  2691. <property name="font">
  2692. <font>
  2693. <family>Verdana</family>
  2694. <pointsize>8</pointsize>
  2695. </font>
  2696. </property>
  2697. <property name="text">
  2698. <string>Religion /
  2699. Croyances :</string>
  2700. </property>
  2701. </widget>
  2702. <widget class="DmLineEdit" name="edc_detail_langues">
  2703. <property name="geometry">
  2704. <rect>
  2705. <x>130</x>
  2706. <y>320</y>
  2707. <width>291</width>
  2708. <height>20</height>
  2709. </rect>
  2710. </property>
  2711. <property name="palette">
  2712. <palette>
  2713. <active>
  2714. <colorrole role="Base">
  2715. <brush brushstyle="SolidPattern">
  2716. <color alpha="255">
  2717. <red>248</red>
  2718. <green>248</green>
  2719. <blue>248</blue>
  2720. </color>
  2721. </brush>
  2722. </colorrole>
  2723. </active>
  2724. <inactive>
  2725. <colorrole role="Base">
  2726. <brush brushstyle="SolidPattern">
  2727. <color alpha="255">
  2728. <red>248</red>
  2729. <green>248</green>
  2730. <blue>248</blue>
  2731. </color>
  2732. </brush>
  2733. </colorrole>
  2734. </inactive>
  2735. <disabled>
  2736. <colorrole role="Base">
  2737. <brush brushstyle="SolidPattern">
  2738. <color alpha="255">
  2739. <red>240</red>
  2740. <green>240</green>
  2741. <blue>240</blue>
  2742. </color>
  2743. </brush>
  2744. </colorrole>
  2745. </disabled>
  2746. </palette>
  2747. </property>
  2748. </widget>
  2749. <widget class="QLabel" name="label_47">
  2750. <property name="geometry">
  2751. <rect>
  2752. <x>50</x>
  2753. <y>310</y>
  2754. <width>61</width>
  2755. <height>41</height>
  2756. </rect>
  2757. </property>
  2758. <property name="font">
  2759. <font>
  2760. <family>Verdana</family>
  2761. <pointsize>8</pointsize>
  2762. </font>
  2763. </property>
  2764. <property name="text">
  2765. <string>Langues
  2766. parlées : </string>
  2767. </property>
  2768. </widget>
  2769. </widget>
  2770. </widget>
  2771. </item>
  2772. <item>
  2773. <widget class="QFrame" name="frame">
  2774. <property name="minimumSize">
  2775. <size>
  2776. <width>392</width>
  2777. <height>50</height>
  2778. </size>
  2779. </property>
  2780. <property name="maximumSize">
  2781. <size>
  2782. <width>16777215</width>
  2783. <height>50</height>
  2784. </size>
  2785. </property>
  2786. <property name="font">
  2787. <font>
  2788. <family>Verdana</family>
  2789. </font>
  2790. </property>
  2791. <property name="frameShape">
  2792. <enum>QFrame::StyledPanel</enum>
  2793. </property>
  2794. <property name="frameShadow">
  2795. <enum>QFrame::Raised</enum>
  2796. </property>
  2797. <widget class="QPushButton" name="edc_enregistrer">
  2798. <property name="enabled">
  2799. <bool>false</bool>
  2800. </property>
  2801. <property name="geometry">
  2802. <rect>
  2803. <x>370</x>
  2804. <y>10</y>
  2805. <width>111</width>
  2806. <height>31</height>
  2807. </rect>
  2808. </property>
  2809. <property name="font">
  2810. <font>
  2811. <family>Verdana</family>
  2812. <weight>75</weight>
  2813. <bold>true</bold>
  2814. </font>
  2815. </property>
  2816. <property name="text">
  2817. <string>Enregistrer</string>
  2818. </property>
  2819. </widget>
  2820. <widget class="QPushButton" name="edc_annuler">
  2821. <property name="geometry">
  2822. <rect>
  2823. <x>280</x>
  2824. <y>10</y>
  2825. <width>81</width>
  2826. <height>31</height>
  2827. </rect>
  2828. </property>
  2829. <property name="font">
  2830. <font>
  2831. <family>Verdana</family>
  2832. </font>
  2833. </property>
  2834. <property name="text">
  2835. <string>Annuler</string>
  2836. </property>
  2837. </widget>
  2838. </widget>
  2839. </item>
  2840. </layout>
  2841. </item>
  2842. </layout>
  2843. </item>
  2844. </layout>
  2845. </widget>
  2846. <customwidgets>
  2847. <customwidget>
  2848. <class>DmLineEdit</class>
  2849. <extends>QLineEdit</extends>
  2850. <header location="global">dm.h</header>
  2851. </customwidget>
  2852. <customwidget>
  2853. <class>DmTableMenu</class>
  2854. <extends>QTableWidget</extends>
  2855. <header location="global">dm.h</header>
  2856. </customwidget>
  2857. <customwidget>
  2858. <class>DmLabel</class>
  2859. <extends>QLabel</extends>
  2860. <header location="global">dm.h</header>
  2861. </customwidget>
  2862. <customwidget>
  2863. <class>DmTableInventaire</class>
  2864. <extends>QTableWidget</extends>
  2865. <header location="global">dm.h</header>
  2866. </customwidget>
  2867. <customwidget>
  2868. <class>DmTabInventaire</class>
  2869. <extends>QTabWidget</extends>
  2870. <header>dm.h</header>
  2871. <container>1</container>
  2872. </customwidget>
  2873. </customwidgets>
  2874. <resources>
  2875. <include location="ressource.qrc"/>
  2876. </resources>
  2877. <connections>
  2878. <connection>
  2879. <sender>edc_menu</sender>
  2880. <signal>cellClicked(int,int)</signal>
  2881. <receiver>edc_pages</receiver>
  2882. <slot>setCurrentIndex(int)</slot>
  2883. <hints>
  2884. <hint type="sourcelabel">
  2885. <x>80</x>
  2886. <y>164</y>
  2887. </hint>
  2888. <hint type="destinationlabel">
  2889. <x>312</x>
  2890. <y>164</y>
  2891. </hint>
  2892. </hints>
  2893. </connection>
  2894. </connections>
  2895. </ui>