editionCombattant.ui 99 KB

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