editionMateriel.ui 121 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3. <class>edm_fenetre</class>
  4. <widget class="QDialog" name="edm_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>700</width>
  13. <height>566</height>
  14. </rect>
  15. </property>
  16. <property name="minimumSize">
  17. <size>
  18. <width>700</width>
  19. <height>566</height>
  20. </size>
  21. </property>
  22. <property name="maximumSize">
  23. <size>
  24. <width>1000</width>
  25. <height>571</height>
  26. </size>
  27. </property>
  28. <property name="font">
  29. <font>
  30. <family>Verdana</family>
  31. </font>
  32. </property>
  33. <property name="windowTitle">
  34. <string>Fiche</string>
  35. </property>
  36. <layout class="QHBoxLayout" name="horizontalLayout_2">
  37. <property name="spacing">
  38. <number>0</number>
  39. </property>
  40. <property name="leftMargin">
  41. <number>0</number>
  42. </property>
  43. <property name="topMargin">
  44. <number>0</number>
  45. </property>
  46. <property name="rightMargin">
  47. <number>0</number>
  48. </property>
  49. <property name="bottomMargin">
  50. <number>0</number>
  51. </property>
  52. <item>
  53. <layout class="QVBoxLayout" name="verticalLayout_2">
  54. <property name="spacing">
  55. <number>0</number>
  56. </property>
  57. <property name="leftMargin">
  58. <number>0</number>
  59. </property>
  60. <item>
  61. <widget class="QFrame" name="edm_enTete">
  62. <property name="minimumSize">
  63. <size>
  64. <width>0</width>
  65. <height>83</height>
  66. </size>
  67. </property>
  68. <property name="frameShape">
  69. <enum>QFrame::StyledPanel</enum>
  70. </property>
  71. <property name="frameShadow">
  72. <enum>QFrame::Sunken</enum>
  73. </property>
  74. <widget class="DmLabel" name="edm_logo">
  75. <property name="geometry">
  76. <rect>
  77. <x>10</x>
  78. <y>5</y>
  79. <width>71</width>
  80. <height>71</height>
  81. </rect>
  82. </property>
  83. <property name="font">
  84. <font>
  85. <family>Verdana</family>
  86. <pointsize>7</pointsize>
  87. </font>
  88. </property>
  89. <property name="frameShape">
  90. <enum>QFrame::Box</enum>
  91. </property>
  92. <property name="frameShadow">
  93. <enum>QFrame::Sunken</enum>
  94. </property>
  95. <property name="text">
  96. <string>Choisissez
  97. un fichier
  98. image</string>
  99. </property>
  100. <property name="alignment">
  101. <set>Qt::AlignCenter</set>
  102. </property>
  103. </widget>
  104. <widget class="QLabel" name="label_8">
  105. <property name="geometry">
  106. <rect>
  107. <x>100</x>
  108. <y>40</y>
  109. <width>71</width>
  110. <height>31</height>
  111. </rect>
  112. </property>
  113. <property name="font">
  114. <font>
  115. <family>Verdana</family>
  116. <pointsize>8</pointsize>
  117. <italic>true</italic>
  118. </font>
  119. </property>
  120. <property name="text">
  121. <string>Nom : </string>
  122. </property>
  123. </widget>
  124. <widget class="DmLineEdit" name="edm_nom">
  125. <property name="geometry">
  126. <rect>
  127. <x>150</x>
  128. <y>40</y>
  129. <width>401</width>
  130. <height>31</height>
  131. </rect>
  132. </property>
  133. <property name="palette">
  134. <palette>
  135. <active>
  136. <colorrole role="Base">
  137. <brush brushstyle="SolidPattern">
  138. <color alpha="255">
  139. <red>248</red>
  140. <green>248</green>
  141. <blue>248</blue>
  142. </color>
  143. </brush>
  144. </colorrole>
  145. </active>
  146. <inactive>
  147. <colorrole role="Base">
  148. <brush brushstyle="SolidPattern">
  149. <color alpha="255">
  150. <red>248</red>
  151. <green>248</green>
  152. <blue>248</blue>
  153. </color>
  154. </brush>
  155. </colorrole>
  156. </inactive>
  157. <disabled>
  158. <colorrole role="Base">
  159. <brush brushstyle="SolidPattern">
  160. <color alpha="255">
  161. <red>240</red>
  162. <green>240</green>
  163. <blue>240</blue>
  164. </color>
  165. </brush>
  166. </colorrole>
  167. </disabled>
  168. </palette>
  169. </property>
  170. <property name="font">
  171. <font>
  172. <family>Verdana</family>
  173. </font>
  174. </property>
  175. </widget>
  176. <widget class="DmLabel" name="edm_mode">
  177. <property name="geometry">
  178. <rect>
  179. <x>100</x>
  180. <y>0</y>
  181. <width>481</width>
  182. <height>41</height>
  183. </rect>
  184. </property>
  185. <property name="font">
  186. <font>
  187. <pointsize>11</pointsize>
  188. <weight>75</weight>
  189. <bold>true</bold>
  190. </font>
  191. </property>
  192. <property name="text">
  193. <string>FEUILLE DE PERSONNAGE: CREATION</string>
  194. </property>
  195. </widget>
  196. </widget>
  197. </item>
  198. <item>
  199. <layout class="QHBoxLayout" name="horizontalLayout" stretch="0,1">
  200. <property name="spacing">
  201. <number>1</number>
  202. </property>
  203. <property name="leftMargin">
  204. <number>0</number>
  205. </property>
  206. <item>
  207. <widget class="DmTableMenu" name="edm_menu">
  208. <property name="sizePolicy">
  209. <sizepolicy hsizetype="Fixed" vsizetype="Expanding">
  210. <horstretch>0</horstretch>
  211. <verstretch>0</verstretch>
  212. </sizepolicy>
  213. </property>
  214. <property name="minimumSize">
  215. <size>
  216. <width>190</width>
  217. <height>484</height>
  218. </size>
  219. </property>
  220. <property name="maximumSize">
  221. <size>
  222. <width>190</width>
  223. <height>484</height>
  224. </size>
  225. </property>
  226. <property name="palette">
  227. <palette>
  228. <active>
  229. <colorrole role="WindowText">
  230. <brush brushstyle="SolidPattern">
  231. <color alpha="255">
  232. <red>6</red>
  233. <green>6</green>
  234. <blue>6</blue>
  235. </color>
  236. </brush>
  237. </colorrole>
  238. <colorrole role="Mid">
  239. <brush brushstyle="SolidPattern">
  240. <color alpha="255">
  241. <red>190</red>
  242. <green>190</green>
  243. <blue>190</blue>
  244. </color>
  245. </brush>
  246. </colorrole>
  247. <colorrole role="Text">
  248. <brush brushstyle="SolidPattern">
  249. <color alpha="255">
  250. <red>255</red>
  251. <green>255</green>
  252. <blue>255</blue>
  253. </color>
  254. </brush>
  255. </colorrole>
  256. <colorrole role="Base">
  257. <brush brushstyle="SolidPattern">
  258. <color alpha="255">
  259. <red>140</red>
  260. <green>140</green>
  261. <blue>140</blue>
  262. </color>
  263. </brush>
  264. </colorrole>
  265. <colorrole role="Highlight">
  266. <brush brushstyle="SolidPattern">
  267. <color alpha="255">
  268. <red>240</red>
  269. <green>240</green>
  270. <blue>240</blue>
  271. </color>
  272. </brush>
  273. </colorrole>
  274. <colorrole role="HighlightedText">
  275. <brush brushstyle="SolidPattern">
  276. <color alpha="255">
  277. <red>7</red>
  278. <green>7</green>
  279. <blue>7</blue>
  280. </color>
  281. </brush>
  282. </colorrole>
  283. </active>
  284. <inactive>
  285. <colorrole role="WindowText">
  286. <brush brushstyle="SolidPattern">
  287. <color alpha="255">
  288. <red>6</red>
  289. <green>6</green>
  290. <blue>6</blue>
  291. </color>
  292. </brush>
  293. </colorrole>
  294. <colorrole role="Mid">
  295. <brush brushstyle="SolidPattern">
  296. <color alpha="255">
  297. <red>190</red>
  298. <green>190</green>
  299. <blue>190</blue>
  300. </color>
  301. </brush>
  302. </colorrole>
  303. <colorrole role="Text">
  304. <brush brushstyle="SolidPattern">
  305. <color alpha="255">
  306. <red>255</red>
  307. <green>255</green>
  308. <blue>255</blue>
  309. </color>
  310. </brush>
  311. </colorrole>
  312. <colorrole role="Base">
  313. <brush brushstyle="SolidPattern">
  314. <color alpha="255">
  315. <red>140</red>
  316. <green>140</green>
  317. <blue>140</blue>
  318. </color>
  319. </brush>
  320. </colorrole>
  321. <colorrole role="Highlight">
  322. <brush brushstyle="SolidPattern">
  323. <color alpha="255">
  324. <red>240</red>
  325. <green>240</green>
  326. <blue>240</blue>
  327. </color>
  328. </brush>
  329. </colorrole>
  330. <colorrole role="HighlightedText">
  331. <brush brushstyle="SolidPattern">
  332. <color alpha="255">
  333. <red>7</red>
  334. <green>7</green>
  335. <blue>7</blue>
  336. </color>
  337. </brush>
  338. </colorrole>
  339. </inactive>
  340. <disabled>
  341. <colorrole role="WindowText">
  342. <brush brushstyle="SolidPattern">
  343. <color alpha="255">
  344. <red>120</red>
  345. <green>120</green>
  346. <blue>120</blue>
  347. </color>
  348. </brush>
  349. </colorrole>
  350. <colorrole role="Mid">
  351. <brush brushstyle="SolidPattern">
  352. <color alpha="255">
  353. <red>190</red>
  354. <green>190</green>
  355. <blue>190</blue>
  356. </color>
  357. </brush>
  358. </colorrole>
  359. <colorrole role="Text">
  360. <brush brushstyle="SolidPattern">
  361. <color alpha="255">
  362. <red>120</red>
  363. <green>120</green>
  364. <blue>120</blue>
  365. </color>
  366. </brush>
  367. </colorrole>
  368. <colorrole role="Base">
  369. <brush brushstyle="SolidPattern">
  370. <color alpha="255">
  371. <red>240</red>
  372. <green>240</green>
  373. <blue>240</blue>
  374. </color>
  375. </brush>
  376. </colorrole>
  377. <colorrole role="Highlight">
  378. <brush brushstyle="SolidPattern">
  379. <color alpha="255">
  380. <red>51</red>
  381. <green>153</green>
  382. <blue>255</blue>
  383. </color>
  384. </brush>
  385. </colorrole>
  386. <colorrole role="HighlightedText">
  387. <brush brushstyle="SolidPattern">
  388. <color alpha="255">
  389. <red>7</red>
  390. <green>7</green>
  391. <blue>7</blue>
  392. </color>
  393. </brush>
  394. </colorrole>
  395. </disabled>
  396. </palette>
  397. </property>
  398. <property name="font">
  399. <font>
  400. <family>Candara</family>
  401. <pointsize>13</pointsize>
  402. <weight>50</weight>
  403. <bold>false</bold>
  404. </font>
  405. </property>
  406. <property name="focusPolicy">
  407. <enum>Qt::NoFocus</enum>
  408. </property>
  409. <property name="frameShape">
  410. <enum>QFrame::StyledPanel</enum>
  411. </property>
  412. <property name="frameShadow">
  413. <enum>QFrame::Sunken</enum>
  414. </property>
  415. <property name="lineWidth">
  416. <number>0</number>
  417. </property>
  418. <property name="verticalScrollBarPolicy">
  419. <enum>Qt::ScrollBarAlwaysOff</enum>
  420. </property>
  421. <property name="horizontalScrollBarPolicy">
  422. <enum>Qt::ScrollBarAlwaysOff</enum>
  423. </property>
  424. <property name="editTriggers">
  425. <set>QAbstractItemView::NoEditTriggers</set>
  426. </property>
  427. <property name="showDropIndicator" stdset="0">
  428. <bool>false</bool>
  429. </property>
  430. <property name="dragDropOverwriteMode">
  431. <bool>false</bool>
  432. </property>
  433. <property name="selectionMode">
  434. <enum>QAbstractItemView::SingleSelection</enum>
  435. </property>
  436. <property name="selectionBehavior">
  437. <enum>QAbstractItemView::SelectRows</enum>
  438. </property>
  439. <property name="iconSize">
  440. <size>
  441. <width>30</width>
  442. <height>30</height>
  443. </size>
  444. </property>
  445. <property name="showGrid">
  446. <bool>false</bool>
  447. </property>
  448. <property name="gridStyle">
  449. <enum>Qt::SolidLine</enum>
  450. </property>
  451. <property name="cornerButtonEnabled">
  452. <bool>false</bool>
  453. </property>
  454. <attribute name="horizontalHeaderVisible">
  455. <bool>false</bool>
  456. </attribute>
  457. <attribute name="horizontalHeaderDefaultSectionSize">
  458. <number>10</number>
  459. </attribute>
  460. <attribute name="horizontalHeaderHighlightSections">
  461. <bool>false</bool>
  462. </attribute>
  463. <attribute name="horizontalHeaderStretchLastSection">
  464. <bool>true</bool>
  465. </attribute>
  466. <attribute name="verticalHeaderVisible">
  467. <bool>false</bool>
  468. </attribute>
  469. <attribute name="verticalHeaderDefaultSectionSize">
  470. <number>80</number>
  471. </attribute>
  472. <attribute name="verticalHeaderHighlightSections">
  473. <bool>false</bool>
  474. </attribute>
  475. <row>
  476. <property name="text">
  477. <string>1cp</string>
  478. </property>
  479. </row>
  480. <row>
  481. <property name="text">
  482. <string>1pi</string>
  483. </property>
  484. </row>
  485. <row>
  486. <property name="text">
  487. <string>cb</string>
  488. </property>
  489. </row>
  490. <row>
  491. <property name="text">
  492. <string>2dc</string>
  493. </property>
  494. </row>
  495. <row>
  496. <property name="text">
  497. <string>3</string>
  498. </property>
  499. </row>
  500. <row>
  501. <property name="text">
  502. <string>4</string>
  503. </property>
  504. </row>
  505. <row>
  506. <property name="text">
  507. <string>5</string>
  508. </property>
  509. </row>
  510. <row>
  511. <property name="text">
  512. <string>6</string>
  513. </property>
  514. </row>
  515. <column>
  516. <property name="text">
  517. <string>inutile</string>
  518. </property>
  519. </column>
  520. <column>
  521. <property name="text">
  522. <string>menus</string>
  523. </property>
  524. </column>
  525. <item row="0" column="0">
  526. <property name="text">
  527. <string/>
  528. </property>
  529. <property name="flags">
  530. <set>ItemIsSelectable</set>
  531. </property>
  532. </item>
  533. <item row="0" column="1">
  534. <property name="text">
  535. <string> CREATION</string>
  536. </property>
  537. <property name="textAlignment">
  538. <set>AlignHCenter|AlignVCenter|AlignCenter</set>
  539. </property>
  540. <property name="icon">
  541. <iconset resource="ressource.qrc">
  542. <normaloff>:/interface/32/ressource/creation_32.png</normaloff>:/interface/32/ressource/creation_32.png</iconset>
  543. </property>
  544. <property name="flags">
  545. <set>ItemIsSelectable|ItemIsEnabled|ItemIsTristate</set>
  546. </property>
  547. </item>
  548. <item row="1" column="1">
  549. <property name="text">
  550. <string> COMBAT</string>
  551. </property>
  552. <property name="textAlignment">
  553. <set>AlignHCenter|AlignVCenter|AlignCenter</set>
  554. </property>
  555. <property name="icon">
  556. <iconset resource="ressource.qrc">
  557. <normaloff>:/interface/32/ressource/armes_32.png</normaloff>:/interface/32/ressource/armes_32.png</iconset>
  558. </property>
  559. <property name="flags">
  560. <set>ItemIsSelectable|ItemIsUserCheckable|ItemIsEnabled</set>
  561. </property>
  562. </item>
  563. <item row="2" column="0">
  564. <property name="text">
  565. <string/>
  566. </property>
  567. <property name="flags">
  568. <set>ItemIsSelectable</set>
  569. </property>
  570. </item>
  571. <item row="2" column="1">
  572. <property name="text">
  573. <string> TAILLE ET DEPLACEMENT </string>
  574. </property>
  575. <property name="textAlignment">
  576. <set>AlignHCenter|AlignVCenter|AlignCenter</set>
  577. </property>
  578. <property name="icon">
  579. <iconset resource="ressource.qrc">
  580. <normaloff>:/interface/32/ressource/deplacement2_32.png</normaloff>:/interface/32/ressource/deplacement2_32.png</iconset>
  581. </property>
  582. <property name="flags">
  583. <set>ItemIsSelectable|ItemIsUserCheckable|ItemIsEnabled</set>
  584. </property>
  585. </item>
  586. <item row="3" column="1">
  587. <property name="text">
  588. <string> PROPRIETES</string>
  589. </property>
  590. <property name="textAlignment">
  591. <set>AlignHCenter|AlignVCenter|AlignCenter</set>
  592. </property>
  593. <property name="icon">
  594. <iconset resource="ressource.qrc">
  595. <normaloff>:/interface/32/ressource/decor_32.png</normaloff>:/interface/32/ressource/decor_32.png</iconset>
  596. </property>
  597. </item>
  598. <item row="4" column="0">
  599. <property name="text">
  600. <string/>
  601. </property>
  602. <property name="flags">
  603. <set>ItemIsSelectable</set>
  604. </property>
  605. </item>
  606. <item row="4" column="1">
  607. <property name="text">
  608. <string> ATTRIBUTS ET CAPACITES</string>
  609. </property>
  610. <property name="textAlignment">
  611. <set>AlignHCenter|AlignVCenter|AlignCenter</set>
  612. </property>
  613. <property name="icon">
  614. <iconset resource="ressource.qrc">
  615. <normaloff>:/interface/32/ressource/profil_32.png</normaloff>:/interface/32/ressource/profil_32.png</iconset>
  616. </property>
  617. <property name="flags">
  618. <set>ItemIsSelectable|ItemIsEnabled</set>
  619. </property>
  620. </item>
  621. <item row="5" column="0">
  622. <property name="text">
  623. <string/>
  624. </property>
  625. <property name="flags">
  626. <set>ItemIsSelectable</set>
  627. </property>
  628. </item>
  629. <item row="5" column="1">
  630. <property name="text">
  631. <string> ATTAQUES </string>
  632. </property>
  633. <property name="textAlignment">
  634. <set>AlignHCenter|AlignVCenter|AlignCenter</set>
  635. </property>
  636. <property name="icon">
  637. <iconset resource="ressource.qrc">
  638. <normaloff>:/interface/32/ressource/attaque_32.png</normaloff>:/interface/32/ressource/attaque_32.png</iconset>
  639. </property>
  640. <property name="flags">
  641. <set>ItemIsSelectable|ItemIsEnabled</set>
  642. </property>
  643. </item>
  644. <item row="6" column="0">
  645. <property name="text">
  646. <string/>
  647. </property>
  648. <property name="flags">
  649. <set>ItemIsSelectable</set>
  650. </property>
  651. </item>
  652. <item row="6" column="1">
  653. <property name="text">
  654. <string> INVENTAIRE </string>
  655. </property>
  656. <property name="textAlignment">
  657. <set>AlignHCenter|AlignVCenter|AlignCenter</set>
  658. </property>
  659. <property name="icon">
  660. <iconset resource="ressource.qrc">
  661. <normaloff>:/interface/16/ressource/sac_16.png</normaloff>:/interface/16/ressource/sac_16.png</iconset>
  662. </property>
  663. <property name="flags">
  664. <set>ItemIsSelectable|ItemIsEnabled</set>
  665. </property>
  666. </item>
  667. <item row="7" column="0">
  668. <property name="text">
  669. <string/>
  670. </property>
  671. <property name="flags">
  672. <set>ItemIsSelectable|ItemIsEnabled</set>
  673. </property>
  674. </item>
  675. <item row="7" column="1">
  676. <property name="text">
  677. <string> DIVERS</string>
  678. </property>
  679. <property name="textAlignment">
  680. <set>AlignHCenter|AlignVCenter|AlignCenter</set>
  681. </property>
  682. <property name="icon">
  683. <iconset resource="ressource.qrc">
  684. <normaloff>:/interface/32/ressource/note_32.png</normaloff>:/interface/32/ressource/note_32.png</iconset>
  685. </property>
  686. <property name="flags">
  687. <set>ItemIsSelectable|ItemIsEnabled</set>
  688. </property>
  689. </item>
  690. </widget>
  691. </item>
  692. <item>
  693. <layout class="QVBoxLayout" name="verticalLayout">
  694. <property name="spacing">
  695. <number>1</number>
  696. </property>
  697. <item>
  698. <widget class="QStackedWidget" name="edm_pages">
  699. <property name="minimumSize">
  700. <size>
  701. <width>392</width>
  702. <height>0</height>
  703. </size>
  704. </property>
  705. <property name="font">
  706. <font>
  707. <family>Verdana</family>
  708. </font>
  709. </property>
  710. <property name="currentIndex">
  711. <number>6</number>
  712. </property>
  713. <widget class="QWidget" name="page_nom">
  714. <widget class="QFrame" name="frame_2">
  715. <property name="geometry">
  716. <rect>
  717. <x>10</x>
  718. <y>20</y>
  719. <width>481</width>
  720. <height>381</height>
  721. </rect>
  722. </property>
  723. <property name="frameShape">
  724. <enum>QFrame::NoFrame</enum>
  725. </property>
  726. <property name="frameShadow">
  727. <enum>QFrame::Raised</enum>
  728. </property>
  729. <widget class="QGraphicsView" name="edm_vueForme">
  730. <property name="geometry">
  731. <rect>
  732. <x>10</x>
  733. <y>50</y>
  734. <width>293</width>
  735. <height>296</height>
  736. </rect>
  737. </property>
  738. <property name="palette">
  739. <palette>
  740. <active>
  741. <colorrole role="Base">
  742. <brush brushstyle="SolidPattern">
  743. <color alpha="255">
  744. <red>244</red>
  745. <green>244</green>
  746. <blue>244</blue>
  747. </color>
  748. </brush>
  749. </colorrole>
  750. </active>
  751. <inactive>
  752. <colorrole role="Base">
  753. <brush brushstyle="SolidPattern">
  754. <color alpha="255">
  755. <red>244</red>
  756. <green>244</green>
  757. <blue>244</blue>
  758. </color>
  759. </brush>
  760. </colorrole>
  761. </inactive>
  762. <disabled>
  763. <colorrole role="Base">
  764. <brush brushstyle="SolidPattern">
  765. <color alpha="255">
  766. <red>240</red>
  767. <green>240</green>
  768. <blue>240</blue>
  769. </color>
  770. </brush>
  771. </colorrole>
  772. </disabled>
  773. </palette>
  774. </property>
  775. <property name="frameShape">
  776. <enum>QFrame::WinPanel</enum>
  777. </property>
  778. <property name="frameShadow">
  779. <enum>QFrame::Raised</enum>
  780. </property>
  781. <property name="renderHints">
  782. <set>QPainter::Antialiasing|QPainter::HighQualityAntialiasing|QPainter::TextAntialiasing</set>
  783. </property>
  784. </widget>
  785. <widget class="QPushButton" name="edm_image">
  786. <property name="geometry">
  787. <rect>
  788. <x>310</x>
  789. <y>90</y>
  790. <width>161</width>
  791. <height>31</height>
  792. </rect>
  793. </property>
  794. <property name="text">
  795. <string>Choisir une image</string>
  796. </property>
  797. <property name="icon">
  798. <iconset resource="ressource.qrc">
  799. <normaloff>:/interface/32/ressource/portrait_32.png</normaloff>:/interface/32/ressource/portrait_32.png</iconset>
  800. </property>
  801. <property name="iconSize">
  802. <size>
  803. <width>22</width>
  804. <height>22</height>
  805. </size>
  806. </property>
  807. <property name="autoDefault">
  808. <bool>false</bool>
  809. </property>
  810. </widget>
  811. <widget class="QPushButton" name="edm_couleur">
  812. <property name="geometry">
  813. <rect>
  814. <x>310</x>
  815. <y>50</y>
  816. <width>161</width>
  817. <height>31</height>
  818. </rect>
  819. </property>
  820. <property name="text">
  821. <string>Choisir la couleur</string>
  822. </property>
  823. <property name="icon">
  824. <iconset resource="ressource.qrc">
  825. <normaloff>:/interface/16/ressource/palette_16.png</normaloff>:/interface/16/ressource/palette_16.png</iconset>
  826. </property>
  827. <property name="autoDefault">
  828. <bool>false</bool>
  829. </property>
  830. </widget>
  831. <widget class="QPushButton" name="edm_aideForme">
  832. <property name="geometry">
  833. <rect>
  834. <x>310</x>
  835. <y>310</y>
  836. <width>161</width>
  837. <height>31</height>
  838. </rect>
  839. </property>
  840. <property name="text">
  841. <string>Raccourcis clavier</string>
  842. </property>
  843. <property name="icon">
  844. <iconset resource="ressource.qrc">
  845. <normaloff>:/interface/32/ressource/aide_32.png</normaloff>:/interface/32/ressource/aide_32.png</iconset>
  846. </property>
  847. <property name="autoDefault">
  848. <bool>false</bool>
  849. </property>
  850. </widget>
  851. <widget class="QRadioButton" name="edm_casesHexa">
  852. <property name="geometry">
  853. <rect>
  854. <x>20</x>
  855. <y>0</y>
  856. <width>151</width>
  857. <height>31</height>
  858. </rect>
  859. </property>
  860. <property name="text">
  861. <string>Cases hexagonales</string>
  862. </property>
  863. <property name="checked">
  864. <bool>true</bool>
  865. </property>
  866. </widget>
  867. <widget class="QRadioButton" name="edm_casesCarrees">
  868. <property name="geometry">
  869. <rect>
  870. <x>180</x>
  871. <y>0</y>
  872. <width>111</width>
  873. <height>31</height>
  874. </rect>
  875. </property>
  876. <property name="text">
  877. <string>Cases carrées</string>
  878. </property>
  879. </widget>
  880. </widget>
  881. </widget>
  882. <widget class="QWidget" name="page_cbt">
  883. <widget class="QComboBox" name="edm_etat">
  884. <property name="geometry">
  885. <rect>
  886. <x>130</x>
  887. <y>10</y>
  888. <width>221</width>
  889. <height>31</height>
  890. </rect>
  891. </property>
  892. <property name="font">
  893. <font>
  894. <pointsize>9</pointsize>
  895. </font>
  896. </property>
  897. </widget>
  898. <widget class="QLabel" name="edm_etat_lbl">
  899. <property name="geometry">
  900. <rect>
  901. <x>20</x>
  902. <y>10</y>
  903. <width>101</width>
  904. <height>31</height>
  905. </rect>
  906. </property>
  907. <property name="font">
  908. <font>
  909. <pointsize>9</pointsize>
  910. </font>
  911. </property>
  912. <property name="text">
  913. <string>Etat apparent : </string>
  914. </property>
  915. </widget>
  916. <widget class="QLabel" name="edm_effets_lbl">
  917. <property name="geometry">
  918. <rect>
  919. <x>10</x>
  920. <y>140</y>
  921. <width>161</width>
  922. <height>21</height>
  923. </rect>
  924. </property>
  925. <property name="font">
  926. <font>
  927. <italic>true</italic>
  928. </font>
  929. </property>
  930. <property name="text">
  931. <string>Autres effets : </string>
  932. </property>
  933. </widget>
  934. <widget class="QTableWidget" name="edm_effets">
  935. <property name="geometry">
  936. <rect>
  937. <x>10</x>
  938. <y>161</y>
  939. <width>481</width>
  940. <height>141</height>
  941. </rect>
  942. </property>
  943. <property name="palette">
  944. <palette>
  945. <active>
  946. <colorrole role="Base">
  947. <brush brushstyle="SolidPattern">
  948. <color alpha="255">
  949. <red>249</red>
  950. <green>249</green>
  951. <blue>249</blue>
  952. </color>
  953. </brush>
  954. </colorrole>
  955. </active>
  956. <inactive>
  957. <colorrole role="Base">
  958. <brush brushstyle="SolidPattern">
  959. <color alpha="255">
  960. <red>249</red>
  961. <green>249</green>
  962. <blue>249</blue>
  963. </color>
  964. </brush>
  965. </colorrole>
  966. </inactive>
  967. <disabled>
  968. <colorrole role="Base">
  969. <brush brushstyle="SolidPattern">
  970. <color alpha="255">
  971. <red>240</red>
  972. <green>240</green>
  973. <blue>240</blue>
  974. </color>
  975. </brush>
  976. </colorrole>
  977. </disabled>
  978. </palette>
  979. </property>
  980. <column>
  981. <property name="text">
  982. <string>id</string>
  983. </property>
  984. </column>
  985. <column>
  986. <property name="text">
  987. <string>Nom</string>
  988. </property>
  989. </column>
  990. <column>
  991. <property name="text">
  992. <string>Nouvelle colonne</string>
  993. </property>
  994. </column>
  995. <column>
  996. <property name="text">
  997. <string>Durée</string>
  998. </property>
  999. </column>
  1000. </widget>
  1001. <widget class="QLabel" name="edm_actions_lbl">
  1002. <property name="geometry">
  1003. <rect>
  1004. <x>10</x>
  1005. <y>320</y>
  1006. <width>161</width>
  1007. <height>21</height>
  1008. </rect>
  1009. </property>
  1010. <property name="font">
  1011. <font>
  1012. <italic>true</italic>
  1013. </font>
  1014. </property>
  1015. <property name="text">
  1016. <string>Dernières actions : </string>
  1017. </property>
  1018. </widget>
  1019. <widget class="QWidget" name="horizontalLayoutWidget">
  1020. <property name="geometry">
  1021. <rect>
  1022. <x>10</x>
  1023. <y>70</y>
  1024. <width>481</width>
  1025. <height>31</height>
  1026. </rect>
  1027. </property>
  1028. <layout class="QHBoxLayout" name="edm_layoutStatuts">
  1029. <item>
  1030. <widget class="QCheckBox" name="edm_statut0">
  1031. <property name="text">
  1032. <string>Etourdi</string>
  1033. </property>
  1034. <property name="icon">
  1035. <iconset resource="ressource.qrc">
  1036. <normaloff>:/interface/16/ressource/etourdi_16.png</normaloff>:/interface/16/ressource/etourdi_16.png</iconset>
  1037. </property>
  1038. </widget>
  1039. </item>
  1040. <item>
  1041. <widget class="QCheckBox" name="edm_statut1">
  1042. <property name="text">
  1043. <string>Gelé</string>
  1044. </property>
  1045. <property name="icon">
  1046. <iconset resource="ressource.qrc">
  1047. <normaloff>:/interface/16/ressource/glace_16.png</normaloff>:/interface/16/ressource/glace_16.png</iconset>
  1048. </property>
  1049. </widget>
  1050. </item>
  1051. <item>
  1052. <widget class="QCheckBox" name="edm_statut2">
  1053. <property name="text">
  1054. <string>Paralysé</string>
  1055. </property>
  1056. <property name="icon">
  1057. <iconset resource="ressource.qrc">
  1058. <normaloff>:/interface/16/ressource/eclair_16.png</normaloff>:/interface/16/ressource/eclair_16.png</iconset>
  1059. </property>
  1060. </widget>
  1061. </item>
  1062. <item>
  1063. <widget class="QCheckBox" name="edm_statut3">
  1064. <property name="text">
  1065. <string>Empoisonné</string>
  1066. </property>
  1067. <property name="icon">
  1068. <iconset resource="ressource.qrc">
  1069. <normaloff>:/interface/16/ressource/poison_16.png</normaloff>:/interface/16/ressource/poison_16.png</iconset>
  1070. </property>
  1071. </widget>
  1072. </item>
  1073. <item>
  1074. <widget class="QCheckBox" name="edm_statut4">
  1075. <property name="text">
  1076. <string>Brûlé</string>
  1077. </property>
  1078. <property name="icon">
  1079. <iconset resource="ressource.qrc">
  1080. <normaloff>:/interface/16/ressource/feu_16.png</normaloff>:/interface/16/ressource/feu_16.png</iconset>
  1081. </property>
  1082. </widget>
  1083. </item>
  1084. <item>
  1085. <widget class="QCheckBox" name="edm_statut5">
  1086. <property name="text">
  1087. <string>Verrouillé</string>
  1088. </property>
  1089. <property name="icon">
  1090. <iconset resource="ressource.qrc">
  1091. <normaloff>:/interface/16/ressource/verrou_ferme_16.png</normaloff>:/interface/16/ressource/verrou_ferme_16.png</iconset>
  1092. </property>
  1093. </widget>
  1094. </item>
  1095. </layout>
  1096. </widget>
  1097. </widget>
  1098. <widget class="QWidget" name="page_dep">
  1099. <widget class="QLabel" name="label_9">
  1100. <property name="geometry">
  1101. <rect>
  1102. <x>70</x>
  1103. <y>100</y>
  1104. <width>391</width>
  1105. <height>31</height>
  1106. </rect>
  1107. </property>
  1108. <property name="font">
  1109. <font>
  1110. <family>Verdana</family>
  1111. </font>
  1112. </property>
  1113. <property name="frameShape">
  1114. <enum>QFrame::NoFrame</enum>
  1115. </property>
  1116. <property name="text">
  1117. <string>Nombre de cases que la créature peut parcourir en un tour : </string>
  1118. </property>
  1119. </widget>
  1120. <widget class="QSpinBox" name="edm_depMarche">
  1121. <property name="geometry">
  1122. <rect>
  1123. <x>240</x>
  1124. <y>140</y>
  1125. <width>51</width>
  1126. <height>31</height>
  1127. </rect>
  1128. </property>
  1129. <property name="palette">
  1130. <palette>
  1131. <active>
  1132. <colorrole role="Base">
  1133. <brush brushstyle="SolidPattern">
  1134. <color alpha="255">
  1135. <red>248</red>
  1136. <green>248</green>
  1137. <blue>248</blue>
  1138. </color>
  1139. </brush>
  1140. </colorrole>
  1141. </active>
  1142. <inactive>
  1143. <colorrole role="Base">
  1144. <brush brushstyle="SolidPattern">
  1145. <color alpha="255">
  1146. <red>248</red>
  1147. <green>248</green>
  1148. <blue>248</blue>
  1149. </color>
  1150. </brush>
  1151. </colorrole>
  1152. </inactive>
  1153. <disabled>
  1154. <colorrole role="Base">
  1155. <brush brushstyle="SolidPattern">
  1156. <color alpha="255">
  1157. <red>240</red>
  1158. <green>240</green>
  1159. <blue>240</blue>
  1160. </color>
  1161. </brush>
  1162. </colorrole>
  1163. </disabled>
  1164. </palette>
  1165. </property>
  1166. <property name="font">
  1167. <font>
  1168. <family>Verdana</family>
  1169. </font>
  1170. </property>
  1171. <property name="value">
  1172. <number>9</number>
  1173. </property>
  1174. </widget>
  1175. <widget class="QLabel" name="label_10">
  1176. <property name="geometry">
  1177. <rect>
  1178. <x>130</x>
  1179. <y>140</y>
  1180. <width>101</width>
  1181. <height>31</height>
  1182. </rect>
  1183. </property>
  1184. <property name="font">
  1185. <font>
  1186. <family>Verdana</family>
  1187. </font>
  1188. </property>
  1189. <property name="frameShape">
  1190. <enum>QFrame::NoFrame</enum>
  1191. </property>
  1192. <property name="text">
  1193. <string>Marche / Course</string>
  1194. </property>
  1195. </widget>
  1196. <widget class="QSpinBox" name="edm_depNage">
  1197. <property name="geometry">
  1198. <rect>
  1199. <x>240</x>
  1200. <y>180</y>
  1201. <width>51</width>
  1202. <height>31</height>
  1203. </rect>
  1204. </property>
  1205. <property name="palette">
  1206. <palette>
  1207. <active>
  1208. <colorrole role="Base">
  1209. <brush brushstyle="SolidPattern">
  1210. <color alpha="255">
  1211. <red>248</red>
  1212. <green>248</green>
  1213. <blue>248</blue>
  1214. </color>
  1215. </brush>
  1216. </colorrole>
  1217. </active>
  1218. <inactive>
  1219. <colorrole role="Base">
  1220. <brush brushstyle="SolidPattern">
  1221. <color alpha="255">
  1222. <red>248</red>
  1223. <green>248</green>
  1224. <blue>248</blue>
  1225. </color>
  1226. </brush>
  1227. </colorrole>
  1228. </inactive>
  1229. <disabled>
  1230. <colorrole role="Base">
  1231. <brush brushstyle="SolidPattern">
  1232. <color alpha="255">
  1233. <red>240</red>
  1234. <green>240</green>
  1235. <blue>240</blue>
  1236. </color>
  1237. </brush>
  1238. </colorrole>
  1239. </disabled>
  1240. </palette>
  1241. </property>
  1242. <property name="font">
  1243. <font>
  1244. <family>Verdana</family>
  1245. </font>
  1246. </property>
  1247. <property name="value">
  1248. <number>6</number>
  1249. </property>
  1250. </widget>
  1251. <widget class="QLabel" name="label_11">
  1252. <property name="geometry">
  1253. <rect>
  1254. <x>130</x>
  1255. <y>180</y>
  1256. <width>81</width>
  1257. <height>31</height>
  1258. </rect>
  1259. </property>
  1260. <property name="font">
  1261. <font>
  1262. <family>Verdana</family>
  1263. </font>
  1264. </property>
  1265. <property name="frameShape">
  1266. <enum>QFrame::NoFrame</enum>
  1267. </property>
  1268. <property name="text">
  1269. <string>Nage </string>
  1270. </property>
  1271. </widget>
  1272. <widget class="QSpinBox" name="edm_depEscalade">
  1273. <property name="geometry">
  1274. <rect>
  1275. <x>240</x>
  1276. <y>220</y>
  1277. <width>51</width>
  1278. <height>31</height>
  1279. </rect>
  1280. </property>
  1281. <property name="palette">
  1282. <palette>
  1283. <active>
  1284. <colorrole role="Base">
  1285. <brush brushstyle="SolidPattern">
  1286. <color alpha="255">
  1287. <red>248</red>
  1288. <green>248</green>
  1289. <blue>248</blue>
  1290. </color>
  1291. </brush>
  1292. </colorrole>
  1293. </active>
  1294. <inactive>
  1295. <colorrole role="Base">
  1296. <brush brushstyle="SolidPattern">
  1297. <color alpha="255">
  1298. <red>248</red>
  1299. <green>248</green>
  1300. <blue>248</blue>
  1301. </color>
  1302. </brush>
  1303. </colorrole>
  1304. </inactive>
  1305. <disabled>
  1306. <colorrole role="Base">
  1307. <brush brushstyle="SolidPattern">
  1308. <color alpha="255">
  1309. <red>240</red>
  1310. <green>240</green>
  1311. <blue>240</blue>
  1312. </color>
  1313. </brush>
  1314. </colorrole>
  1315. </disabled>
  1316. </palette>
  1317. </property>
  1318. <property name="font">
  1319. <font>
  1320. <family>Verdana</family>
  1321. </font>
  1322. </property>
  1323. <property name="value">
  1324. <number>4</number>
  1325. </property>
  1326. </widget>
  1327. <widget class="QLabel" name="label_12">
  1328. <property name="geometry">
  1329. <rect>
  1330. <x>130</x>
  1331. <y>220</y>
  1332. <width>91</width>
  1333. <height>31</height>
  1334. </rect>
  1335. </property>
  1336. <property name="font">
  1337. <font>
  1338. <family>Verdana</family>
  1339. </font>
  1340. </property>
  1341. <property name="frameShape">
  1342. <enum>QFrame::NoFrame</enum>
  1343. </property>
  1344. <property name="text">
  1345. <string>Escalade </string>
  1346. </property>
  1347. </widget>
  1348. <widget class="QLabel" name="label_13">
  1349. <property name="geometry">
  1350. <rect>
  1351. <x>130</x>
  1352. <y>260</y>
  1353. <width>61</width>
  1354. <height>31</height>
  1355. </rect>
  1356. </property>
  1357. <property name="font">
  1358. <font>
  1359. <family>Verdana</family>
  1360. </font>
  1361. </property>
  1362. <property name="frameShape">
  1363. <enum>QFrame::NoFrame</enum>
  1364. </property>
  1365. <property name="text">
  1366. <string>Vol </string>
  1367. </property>
  1368. </widget>
  1369. <widget class="QSpinBox" name="edm_depVol">
  1370. <property name="geometry">
  1371. <rect>
  1372. <x>240</x>
  1373. <y>260</y>
  1374. <width>51</width>
  1375. <height>31</height>
  1376. </rect>
  1377. </property>
  1378. <property name="palette">
  1379. <palette>
  1380. <active>
  1381. <colorrole role="Base">
  1382. <brush brushstyle="SolidPattern">
  1383. <color alpha="255">
  1384. <red>248</red>
  1385. <green>248</green>
  1386. <blue>248</blue>
  1387. </color>
  1388. </brush>
  1389. </colorrole>
  1390. </active>
  1391. <inactive>
  1392. <colorrole role="Base">
  1393. <brush brushstyle="SolidPattern">
  1394. <color alpha="255">
  1395. <red>248</red>
  1396. <green>248</green>
  1397. <blue>248</blue>
  1398. </color>
  1399. </brush>
  1400. </colorrole>
  1401. </inactive>
  1402. <disabled>
  1403. <colorrole role="Base">
  1404. <brush brushstyle="SolidPattern">
  1405. <color alpha="255">
  1406. <red>240</red>
  1407. <green>240</green>
  1408. <blue>240</blue>
  1409. </color>
  1410. </brush>
  1411. </colorrole>
  1412. </disabled>
  1413. </palette>
  1414. </property>
  1415. <property name="font">
  1416. <font>
  1417. <family>Verdana</family>
  1418. </font>
  1419. </property>
  1420. </widget>
  1421. <widget class="QDoubleSpinBox" name="edm_saut">
  1422. <property name="geometry">
  1423. <rect>
  1424. <x>310</x>
  1425. <y>320</y>
  1426. <width>51</width>
  1427. <height>31</height>
  1428. </rect>
  1429. </property>
  1430. <property name="palette">
  1431. <palette>
  1432. <active>
  1433. <colorrole role="Base">
  1434. <brush brushstyle="SolidPattern">
  1435. <color alpha="255">
  1436. <red>248</red>
  1437. <green>248</green>
  1438. <blue>248</blue>
  1439. </color>
  1440. </brush>
  1441. </colorrole>
  1442. </active>
  1443. <inactive>
  1444. <colorrole role="Base">
  1445. <brush brushstyle="SolidPattern">
  1446. <color alpha="255">
  1447. <red>248</red>
  1448. <green>248</green>
  1449. <blue>248</blue>
  1450. </color>
  1451. </brush>
  1452. </colorrole>
  1453. </inactive>
  1454. <disabled>
  1455. <colorrole role="Base">
  1456. <brush brushstyle="SolidPattern">
  1457. <color alpha="255">
  1458. <red>240</red>
  1459. <green>240</green>
  1460. <blue>240</blue>
  1461. </color>
  1462. </brush>
  1463. </colorrole>
  1464. </disabled>
  1465. </palette>
  1466. </property>
  1467. <property name="font">
  1468. <font>
  1469. <family>Verdana</family>
  1470. </font>
  1471. </property>
  1472. <property name="prefix">
  1473. <string/>
  1474. </property>
  1475. <property name="decimals">
  1476. <number>0</number>
  1477. </property>
  1478. <property name="singleStep">
  1479. <double>1.000000000000000</double>
  1480. </property>
  1481. <property name="value">
  1482. <double>5.000000000000000</double>
  1483. </property>
  1484. </widget>
  1485. <widget class="QLabel" name="label_14">
  1486. <property name="geometry">
  1487. <rect>
  1488. <x>70</x>
  1489. <y>320</y>
  1490. <width>231</width>
  1491. <height>31</height>
  1492. </rect>
  1493. </property>
  1494. <property name="font">
  1495. <font>
  1496. <family>Verdana</family>
  1497. </font>
  1498. </property>
  1499. <property name="frameShape">
  1500. <enum>QFrame::NoFrame</enum>
  1501. </property>
  1502. <property name="text">
  1503. <string>Hauteur maximum pour les sauts : </string>
  1504. </property>
  1505. </widget>
  1506. <widget class="QLabel" name="label_2">
  1507. <property name="geometry">
  1508. <rect>
  1509. <x>80</x>
  1510. <y>140</y>
  1511. <width>31</width>
  1512. <height>31</height>
  1513. </rect>
  1514. </property>
  1515. <property name="text">
  1516. <string/>
  1517. </property>
  1518. <property name="pixmap">
  1519. <pixmap resource="ressource.qrc">:/interface/16/ressource/marche_16.png</pixmap>
  1520. </property>
  1521. <property name="scaledContents">
  1522. <bool>false</bool>
  1523. </property>
  1524. <property name="alignment">
  1525. <set>Qt::AlignCenter</set>
  1526. </property>
  1527. </widget>
  1528. <widget class="QLabel" name="label_3">
  1529. <property name="geometry">
  1530. <rect>
  1531. <x>80</x>
  1532. <y>180</y>
  1533. <width>31</width>
  1534. <height>31</height>
  1535. </rect>
  1536. </property>
  1537. <property name="text">
  1538. <string/>
  1539. </property>
  1540. <property name="pixmap">
  1541. <pixmap resource="ressource.qrc">:/interface/24/ressource/nage_24.png</pixmap>
  1542. </property>
  1543. <property name="scaledContents">
  1544. <bool>false</bool>
  1545. </property>
  1546. </widget>
  1547. <widget class="QLabel" name="label_4">
  1548. <property name="geometry">
  1549. <rect>
  1550. <x>80</x>
  1551. <y>220</y>
  1552. <width>31</width>
  1553. <height>31</height>
  1554. </rect>
  1555. </property>
  1556. <property name="text">
  1557. <string/>
  1558. </property>
  1559. <property name="pixmap">
  1560. <pixmap resource="ressource.qrc">:/interface/24/ressource/escalade_24.png</pixmap>
  1561. </property>
  1562. <property name="scaledContents">
  1563. <bool>false</bool>
  1564. </property>
  1565. </widget>
  1566. <widget class="QLabel" name="label_5">
  1567. <property name="geometry">
  1568. <rect>
  1569. <x>80</x>
  1570. <y>260</y>
  1571. <width>31</width>
  1572. <height>31</height>
  1573. </rect>
  1574. </property>
  1575. <property name="text">
  1576. <string/>
  1577. </property>
  1578. <property name="pixmap">
  1579. <pixmap resource="ressource.qrc">:/interface/24/ressource/plume_24.png</pixmap>
  1580. </property>
  1581. <property name="scaledContents">
  1582. <bool>false</bool>
  1583. </property>
  1584. </widget>
  1585. <widget class="QSpinBox" name="edm_taille">
  1586. <property name="geometry">
  1587. <rect>
  1588. <x>310</x>
  1589. <y>60</y>
  1590. <width>51</width>
  1591. <height>31</height>
  1592. </rect>
  1593. </property>
  1594. <property name="palette">
  1595. <palette>
  1596. <active>
  1597. <colorrole role="Base">
  1598. <brush brushstyle="SolidPattern">
  1599. <color alpha="255">
  1600. <red>248</red>
  1601. <green>248</green>
  1602. <blue>248</blue>
  1603. </color>
  1604. </brush>
  1605. </colorrole>
  1606. </active>
  1607. <inactive>
  1608. <colorrole role="Base">
  1609. <brush brushstyle="SolidPattern">
  1610. <color alpha="255">
  1611. <red>248</red>
  1612. <green>248</green>
  1613. <blue>248</blue>
  1614. </color>
  1615. </brush>
  1616. </colorrole>
  1617. </inactive>
  1618. <disabled>
  1619. <colorrole role="Base">
  1620. <brush brushstyle="SolidPattern">
  1621. <color alpha="255">
  1622. <red>240</red>
  1623. <green>240</green>
  1624. <blue>240</blue>
  1625. </color>
  1626. </brush>
  1627. </colorrole>
  1628. </disabled>
  1629. </palette>
  1630. </property>
  1631. <property name="font">
  1632. <font>
  1633. <family>Verdana</family>
  1634. </font>
  1635. </property>
  1636. <property name="minimum">
  1637. <number>1</number>
  1638. </property>
  1639. </widget>
  1640. <widget class="QLabel" name="label_15">
  1641. <property name="geometry">
  1642. <rect>
  1643. <x>70</x>
  1644. <y>60</y>
  1645. <width>231</width>
  1646. <height>31</height>
  1647. </rect>
  1648. </property>
  1649. <property name="font">
  1650. <font>
  1651. <family>Verdana</family>
  1652. </font>
  1653. </property>
  1654. <property name="frameShape">
  1655. <enum>QFrame::NoFrame</enum>
  1656. </property>
  1657. <property name="text">
  1658. <string>Taille de la créature (en cases) : </string>
  1659. </property>
  1660. </widget>
  1661. </widget>
  1662. <widget class="QWidget" name="page_proprietes">
  1663. <widget class="QLabel" name="label_19">
  1664. <property name="geometry">
  1665. <rect>
  1666. <x>40</x>
  1667. <y>30</y>
  1668. <width>231</width>
  1669. <height>31</height>
  1670. </rect>
  1671. </property>
  1672. <property name="font">
  1673. <font>
  1674. <family>Verdana</family>
  1675. </font>
  1676. </property>
  1677. <property name="frameShape">
  1678. <enum>QFrame::NoFrame</enum>
  1679. </property>
  1680. <property name="text">
  1681. <string>Hauteur du décor (en cases) : </string>
  1682. </property>
  1683. </widget>
  1684. <widget class="QGroupBox" name="groupBox">
  1685. <property name="geometry">
  1686. <rect>
  1687. <x>40</x>
  1688. <y>129</y>
  1689. <width>341</width>
  1690. <height>41</height>
  1691. </rect>
  1692. </property>
  1693. <property name="title">
  1694. <string/>
  1695. </property>
  1696. <property name="flat">
  1697. <bool>true</bool>
  1698. </property>
  1699. <widget class="QRadioButton" name="radioButton_2">
  1700. <property name="geometry">
  1701. <rect>
  1702. <x>280</x>
  1703. <y>10</y>
  1704. <width>51</width>
  1705. <height>31</height>
  1706. </rect>
  1707. </property>
  1708. <property name="text">
  1709. <string>Non</string>
  1710. </property>
  1711. <property name="checked">
  1712. <bool>true</bool>
  1713. </property>
  1714. </widget>
  1715. <widget class="QRadioButton" name="edm_escalade">
  1716. <property name="geometry">
  1717. <rect>
  1718. <x>190</x>
  1719. <y>10</y>
  1720. <width>51</width>
  1721. <height>31</height>
  1722. </rect>
  1723. </property>
  1724. <property name="text">
  1725. <string>Oui</string>
  1726. </property>
  1727. </widget>
  1728. <widget class="QLabel" name="label_20">
  1729. <property name="geometry">
  1730. <rect>
  1731. <x>40</x>
  1732. <y>10</y>
  1733. <width>131</width>
  1734. <height>31</height>
  1735. </rect>
  1736. </property>
  1737. <property name="text">
  1738. <string>Peut être escaladé : </string>
  1739. </property>
  1740. </widget>
  1741. <widget class="QLabel" name="label_21">
  1742. <property name="geometry">
  1743. <rect>
  1744. <x>0</x>
  1745. <y>10</y>
  1746. <width>31</width>
  1747. <height>31</height>
  1748. </rect>
  1749. </property>
  1750. <property name="text">
  1751. <string/>
  1752. </property>
  1753. <property name="pixmap">
  1754. <pixmap resource="ressource.qrc">:/interface/24/ressource/escalade_24.png</pixmap>
  1755. </property>
  1756. </widget>
  1757. </widget>
  1758. <widget class="QGroupBox" name="groupBox_2">
  1759. <property name="geometry">
  1760. <rect>
  1761. <x>40</x>
  1762. <y>210</y>
  1763. <width>341</width>
  1764. <height>41</height>
  1765. </rect>
  1766. </property>
  1767. <property name="title">
  1768. <string/>
  1769. </property>
  1770. <property name="flat">
  1771. <bool>true</bool>
  1772. </property>
  1773. <widget class="QRadioButton" name="radioButton_3">
  1774. <property name="geometry">
  1775. <rect>
  1776. <x>280</x>
  1777. <y>10</y>
  1778. <width>51</width>
  1779. <height>31</height>
  1780. </rect>
  1781. </property>
  1782. <property name="text">
  1783. <string>Non</string>
  1784. </property>
  1785. <property name="checked">
  1786. <bool>true</bool>
  1787. </property>
  1788. </widget>
  1789. <widget class="QRadioButton" name="edm_inflammable">
  1790. <property name="geometry">
  1791. <rect>
  1792. <x>190</x>
  1793. <y>10</y>
  1794. <width>51</width>
  1795. <height>31</height>
  1796. </rect>
  1797. </property>
  1798. <property name="text">
  1799. <string>Oui</string>
  1800. </property>
  1801. </widget>
  1802. <widget class="QLabel" name="label_22">
  1803. <property name="geometry">
  1804. <rect>
  1805. <x>40</x>
  1806. <y>10</y>
  1807. <width>121</width>
  1808. <height>31</height>
  1809. </rect>
  1810. </property>
  1811. <property name="text">
  1812. <string>Inflammable : </string>
  1813. </property>
  1814. </widget>
  1815. <widget class="QLabel" name="label_24">
  1816. <property name="geometry">
  1817. <rect>
  1818. <x>0</x>
  1819. <y>10</y>
  1820. <width>31</width>
  1821. <height>31</height>
  1822. </rect>
  1823. </property>
  1824. <property name="text">
  1825. <string/>
  1826. </property>
  1827. <property name="pixmap">
  1828. <pixmap resource="ressource.qrc">:/interface/24/ressource/feu_24.png</pixmap>
  1829. </property>
  1830. <property name="scaledContents">
  1831. <bool>false</bool>
  1832. </property>
  1833. </widget>
  1834. </widget>
  1835. <widget class="QCheckBox" name="edm_hauteurPlafond">
  1836. <property name="geometry">
  1837. <rect>
  1838. <x>50</x>
  1839. <y>60</y>
  1840. <width>181</width>
  1841. <height>17</height>
  1842. </rect>
  1843. </property>
  1844. <property name="font">
  1845. <font>
  1846. <italic>true</italic>
  1847. </font>
  1848. </property>
  1849. <property name="text">
  1850. <string>Jusqu'au plafond</string>
  1851. </property>
  1852. </widget>
  1853. <widget class="QSpinBox" name="edm_hauteur">
  1854. <property name="geometry">
  1855. <rect>
  1856. <x>280</x>
  1857. <y>30</y>
  1858. <width>51</width>
  1859. <height>31</height>
  1860. </rect>
  1861. </property>
  1862. <property name="palette">
  1863. <palette>
  1864. <active>
  1865. <colorrole role="Base">
  1866. <brush brushstyle="SolidPattern">
  1867. <color alpha="255">
  1868. <red>248</red>
  1869. <green>248</green>
  1870. <blue>248</blue>
  1871. </color>
  1872. </brush>
  1873. </colorrole>
  1874. </active>
  1875. <inactive>
  1876. <colorrole role="Base">
  1877. <brush brushstyle="SolidPattern">
  1878. <color alpha="255">
  1879. <red>248</red>
  1880. <green>248</green>
  1881. <blue>248</blue>
  1882. </color>
  1883. </brush>
  1884. </colorrole>
  1885. </inactive>
  1886. <disabled>
  1887. <colorrole role="Base">
  1888. <brush brushstyle="SolidPattern">
  1889. <color alpha="255">
  1890. <red>240</red>
  1891. <green>240</green>
  1892. <blue>240</blue>
  1893. </color>
  1894. </brush>
  1895. </colorrole>
  1896. </disabled>
  1897. </palette>
  1898. </property>
  1899. <property name="font">
  1900. <font>
  1901. <family>Verdana</family>
  1902. </font>
  1903. </property>
  1904. <property name="minimum">
  1905. <number>0</number>
  1906. </property>
  1907. <property name="maximum">
  1908. <number>999</number>
  1909. </property>
  1910. </widget>
  1911. </widget>
  1912. <widget class="QWidget" name="page_attr">
  1913. <widget class="QScrollArea" name="edm_deroulementAttributs">
  1914. <property name="geometry">
  1915. <rect>
  1916. <x>10</x>
  1917. <y>10</y>
  1918. <width>231</width>
  1919. <height>411</height>
  1920. </rect>
  1921. </property>
  1922. <property name="frameShape">
  1923. <enum>QFrame::StyledPanel</enum>
  1924. </property>
  1925. <property name="frameShadow">
  1926. <enum>QFrame::Raised</enum>
  1927. </property>
  1928. <property name="widgetResizable">
  1929. <bool>true</bool>
  1930. </property>
  1931. <widget class="QWidget" name="scrollAreaWidgetContents_2">
  1932. <property name="geometry">
  1933. <rect>
  1934. <x>0</x>
  1935. <y>0</y>
  1936. <width>229</width>
  1937. <height>409</height>
  1938. </rect>
  1939. </property>
  1940. <layout class="QVBoxLayout" name="edm_deroulementAttributs_layout">
  1941. <property name="spacing">
  1942. <number>1</number>
  1943. </property>
  1944. <property name="leftMargin">
  1945. <number>3</number>
  1946. </property>
  1947. <property name="topMargin">
  1948. <number>3</number>
  1949. </property>
  1950. <property name="rightMargin">
  1951. <number>3</number>
  1952. </property>
  1953. <property name="bottomMargin">
  1954. <number>3</number>
  1955. </property>
  1956. </layout>
  1957. </widget>
  1958. </widget>
  1959. <widget class="QTextEdit" name="edm_notes">
  1960. <property name="geometry">
  1961. <rect>
  1962. <x>270</x>
  1963. <y>30</y>
  1964. <width>181</width>
  1965. <height>391</height>
  1966. </rect>
  1967. </property>
  1968. <property name="palette">
  1969. <palette>
  1970. <active>
  1971. <colorrole role="Base">
  1972. <brush brushstyle="SolidPattern">
  1973. <color alpha="255">
  1974. <red>248</red>
  1975. <green>248</green>
  1976. <blue>248</blue>
  1977. </color>
  1978. </brush>
  1979. </colorrole>
  1980. </active>
  1981. <inactive>
  1982. <colorrole role="Base">
  1983. <brush brushstyle="SolidPattern">
  1984. <color alpha="255">
  1985. <red>248</red>
  1986. <green>248</green>
  1987. <blue>248</blue>
  1988. </color>
  1989. </brush>
  1990. </colorrole>
  1991. </inactive>
  1992. <disabled>
  1993. <colorrole role="Base">
  1994. <brush brushstyle="SolidPattern">
  1995. <color alpha="255">
  1996. <red>240</red>
  1997. <green>240</green>
  1998. <blue>240</blue>
  1999. </color>
  2000. </brush>
  2001. </colorrole>
  2002. </disabled>
  2003. </palette>
  2004. </property>
  2005. <property name="font">
  2006. <font>
  2007. <family>Verdana</family>
  2008. </font>
  2009. </property>
  2010. </widget>
  2011. <widget class="QLabel" name="label_23">
  2012. <property name="geometry">
  2013. <rect>
  2014. <x>280</x>
  2015. <y>9</y>
  2016. <width>141</width>
  2017. <height>21</height>
  2018. </rect>
  2019. </property>
  2020. <property name="font">
  2021. <font>
  2022. <family>Verdana</family>
  2023. <italic>true</italic>
  2024. </font>
  2025. </property>
  2026. <property name="text">
  2027. <string>Autre :</string>
  2028. </property>
  2029. </widget>
  2030. </widget>
  2031. <widget class="QWidget" name="page_att">
  2032. <widget class="QScrollArea" name="edm_deroulementAttaques">
  2033. <property name="geometry">
  2034. <rect>
  2035. <x>0</x>
  2036. <y>0</y>
  2037. <width>491</width>
  2038. <height>431</height>
  2039. </rect>
  2040. </property>
  2041. <property name="widgetResizable">
  2042. <bool>true</bool>
  2043. </property>
  2044. <widget class="QWidget" name="scrollAreaWidgetContents">
  2045. <property name="geometry">
  2046. <rect>
  2047. <x>0</x>
  2048. <y>0</y>
  2049. <width>489</width>
  2050. <height>429</height>
  2051. </rect>
  2052. </property>
  2053. <layout class="QVBoxLayout" name="edm_deroulementAttaques_layout">
  2054. <property name="spacing">
  2055. <number>1</number>
  2056. </property>
  2057. <property name="leftMargin">
  2058. <number>3</number>
  2059. </property>
  2060. <property name="topMargin">
  2061. <number>3</number>
  2062. </property>
  2063. <property name="rightMargin">
  2064. <number>3</number>
  2065. </property>
  2066. <property name="bottomMargin">
  2067. <number>3</number>
  2068. </property>
  2069. </layout>
  2070. </widget>
  2071. </widget>
  2072. </widget>
  2073. <widget class="QWidget" name="page_invent">
  2074. <widget class="DmTableInventaire" name="edm_listeInventaire">
  2075. <property name="geometry">
  2076. <rect>
  2077. <x>0</x>
  2078. <y>36</y>
  2079. <width>491</width>
  2080. <height>361</height>
  2081. </rect>
  2082. </property>
  2083. <property name="palette">
  2084. <palette>
  2085. <active>
  2086. <colorrole role="Base">
  2087. <brush brushstyle="SolidPattern">
  2088. <color alpha="255">
  2089. <red>248</red>
  2090. <green>248</green>
  2091. <blue>248</blue>
  2092. </color>
  2093. </brush>
  2094. </colorrole>
  2095. </active>
  2096. <inactive>
  2097. <colorrole role="Base">
  2098. <brush brushstyle="SolidPattern">
  2099. <color alpha="255">
  2100. <red>248</red>
  2101. <green>248</green>
  2102. <blue>248</blue>
  2103. </color>
  2104. </brush>
  2105. </colorrole>
  2106. </inactive>
  2107. <disabled>
  2108. <colorrole role="Base">
  2109. <brush brushstyle="SolidPattern">
  2110. <color alpha="255">
  2111. <red>240</red>
  2112. <green>240</green>
  2113. <blue>240</blue>
  2114. </color>
  2115. </brush>
  2116. </colorrole>
  2117. </disabled>
  2118. </palette>
  2119. </property>
  2120. <property name="font">
  2121. <font>
  2122. <family>Verdana</family>
  2123. </font>
  2124. </property>
  2125. <property name="frameShape">
  2126. <enum>QFrame::WinPanel</enum>
  2127. </property>
  2128. <property name="verticalScrollBarPolicy">
  2129. <enum>Qt::ScrollBarAsNeeded</enum>
  2130. </property>
  2131. <property name="horizontalScrollBarPolicy">
  2132. <enum>Qt::ScrollBarAlwaysOff</enum>
  2133. </property>
  2134. <property name="editTriggers">
  2135. <set>QAbstractItemView::NoEditTriggers</set>
  2136. </property>
  2137. <property name="alternatingRowColors">
  2138. <bool>false</bool>
  2139. </property>
  2140. <property name="selectionMode">
  2141. <enum>QAbstractItemView::NoSelection</enum>
  2142. </property>
  2143. <property name="selectionBehavior">
  2144. <enum>QAbstractItemView::SelectRows</enum>
  2145. </property>
  2146. <property name="showGrid">
  2147. <bool>true</bool>
  2148. </property>
  2149. <property name="gridStyle">
  2150. <enum>Qt::SolidLine</enum>
  2151. </property>
  2152. <property name="sortingEnabled">
  2153. <bool>true</bool>
  2154. </property>
  2155. <attribute name="horizontalHeaderVisible">
  2156. <bool>false</bool>
  2157. </attribute>
  2158. <attribute name="horizontalHeaderCascadingSectionResizes">
  2159. <bool>false</bool>
  2160. </attribute>
  2161. <attribute name="horizontalHeaderDefaultSectionSize">
  2162. <number>60</number>
  2163. </attribute>
  2164. <attribute name="horizontalHeaderMinimumSectionSize">
  2165. <number>32</number>
  2166. </attribute>
  2167. <attribute name="verticalHeaderVisible">
  2168. <bool>false</bool>
  2169. </attribute>
  2170. <attribute name="verticalHeaderDefaultSectionSize">
  2171. <number>18</number>
  2172. </attribute>
  2173. <attribute name="verticalHeaderMinimumSectionSize">
  2174. <number>14</number>
  2175. </attribute>
  2176. <row>
  2177. <property name="text">
  2178. <string>Nouvelle ligne</string>
  2179. </property>
  2180. </row>
  2181. <column>
  2182. <property name="text">
  2183. <string>Type</string>
  2184. </property>
  2185. <property name="font">
  2186. <font>
  2187. <family>Verdana</family>
  2188. <pointsize>7</pointsize>
  2189. <weight>75</weight>
  2190. <bold>true</bold>
  2191. </font>
  2192. </property>
  2193. </column>
  2194. <column>
  2195. <property name="text">
  2196. <string>Quantité</string>
  2197. </property>
  2198. <property name="font">
  2199. <font>
  2200. <family>Verdana</family>
  2201. <pointsize>7</pointsize>
  2202. <weight>75</weight>
  2203. <bold>true</bold>
  2204. </font>
  2205. </property>
  2206. </column>
  2207. <column>
  2208. <property name="text">
  2209. <string>Objet</string>
  2210. </property>
  2211. <property name="font">
  2212. <font>
  2213. <family>Verdana</family>
  2214. <pointsize>7</pointsize>
  2215. <weight>75</weight>
  2216. <italic>false</italic>
  2217. <bold>true</bold>
  2218. </font>
  2219. </property>
  2220. </column>
  2221. <column>
  2222. <property name="text">
  2223. <string/>
  2224. </property>
  2225. <property name="font">
  2226. <font>
  2227. <family>Verdana</family>
  2228. <pointsize>7</pointsize>
  2229. <weight>75</weight>
  2230. <bold>true</bold>
  2231. </font>
  2232. </property>
  2233. <property name="icon">
  2234. <iconset>
  2235. <normaloff>../../img/poids.png</normaloff>../../img/poids.png</iconset>
  2236. </property>
  2237. </column>
  2238. <column>
  2239. <property name="text">
  2240. <string>...</string>
  2241. </property>
  2242. <property name="font">
  2243. <font>
  2244. <family>Verdana</family>
  2245. <pointsize>7</pointsize>
  2246. <weight>75</weight>
  2247. <bold>true</bold>
  2248. </font>
  2249. </property>
  2250. </column>
  2251. <item row="0" column="0">
  2252. <property name="text">
  2253. <string>*</string>
  2254. </property>
  2255. <property name="font">
  2256. <font>
  2257. <weight>50</weight>
  2258. <bold>false</bold>
  2259. </font>
  2260. </property>
  2261. <property name="textAlignment">
  2262. <set>AlignHCenter|AlignVCenter|AlignCenter</set>
  2263. </property>
  2264. <property name="flags">
  2265. <set>ItemIsSelectable|ItemIsDragEnabled|ItemIsDropEnabled|ItemIsEnabled</set>
  2266. </property>
  2267. </item>
  2268. <item row="0" column="1">
  2269. <property name="text">
  2270. <string/>
  2271. </property>
  2272. <property name="flags">
  2273. <set>ItemIsSelectable|ItemIsDragEnabled|ItemIsDropEnabled|ItemIsUserCheckable|ItemIsEnabled</set>
  2274. </property>
  2275. </item>
  2276. <item row="0" column="2">
  2277. <property name="text">
  2278. <string>(Cliquer pour ajouter un item)</string>
  2279. </property>
  2280. <property name="font">
  2281. <font>
  2282. <family>Verdana</family>
  2283. <pointsize>8</pointsize>
  2284. <italic>true</italic>
  2285. </font>
  2286. </property>
  2287. <property name="flags">
  2288. <set>ItemIsSelectable|ItemIsDragEnabled|ItemIsDropEnabled|ItemIsUserCheckable|ItemIsEnabled</set>
  2289. </property>
  2290. </item>
  2291. <item row="0" column="3">
  2292. <property name="text">
  2293. <string/>
  2294. </property>
  2295. <property name="flags">
  2296. <set>ItemIsSelectable|ItemIsDragEnabled|ItemIsDropEnabled|ItemIsUserCheckable|ItemIsEnabled</set>
  2297. </property>
  2298. </item>
  2299. <item row="0" column="4">
  2300. <property name="text">
  2301. <string/>
  2302. </property>
  2303. <property name="flags">
  2304. <set>ItemIsSelectable|ItemIsDragEnabled|ItemIsDropEnabled|ItemIsUserCheckable|ItemIsEnabled</set>
  2305. </property>
  2306. </item>
  2307. </widget>
  2308. <widget class="QLabel" name="label">
  2309. <property name="geometry">
  2310. <rect>
  2311. <x>10</x>
  2312. <y>400</y>
  2313. <width>151</width>
  2314. <height>21</height>
  2315. </rect>
  2316. </property>
  2317. <property name="font">
  2318. <font>
  2319. <italic>true</italic>
  2320. </font>
  2321. </property>
  2322. <property name="text">
  2323. <string>Poids total transporté :</string>
  2324. </property>
  2325. </widget>
  2326. <widget class="DmLabel" name="edm_inventaire_poids">
  2327. <property name="geometry">
  2328. <rect>
  2329. <x>150</x>
  2330. <y>400</y>
  2331. <width>61</width>
  2332. <height>20</height>
  2333. </rect>
  2334. </property>
  2335. <property name="font">
  2336. <font>
  2337. <italic>true</italic>
  2338. </font>
  2339. </property>
  2340. <property name="text">
  2341. <string>... kg</string>
  2342. </property>
  2343. </widget>
  2344. <widget class="DmTabInventaire" name="edm_filtreTypeObjet">
  2345. <property name="geometry">
  2346. <rect>
  2347. <x>0</x>
  2348. <y>6</y>
  2349. <width>491</width>
  2350. <height>31</height>
  2351. </rect>
  2352. </property>
  2353. <property name="palette">
  2354. <palette>
  2355. <active>
  2356. <colorrole role="Base">
  2357. <brush brushstyle="SolidPattern">
  2358. <color alpha="100">
  2359. <red>170</red>
  2360. <green>0</green>
  2361. <blue>0</blue>
  2362. </color>
  2363. </brush>
  2364. </colorrole>
  2365. </active>
  2366. <inactive>
  2367. <colorrole role="Base">
  2368. <brush brushstyle="SolidPattern">
  2369. <color alpha="100">
  2370. <red>170</red>
  2371. <green>0</green>
  2372. <blue>0</blue>
  2373. </color>
  2374. </brush>
  2375. </colorrole>
  2376. </inactive>
  2377. <disabled>
  2378. <colorrole role="Base">
  2379. <brush brushstyle="SolidPattern">
  2380. <color alpha="255">
  2381. <red>240</red>
  2382. <green>240</green>
  2383. <blue>240</blue>
  2384. </color>
  2385. </brush>
  2386. </colorrole>
  2387. </disabled>
  2388. </palette>
  2389. </property>
  2390. <property name="font">
  2391. <font>
  2392. <stylestrategy>PreferAntialias</stylestrategy>
  2393. </font>
  2394. </property>
  2395. <property name="tabShape">
  2396. <enum>QTabWidget::Rounded</enum>
  2397. </property>
  2398. <property name="currentIndex">
  2399. <number>3</number>
  2400. </property>
  2401. <property name="iconSize">
  2402. <size>
  2403. <width>19</width>
  2404. <height>21</height>
  2405. </size>
  2406. </property>
  2407. <widget class="QWidget" name="filtre_tout">
  2408. <attribute name="icon">
  2409. <iconset resource="ressource.qrc">
  2410. <normaloff>:/interface/32/ressource/etoile_32.png</normaloff>:/interface/32/ressource/etoile_32.png</iconset>
  2411. </attribute>
  2412. <attribute name="title">
  2413. <string> </string>
  2414. </attribute>
  2415. </widget>
  2416. <widget class="QWidget" name="filtre_0">
  2417. <attribute name="icon">
  2418. <iconset resource="ressource.qrc">
  2419. <normaloff>:/interface/32/ressource/pieces_32.png</normaloff>:/interface/32/ressource/pieces_32.png</iconset>
  2420. </attribute>
  2421. <attribute name="title">
  2422. <string> </string>
  2423. </attribute>
  2424. </widget>
  2425. <widget class="QWidget" name="filtre_1">
  2426. <attribute name="icon">
  2427. <iconset resource="ressource.qrc">
  2428. <normaloff>:/interface/32/ressource/armes_32.png</normaloff>:/interface/32/ressource/armes_32.png</iconset>
  2429. </attribute>
  2430. <attribute name="title">
  2431. <string> </string>
  2432. </attribute>
  2433. </widget>
  2434. <widget class="QWidget" name="filtre_2">
  2435. <attribute name="icon">
  2436. <iconset resource="ressource.qrc">
  2437. <normaloff>:/interface/32/ressource/chimie_32.png</normaloff>:/interface/32/ressource/chimie_32.png</iconset>
  2438. </attribute>
  2439. <attribute name="title">
  2440. <string> </string>
  2441. </attribute>
  2442. </widget>
  2443. <widget class="QWidget" name="filtre_3">
  2444. <attribute name="icon">
  2445. <iconset resource="ressource.qrc">
  2446. <normaloff>:/interface/32/ressource/diamant_32.png</normaloff>:/interface/32/ressource/diamant_32.png</iconset>
  2447. </attribute>
  2448. <attribute name="title">
  2449. <string> </string>
  2450. </attribute>
  2451. </widget>
  2452. <widget class="QWidget" name="filtre_4">
  2453. <attribute name="icon">
  2454. <iconset resource="ressource.qrc">
  2455. <normaloff>:/interface/32/ressource/boiteOutils_32.png</normaloff>:/interface/32/ressource/boiteOutils_32.png</iconset>
  2456. </attribute>
  2457. <attribute name="title">
  2458. <string> </string>
  2459. </attribute>
  2460. </widget>
  2461. </widget>
  2462. <zorder>edm_filtreTypeObjet</zorder>
  2463. <zorder>edm_listeInventaire</zorder>
  2464. <zorder>label</zorder>
  2465. <zorder>edm_inventaire_poids</zorder>
  2466. </widget>
  2467. <widget class="QWidget" name="page_notes">
  2468. <widget class="QWidget" name="gridLayoutWidget">
  2469. <property name="geometry">
  2470. <rect>
  2471. <x>10</x>
  2472. <y>10</y>
  2473. <width>481</width>
  2474. <height>401</height>
  2475. </rect>
  2476. </property>
  2477. <layout class="QGridLayout" name="edm_layoutNotes">
  2478. <property name="sizeConstraint">
  2479. <enum>QLayout::SetMinimumSize</enum>
  2480. </property>
  2481. <property name="leftMargin">
  2482. <number>3</number>
  2483. </property>
  2484. <property name="topMargin">
  2485. <number>3</number>
  2486. </property>
  2487. <property name="rightMargin">
  2488. <number>3</number>
  2489. </property>
  2490. <property name="bottomMargin">
  2491. <number>3</number>
  2492. </property>
  2493. <property name="spacing">
  2494. <number>2</number>
  2495. </property>
  2496. <item row="5" column="0">
  2497. <widget class="QLabel" name="edm_lbl_sexe">
  2498. <property name="minimumSize">
  2499. <size>
  2500. <width>41</width>
  2501. <height>21</height>
  2502. </size>
  2503. </property>
  2504. <property name="maximumSize">
  2505. <size>
  2506. <width>41</width>
  2507. <height>21</height>
  2508. </size>
  2509. </property>
  2510. <property name="font">
  2511. <font>
  2512. <family>Verdana</family>
  2513. <pointsize>8</pointsize>
  2514. </font>
  2515. </property>
  2516. <property name="text">
  2517. <string>Sexe : </string>
  2518. </property>
  2519. </widget>
  2520. </item>
  2521. <item row="6" column="3">
  2522. <widget class="DmLineEdit" name="edm_detail_peau">
  2523. <property name="minimumSize">
  2524. <size>
  2525. <width>91</width>
  2526. <height>20</height>
  2527. </size>
  2528. </property>
  2529. <property name="maximumSize">
  2530. <size>
  2531. <width>91</width>
  2532. <height>20</height>
  2533. </size>
  2534. </property>
  2535. <property name="palette">
  2536. <palette>
  2537. <active>
  2538. <colorrole role="Base">
  2539. <brush brushstyle="SolidPattern">
  2540. <color alpha="255">
  2541. <red>248</red>
  2542. <green>248</green>
  2543. <blue>248</blue>
  2544. </color>
  2545. </brush>
  2546. </colorrole>
  2547. </active>
  2548. <inactive>
  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. </inactive>
  2559. <disabled>
  2560. <colorrole role="Base">
  2561. <brush brushstyle="SolidPattern">
  2562. <color alpha="255">
  2563. <red>240</red>
  2564. <green>240</green>
  2565. <blue>240</blue>
  2566. </color>
  2567. </brush>
  2568. </colorrole>
  2569. </disabled>
  2570. </palette>
  2571. </property>
  2572. <property name="font">
  2573. <font>
  2574. <family>Verdana</family>
  2575. </font>
  2576. </property>
  2577. <property name="text">
  2578. <string/>
  2579. </property>
  2580. </widget>
  2581. </item>
  2582. <item row="6" column="0">
  2583. <widget class="QLabel" name="edm_lbl_poids">
  2584. <property name="minimumSize">
  2585. <size>
  2586. <width>41</width>
  2587. <height>21</height>
  2588. </size>
  2589. </property>
  2590. <property name="maximumSize">
  2591. <size>
  2592. <width>41</width>
  2593. <height>21</height>
  2594. </size>
  2595. </property>
  2596. <property name="font">
  2597. <font>
  2598. <family>Verdana</family>
  2599. <pointsize>8</pointsize>
  2600. </font>
  2601. </property>
  2602. <property name="text">
  2603. <string>Poids : </string>
  2604. </property>
  2605. </widget>
  2606. </item>
  2607. <item row="5" column="1">
  2608. <widget class="DmLineEdit" name="edm_detail_sexe">
  2609. <property name="minimumSize">
  2610. <size>
  2611. <width>81</width>
  2612. <height>20</height>
  2613. </size>
  2614. </property>
  2615. <property name="maximumSize">
  2616. <size>
  2617. <width>81</width>
  2618. <height>20</height>
  2619. </size>
  2620. </property>
  2621. <property name="palette">
  2622. <palette>
  2623. <active>
  2624. <colorrole role="Base">
  2625. <brush brushstyle="SolidPattern">
  2626. <color alpha="255">
  2627. <red>248</red>
  2628. <green>248</green>
  2629. <blue>248</blue>
  2630. </color>
  2631. </brush>
  2632. </colorrole>
  2633. </active>
  2634. <inactive>
  2635. <colorrole role="Base">
  2636. <brush brushstyle="SolidPattern">
  2637. <color alpha="255">
  2638. <red>248</red>
  2639. <green>248</green>
  2640. <blue>248</blue>
  2641. </color>
  2642. </brush>
  2643. </colorrole>
  2644. </inactive>
  2645. <disabled>
  2646. <colorrole role="Base">
  2647. <brush brushstyle="SolidPattern">
  2648. <color alpha="255">
  2649. <red>240</red>
  2650. <green>240</green>
  2651. <blue>240</blue>
  2652. </color>
  2653. </brush>
  2654. </colorrole>
  2655. </disabled>
  2656. </palette>
  2657. </property>
  2658. <property name="font">
  2659. <font>
  2660. <family>Verdana</family>
  2661. </font>
  2662. </property>
  2663. </widget>
  2664. </item>
  2665. <item row="6" column="1">
  2666. <widget class="DmLineEdit" name="edm_detail_poids">
  2667. <property name="minimumSize">
  2668. <size>
  2669. <width>81</width>
  2670. <height>20</height>
  2671. </size>
  2672. </property>
  2673. <property name="maximumSize">
  2674. <size>
  2675. <width>81</width>
  2676. <height>20</height>
  2677. </size>
  2678. </property>
  2679. <property name="palette">
  2680. <palette>
  2681. <active>
  2682. <colorrole role="Base">
  2683. <brush brushstyle="SolidPattern">
  2684. <color alpha="255">
  2685. <red>248</red>
  2686. <green>248</green>
  2687. <blue>248</blue>
  2688. </color>
  2689. </brush>
  2690. </colorrole>
  2691. </active>
  2692. <inactive>
  2693. <colorrole role="Base">
  2694. <brush brushstyle="SolidPattern">
  2695. <color alpha="255">
  2696. <red>248</red>
  2697. <green>248</green>
  2698. <blue>248</blue>
  2699. </color>
  2700. </brush>
  2701. </colorrole>
  2702. </inactive>
  2703. <disabled>
  2704. <colorrole role="Base">
  2705. <brush brushstyle="SolidPattern">
  2706. <color alpha="255">
  2707. <red>240</red>
  2708. <green>240</green>
  2709. <blue>240</blue>
  2710. </color>
  2711. </brush>
  2712. </colorrole>
  2713. </disabled>
  2714. </palette>
  2715. </property>
  2716. <property name="font">
  2717. <font>
  2718. <family>Verdana</family>
  2719. </font>
  2720. </property>
  2721. </widget>
  2722. </item>
  2723. <item row="8" column="0">
  2724. <widget class="QLabel" name="edm_lbl_langues">
  2725. <property name="minimumSize">
  2726. <size>
  2727. <width>61</width>
  2728. <height>41</height>
  2729. </size>
  2730. </property>
  2731. <property name="maximumSize">
  2732. <size>
  2733. <width>61</width>
  2734. <height>41</height>
  2735. </size>
  2736. </property>
  2737. <property name="font">
  2738. <font>
  2739. <family>Verdana</family>
  2740. <pointsize>8</pointsize>
  2741. </font>
  2742. </property>
  2743. <property name="text">
  2744. <string>Langues
  2745. parlées : </string>
  2746. </property>
  2747. </widget>
  2748. </item>
  2749. <item row="4" column="0">
  2750. <widget class="QLabel" name="edm_lbl_age">
  2751. <property name="minimumSize">
  2752. <size>
  2753. <width>41</width>
  2754. <height>21</height>
  2755. </size>
  2756. </property>
  2757. <property name="maximumSize">
  2758. <size>
  2759. <width>41</width>
  2760. <height>21</height>
  2761. </size>
  2762. </property>
  2763. <property name="font">
  2764. <font>
  2765. <family>Verdana</family>
  2766. <pointsize>8</pointsize>
  2767. </font>
  2768. </property>
  2769. <property name="text">
  2770. <string>Age : </string>
  2771. </property>
  2772. </widget>
  2773. </item>
  2774. <item row="8" column="1" colspan="3">
  2775. <widget class="DmLineEdit" name="edm_detail_langues">
  2776. <property name="minimumSize">
  2777. <size>
  2778. <width>291</width>
  2779. <height>20</height>
  2780. </size>
  2781. </property>
  2782. <property name="maximumSize">
  2783. <size>
  2784. <width>300</width>
  2785. <height>20</height>
  2786. </size>
  2787. </property>
  2788. <property name="palette">
  2789. <palette>
  2790. <active>
  2791. <colorrole role="Base">
  2792. <brush brushstyle="SolidPattern">
  2793. <color alpha="255">
  2794. <red>248</red>
  2795. <green>248</green>
  2796. <blue>248</blue>
  2797. </color>
  2798. </brush>
  2799. </colorrole>
  2800. </active>
  2801. <inactive>
  2802. <colorrole role="Base">
  2803. <brush brushstyle="SolidPattern">
  2804. <color alpha="255">
  2805. <red>248</red>
  2806. <green>248</green>
  2807. <blue>248</blue>
  2808. </color>
  2809. </brush>
  2810. </colorrole>
  2811. </inactive>
  2812. <disabled>
  2813. <colorrole role="Base">
  2814. <brush brushstyle="SolidPattern">
  2815. <color alpha="255">
  2816. <red>240</red>
  2817. <green>240</green>
  2818. <blue>240</blue>
  2819. </color>
  2820. </brush>
  2821. </colorrole>
  2822. </disabled>
  2823. </palette>
  2824. </property>
  2825. </widget>
  2826. </item>
  2827. <item row="5" column="2">
  2828. <widget class="QLabel" name="edm_lbl_yeux">
  2829. <property name="minimumSize">
  2830. <size>
  2831. <width>71</width>
  2832. <height>21</height>
  2833. </size>
  2834. </property>
  2835. <property name="maximumSize">
  2836. <size>
  2837. <width>71</width>
  2838. <height>21</height>
  2839. </size>
  2840. </property>
  2841. <property name="font">
  2842. <font>
  2843. <family>Verdana</family>
  2844. <pointsize>8</pointsize>
  2845. </font>
  2846. </property>
  2847. <property name="text">
  2848. <string>Yeux :</string>
  2849. </property>
  2850. </widget>
  2851. </item>
  2852. <item row="1" column="1" colspan="2">
  2853. <widget class="DmLineEdit" name="edm_detail_profession">
  2854. <property name="minimumSize">
  2855. <size>
  2856. <width>171</width>
  2857. <height>20</height>
  2858. </size>
  2859. </property>
  2860. <property name="maximumSize">
  2861. <size>
  2862. <width>171</width>
  2863. <height>20</height>
  2864. </size>
  2865. </property>
  2866. <property name="palette">
  2867. <palette>
  2868. <active>
  2869. <colorrole role="Base">
  2870. <brush brushstyle="SolidPattern">
  2871. <color alpha="255">
  2872. <red>248</red>
  2873. <green>248</green>
  2874. <blue>248</blue>
  2875. </color>
  2876. </brush>
  2877. </colorrole>
  2878. </active>
  2879. <inactive>
  2880. <colorrole role="Base">
  2881. <brush brushstyle="SolidPattern">
  2882. <color alpha="255">
  2883. <red>248</red>
  2884. <green>248</green>
  2885. <blue>248</blue>
  2886. </color>
  2887. </brush>
  2888. </colorrole>
  2889. </inactive>
  2890. <disabled>
  2891. <colorrole role="Base">
  2892. <brush brushstyle="SolidPattern">
  2893. <color alpha="255">
  2894. <red>240</red>
  2895. <green>240</green>
  2896. <blue>240</blue>
  2897. </color>
  2898. </brush>
  2899. </colorrole>
  2900. </disabled>
  2901. </palette>
  2902. </property>
  2903. <property name="font">
  2904. <font>
  2905. <family>Verdana</family>
  2906. </font>
  2907. </property>
  2908. <property name="text">
  2909. <string/>
  2910. </property>
  2911. </widget>
  2912. </item>
  2913. <item row="5" column="3">
  2914. <widget class="DmLineEdit" name="edm_detail_yeux">
  2915. <property name="minimumSize">
  2916. <size>
  2917. <width>91</width>
  2918. <height>20</height>
  2919. </size>
  2920. </property>
  2921. <property name="maximumSize">
  2922. <size>
  2923. <width>91</width>
  2924. <height>20</height>
  2925. </size>
  2926. </property>
  2927. <property name="palette">
  2928. <palette>
  2929. <active>
  2930. <colorrole role="Base">
  2931. <brush brushstyle="SolidPattern">
  2932. <color alpha="255">
  2933. <red>248</red>
  2934. <green>248</green>
  2935. <blue>248</blue>
  2936. </color>
  2937. </brush>
  2938. </colorrole>
  2939. </active>
  2940. <inactive>
  2941. <colorrole role="Base">
  2942. <brush brushstyle="SolidPattern">
  2943. <color alpha="255">
  2944. <red>248</red>
  2945. <green>248</green>
  2946. <blue>248</blue>
  2947. </color>
  2948. </brush>
  2949. </colorrole>
  2950. </inactive>
  2951. <disabled>
  2952. <colorrole role="Base">
  2953. <brush brushstyle="SolidPattern">
  2954. <color alpha="255">
  2955. <red>240</red>
  2956. <green>240</green>
  2957. <blue>240</blue>
  2958. </color>
  2959. </brush>
  2960. </colorrole>
  2961. </disabled>
  2962. </palette>
  2963. </property>
  2964. <property name="font">
  2965. <font>
  2966. <family>Verdana</family>
  2967. </font>
  2968. </property>
  2969. <property name="text">
  2970. <string/>
  2971. </property>
  2972. </widget>
  2973. </item>
  2974. <item row="7" column="1">
  2975. <widget class="DmLineEdit" name="edm_detail_taille">
  2976. <property name="minimumSize">
  2977. <size>
  2978. <width>81</width>
  2979. <height>21</height>
  2980. </size>
  2981. </property>
  2982. <property name="maximumSize">
  2983. <size>
  2984. <width>81</width>
  2985. <height>21</height>
  2986. </size>
  2987. </property>
  2988. <property name="palette">
  2989. <palette>
  2990. <active>
  2991. <colorrole role="Base">
  2992. <brush brushstyle="SolidPattern">
  2993. <color alpha="255">
  2994. <red>248</red>
  2995. <green>248</green>
  2996. <blue>248</blue>
  2997. </color>
  2998. </brush>
  2999. </colorrole>
  3000. </active>
  3001. <inactive>
  3002. <colorrole role="Base">
  3003. <brush brushstyle="SolidPattern">
  3004. <color alpha="255">
  3005. <red>248</red>
  3006. <green>248</green>
  3007. <blue>248</blue>
  3008. </color>
  3009. </brush>
  3010. </colorrole>
  3011. </inactive>
  3012. <disabled>
  3013. <colorrole role="Base">
  3014. <brush brushstyle="SolidPattern">
  3015. <color alpha="255">
  3016. <red>240</red>
  3017. <green>240</green>
  3018. <blue>240</blue>
  3019. </color>
  3020. </brush>
  3021. </colorrole>
  3022. </disabled>
  3023. </palette>
  3024. </property>
  3025. <property name="font">
  3026. <font>
  3027. <family>Verdana</family>
  3028. </font>
  3029. </property>
  3030. <property name="text">
  3031. <string/>
  3032. </property>
  3033. </widget>
  3034. </item>
  3035. <item row="7" column="0">
  3036. <widget class="QLabel" name="edm_lbl_taille">
  3037. <property name="minimumSize">
  3038. <size>
  3039. <width>41</width>
  3040. <height>21</height>
  3041. </size>
  3042. </property>
  3043. <property name="maximumSize">
  3044. <size>
  3045. <width>41</width>
  3046. <height>21</height>
  3047. </size>
  3048. </property>
  3049. <property name="font">
  3050. <font>
  3051. <family>Verdana</family>
  3052. <pointsize>8</pointsize>
  3053. </font>
  3054. </property>
  3055. <property name="text">
  3056. <string>Taille : </string>
  3057. </property>
  3058. </widget>
  3059. </item>
  3060. <item row="7" column="3">
  3061. <widget class="DmLineEdit" name="edm_detail_cheveux">
  3062. <property name="minimumSize">
  3063. <size>
  3064. <width>91</width>
  3065. <height>20</height>
  3066. </size>
  3067. </property>
  3068. <property name="maximumSize">
  3069. <size>
  3070. <width>91</width>
  3071. <height>20</height>
  3072. </size>
  3073. </property>
  3074. <property name="palette">
  3075. <palette>
  3076. <active>
  3077. <colorrole role="Base">
  3078. <brush brushstyle="SolidPattern">
  3079. <color alpha="255">
  3080. <red>248</red>
  3081. <green>248</green>
  3082. <blue>248</blue>
  3083. </color>
  3084. </brush>
  3085. </colorrole>
  3086. </active>
  3087. <inactive>
  3088. <colorrole role="Base">
  3089. <brush brushstyle="SolidPattern">
  3090. <color alpha="255">
  3091. <red>248</red>
  3092. <green>248</green>
  3093. <blue>248</blue>
  3094. </color>
  3095. </brush>
  3096. </colorrole>
  3097. </inactive>
  3098. <disabled>
  3099. <colorrole role="Base">
  3100. <brush brushstyle="SolidPattern">
  3101. <color alpha="255">
  3102. <red>240</red>
  3103. <green>240</green>
  3104. <blue>240</blue>
  3105. </color>
  3106. </brush>
  3107. </colorrole>
  3108. </disabled>
  3109. </palette>
  3110. </property>
  3111. <property name="font">
  3112. <font>
  3113. <family>Verdana</family>
  3114. </font>
  3115. </property>
  3116. <property name="text">
  3117. <string/>
  3118. </property>
  3119. </widget>
  3120. </item>
  3121. <item row="7" column="2">
  3122. <widget class="QLabel" name="edm_lbl_cheveux">
  3123. <property name="minimumSize">
  3124. <size>
  3125. <width>101</width>
  3126. <height>21</height>
  3127. </size>
  3128. </property>
  3129. <property name="maximumSize">
  3130. <size>
  3131. <width>101</width>
  3132. <height>21</height>
  3133. </size>
  3134. </property>
  3135. <property name="font">
  3136. <font>
  3137. <family>Verdana</family>
  3138. <pointsize>8</pointsize>
  3139. </font>
  3140. </property>
  3141. <property name="text">
  3142. <string>Poils /Cheveux :</string>
  3143. </property>
  3144. </widget>
  3145. </item>
  3146. <item row="9" column="0" colspan="4">
  3147. <widget class="QLabel" name="edm_lbl_notes">
  3148. <property name="minimumSize">
  3149. <size>
  3150. <width>0</width>
  3151. <height>20</height>
  3152. </size>
  3153. </property>
  3154. <property name="font">
  3155. <font>
  3156. <family>Verdana</family>
  3157. <italic>true</italic>
  3158. </font>
  3159. </property>
  3160. <property name="text">
  3161. <string>Notes :</string>
  3162. </property>
  3163. </widget>
  3164. </item>
  3165. <item row="6" column="2">
  3166. <widget class="QLabel" name="edm_lbl_peau">
  3167. <property name="minimumSize">
  3168. <size>
  3169. <width>61</width>
  3170. <height>21</height>
  3171. </size>
  3172. </property>
  3173. <property name="maximumSize">
  3174. <size>
  3175. <width>61</width>
  3176. <height>21</height>
  3177. </size>
  3178. </property>
  3179. <property name="font">
  3180. <font>
  3181. <family>Verdana</family>
  3182. <pointsize>8</pointsize>
  3183. </font>
  3184. </property>
  3185. <property name="text">
  3186. <string>Peau :</string>
  3187. </property>
  3188. </widget>
  3189. </item>
  3190. <item row="2" column="1" colspan="2">
  3191. <widget class="DmLineEdit" name="edm_detail_religion">
  3192. <property name="minimumSize">
  3193. <size>
  3194. <width>171</width>
  3195. <height>21</height>
  3196. </size>
  3197. </property>
  3198. <property name="maximumSize">
  3199. <size>
  3200. <width>171</width>
  3201. <height>21</height>
  3202. </size>
  3203. </property>
  3204. <property name="palette">
  3205. <palette>
  3206. <active>
  3207. <colorrole role="Base">
  3208. <brush brushstyle="SolidPattern">
  3209. <color alpha="255">
  3210. <red>248</red>
  3211. <green>248</green>
  3212. <blue>248</blue>
  3213. </color>
  3214. </brush>
  3215. </colorrole>
  3216. </active>
  3217. <inactive>
  3218. <colorrole role="Base">
  3219. <brush brushstyle="SolidPattern">
  3220. <color alpha="255">
  3221. <red>248</red>
  3222. <green>248</green>
  3223. <blue>248</blue>
  3224. </color>
  3225. </brush>
  3226. </colorrole>
  3227. </inactive>
  3228. <disabled>
  3229. <colorrole role="Base">
  3230. <brush brushstyle="SolidPattern">
  3231. <color alpha="255">
  3232. <red>240</red>
  3233. <green>240</green>
  3234. <blue>240</blue>
  3235. </color>
  3236. </brush>
  3237. </colorrole>
  3238. </disabled>
  3239. </palette>
  3240. </property>
  3241. <property name="font">
  3242. <font>
  3243. <family>Verdana</family>
  3244. </font>
  3245. </property>
  3246. <property name="text">
  3247. <string/>
  3248. </property>
  3249. </widget>
  3250. </item>
  3251. <item row="0" column="0">
  3252. <widget class="QLabel" name="edm_lbl_espece">
  3253. <property name="minimumSize">
  3254. <size>
  3255. <width>61</width>
  3256. <height>21</height>
  3257. </size>
  3258. </property>
  3259. <property name="maximumSize">
  3260. <size>
  3261. <width>61</width>
  3262. <height>21</height>
  3263. </size>
  3264. </property>
  3265. <property name="font">
  3266. <font>
  3267. <family>Verdana</family>
  3268. <pointsize>8</pointsize>
  3269. </font>
  3270. </property>
  3271. <property name="text">
  3272. <string>Espèce : </string>
  3273. </property>
  3274. </widget>
  3275. </item>
  3276. <item row="1" column="0">
  3277. <widget class="QLabel" name="edm_lbl_profession">
  3278. <property name="minimumSize">
  3279. <size>
  3280. <width>81</width>
  3281. <height>21</height>
  3282. </size>
  3283. </property>
  3284. <property name="maximumSize">
  3285. <size>
  3286. <width>81</width>
  3287. <height>21</height>
  3288. </size>
  3289. </property>
  3290. <property name="font">
  3291. <font>
  3292. <family>Verdana</family>
  3293. <pointsize>8</pointsize>
  3294. </font>
  3295. </property>
  3296. <property name="text">
  3297. <string>Profession : </string>
  3298. </property>
  3299. </widget>
  3300. </item>
  3301. <item row="3" column="1" colspan="2">
  3302. <widget class="DmLineEdit" name="edm_detail_lieuNaissance">
  3303. <property name="minimumSize">
  3304. <size>
  3305. <width>171</width>
  3306. <height>20</height>
  3307. </size>
  3308. </property>
  3309. <property name="maximumSize">
  3310. <size>
  3311. <width>171</width>
  3312. <height>20</height>
  3313. </size>
  3314. </property>
  3315. <property name="palette">
  3316. <palette>
  3317. <active>
  3318. <colorrole role="Base">
  3319. <brush brushstyle="SolidPattern">
  3320. <color alpha="255">
  3321. <red>248</red>
  3322. <green>248</green>
  3323. <blue>248</blue>
  3324. </color>
  3325. </brush>
  3326. </colorrole>
  3327. </active>
  3328. <inactive>
  3329. <colorrole role="Base">
  3330. <brush brushstyle="SolidPattern">
  3331. <color alpha="255">
  3332. <red>248</red>
  3333. <green>248</green>
  3334. <blue>248</blue>
  3335. </color>
  3336. </brush>
  3337. </colorrole>
  3338. </inactive>
  3339. <disabled>
  3340. <colorrole role="Base">
  3341. <brush brushstyle="SolidPattern">
  3342. <color alpha="255">
  3343. <red>240</red>
  3344. <green>240</green>
  3345. <blue>240</blue>
  3346. </color>
  3347. </brush>
  3348. </colorrole>
  3349. </disabled>
  3350. </palette>
  3351. </property>
  3352. <property name="font">
  3353. <font>
  3354. <family>Verdana</family>
  3355. </font>
  3356. </property>
  3357. <property name="text">
  3358. <string/>
  3359. </property>
  3360. </widget>
  3361. </item>
  3362. <item row="0" column="1" colspan="2">
  3363. <widget class="DmLineEdit" name="edm_detail_espece">
  3364. <property name="minimumSize">
  3365. <size>
  3366. <width>171</width>
  3367. <height>20</height>
  3368. </size>
  3369. </property>
  3370. <property name="maximumSize">
  3371. <size>
  3372. <width>171</width>
  3373. <height>20</height>
  3374. </size>
  3375. </property>
  3376. <property name="palette">
  3377. <palette>
  3378. <active>
  3379. <colorrole role="Base">
  3380. <brush brushstyle="SolidPattern">
  3381. <color alpha="255">
  3382. <red>248</red>
  3383. <green>248</green>
  3384. <blue>248</blue>
  3385. </color>
  3386. </brush>
  3387. </colorrole>
  3388. </active>
  3389. <inactive>
  3390. <colorrole role="Base">
  3391. <brush brushstyle="SolidPattern">
  3392. <color alpha="255">
  3393. <red>248</red>
  3394. <green>248</green>
  3395. <blue>248</blue>
  3396. </color>
  3397. </brush>
  3398. </colorrole>
  3399. </inactive>
  3400. <disabled>
  3401. <colorrole role="Base">
  3402. <brush brushstyle="SolidPattern">
  3403. <color alpha="255">
  3404. <red>240</red>
  3405. <green>240</green>
  3406. <blue>240</blue>
  3407. </color>
  3408. </brush>
  3409. </colorrole>
  3410. </disabled>
  3411. </palette>
  3412. </property>
  3413. <property name="font">
  3414. <font>
  3415. <family>Verdana</family>
  3416. </font>
  3417. </property>
  3418. <property name="text">
  3419. <string/>
  3420. </property>
  3421. </widget>
  3422. </item>
  3423. <item row="3" column="0">
  3424. <widget class="QLabel" name="edm_lbl_lieuNaissance">
  3425. <property name="minimumSize">
  3426. <size>
  3427. <width>71</width>
  3428. <height>31</height>
  3429. </size>
  3430. </property>
  3431. <property name="maximumSize">
  3432. <size>
  3433. <width>71</width>
  3434. <height>31</height>
  3435. </size>
  3436. </property>
  3437. <property name="font">
  3438. <font>
  3439. <family>Verdana</family>
  3440. <pointsize>8</pointsize>
  3441. </font>
  3442. </property>
  3443. <property name="text">
  3444. <string>Lieu de
  3445. naissance :</string>
  3446. </property>
  3447. </widget>
  3448. </item>
  3449. <item row="4" column="1">
  3450. <widget class="DmLineEdit" name="edm_detail_age">
  3451. <property name="minimumSize">
  3452. <size>
  3453. <width>81</width>
  3454. <height>20</height>
  3455. </size>
  3456. </property>
  3457. <property name="maximumSize">
  3458. <size>
  3459. <width>81</width>
  3460. <height>20</height>
  3461. </size>
  3462. </property>
  3463. <property name="palette">
  3464. <palette>
  3465. <active>
  3466. <colorrole role="Base">
  3467. <brush brushstyle="SolidPattern">
  3468. <color alpha="255">
  3469. <red>248</red>
  3470. <green>248</green>
  3471. <blue>248</blue>
  3472. </color>
  3473. </brush>
  3474. </colorrole>
  3475. </active>
  3476. <inactive>
  3477. <colorrole role="Base">
  3478. <brush brushstyle="SolidPattern">
  3479. <color alpha="255">
  3480. <red>248</red>
  3481. <green>248</green>
  3482. <blue>248</blue>
  3483. </color>
  3484. </brush>
  3485. </colorrole>
  3486. </inactive>
  3487. <disabled>
  3488. <colorrole role="Base">
  3489. <brush brushstyle="SolidPattern">
  3490. <color alpha="255">
  3491. <red>240</red>
  3492. <green>240</green>
  3493. <blue>240</blue>
  3494. </color>
  3495. </brush>
  3496. </colorrole>
  3497. </disabled>
  3498. </palette>
  3499. </property>
  3500. <property name="font">
  3501. <font>
  3502. <family>Verdana</family>
  3503. </font>
  3504. </property>
  3505. </widget>
  3506. </item>
  3507. <item row="2" column="0">
  3508. <widget class="QLabel" name="edm_lbl_religion">
  3509. <property name="minimumSize">
  3510. <size>
  3511. <width>81</width>
  3512. <height>31</height>
  3513. </size>
  3514. </property>
  3515. <property name="maximumSize">
  3516. <size>
  3517. <width>81</width>
  3518. <height>31</height>
  3519. </size>
  3520. </property>
  3521. <property name="font">
  3522. <font>
  3523. <family>Verdana</family>
  3524. <pointsize>8</pointsize>
  3525. </font>
  3526. </property>
  3527. <property name="text">
  3528. <string>Religion /
  3529. Croyances :</string>
  3530. </property>
  3531. </widget>
  3532. </item>
  3533. <item row="10" column="0" colspan="4">
  3534. <widget class="DmTextEdit" name="edd_details_notes">
  3535. <property name="palette">
  3536. <palette>
  3537. <active>
  3538. <colorrole role="Base">
  3539. <brush brushstyle="SolidPattern">
  3540. <color alpha="255">
  3541. <red>248</red>
  3542. <green>248</green>
  3543. <blue>248</blue>
  3544. </color>
  3545. </brush>
  3546. </colorrole>
  3547. </active>
  3548. <inactive>
  3549. <colorrole role="Base">
  3550. <brush brushstyle="SolidPattern">
  3551. <color alpha="255">
  3552. <red>248</red>
  3553. <green>248</green>
  3554. <blue>248</blue>
  3555. </color>
  3556. </brush>
  3557. </colorrole>
  3558. </inactive>
  3559. <disabled>
  3560. <colorrole role="Base">
  3561. <brush brushstyle="SolidPattern">
  3562. <color alpha="255">
  3563. <red>240</red>
  3564. <green>240</green>
  3565. <blue>240</blue>
  3566. </color>
  3567. </brush>
  3568. </colorrole>
  3569. </disabled>
  3570. </palette>
  3571. </property>
  3572. <property name="font">
  3573. <font>
  3574. <family>Verdana</family>
  3575. </font>
  3576. </property>
  3577. </widget>
  3578. </item>
  3579. </layout>
  3580. </widget>
  3581. </widget>
  3582. </widget>
  3583. </item>
  3584. <item>
  3585. <widget class="QFrame" name="frame">
  3586. <property name="minimumSize">
  3587. <size>
  3588. <width>392</width>
  3589. <height>50</height>
  3590. </size>
  3591. </property>
  3592. <property name="maximumSize">
  3593. <size>
  3594. <width>16777215</width>
  3595. <height>50</height>
  3596. </size>
  3597. </property>
  3598. <property name="font">
  3599. <font>
  3600. <family>Verdana</family>
  3601. </font>
  3602. </property>
  3603. <property name="frameShape">
  3604. <enum>QFrame::StyledPanel</enum>
  3605. </property>
  3606. <property name="frameShadow">
  3607. <enum>QFrame::Raised</enum>
  3608. </property>
  3609. <widget class="QPushButton" name="edm_enregistrer">
  3610. <property name="enabled">
  3611. <bool>false</bool>
  3612. </property>
  3613. <property name="geometry">
  3614. <rect>
  3615. <x>370</x>
  3616. <y>10</y>
  3617. <width>111</width>
  3618. <height>31</height>
  3619. </rect>
  3620. </property>
  3621. <property name="font">
  3622. <font>
  3623. <family>Verdana</family>
  3624. <weight>75</weight>
  3625. <bold>true</bold>
  3626. </font>
  3627. </property>
  3628. <property name="text">
  3629. <string>Enregistrer</string>
  3630. </property>
  3631. <property name="default">
  3632. <bool>true</bool>
  3633. </property>
  3634. </widget>
  3635. <widget class="QPushButton" name="edm_annuler">
  3636. <property name="geometry">
  3637. <rect>
  3638. <x>280</x>
  3639. <y>10</y>
  3640. <width>81</width>
  3641. <height>31</height>
  3642. </rect>
  3643. </property>
  3644. <property name="font">
  3645. <font>
  3646. <family>Verdana</family>
  3647. </font>
  3648. </property>
  3649. <property name="text">
  3650. <string>Annuler</string>
  3651. </property>
  3652. <property name="autoDefault">
  3653. <bool>false</bool>
  3654. </property>
  3655. </widget>
  3656. </widget>
  3657. </item>
  3658. </layout>
  3659. </item>
  3660. </layout>
  3661. </item>
  3662. </layout>
  3663. </item>
  3664. </layout>
  3665. </widget>
  3666. <customwidgets>
  3667. <customwidget>
  3668. <class>DmLineEdit</class>
  3669. <extends>QLineEdit</extends>
  3670. <header location="global">dm.h</header>
  3671. </customwidget>
  3672. <customwidget>
  3673. <class>DmTableMenu</class>
  3674. <extends>QTableWidget</extends>
  3675. <header location="global">dm.h</header>
  3676. </customwidget>
  3677. <customwidget>
  3678. <class>DmLabel</class>
  3679. <extends>QLabel</extends>
  3680. <header location="global">dm.h</header>
  3681. </customwidget>
  3682. <customwidget>
  3683. <class>DmTableInventaire</class>
  3684. <extends>QTableWidget</extends>
  3685. <header location="global">dm.h</header>
  3686. </customwidget>
  3687. <customwidget>
  3688. <class>DmTabInventaire</class>
  3689. <extends>QTabWidget</extends>
  3690. <header>dm.h</header>
  3691. <container>1</container>
  3692. </customwidget>
  3693. <customwidget>
  3694. <class>DmTextEdit</class>
  3695. <extends>QTextEdit</extends>
  3696. <header location="global">dm.h</header>
  3697. </customwidget>
  3698. </customwidgets>
  3699. <resources>
  3700. <include location="ressource.qrc"/>
  3701. </resources>
  3702. <connections>
  3703. <connection>
  3704. <sender>edm_menu</sender>
  3705. <signal>cellClicked(int,int)</signal>
  3706. <receiver>edm_pages</receiver>
  3707. <slot>setCurrentIndex(int)</slot>
  3708. <hints>
  3709. <hint type="sourcelabel">
  3710. <x>80</x>
  3711. <y>164</y>
  3712. </hint>
  3713. <hint type="destinationlabel">
  3714. <x>312</x>
  3715. <y>164</y>
  3716. </hint>
  3717. </hints>
  3718. </connection>
  3719. </connections>
  3720. </ui>