editionCombattant.ui 82 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784
  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>2</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>340</x>
  1391. <y>40</y>
  1392. <width>121</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>320</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 class="QScrollArea" name="edc_deroulementAttributs">
  1495. <property name="geometry">
  1496. <rect>
  1497. <x>10</x>
  1498. <y>10</y>
  1499. <width>231</width>
  1500. <height>411</height>
  1501. </rect>
  1502. </property>
  1503. <property name="frameShape">
  1504. <enum>QFrame::StyledPanel</enum>
  1505. </property>
  1506. <property name="frameShadow">
  1507. <enum>QFrame::Raised</enum>
  1508. </property>
  1509. <property name="widgetResizable">
  1510. <bool>true</bool>
  1511. </property>
  1512. <widget class="QWidget" name="scrollAreaWidgetContents_2">
  1513. <property name="geometry">
  1514. <rect>
  1515. <x>0</x>
  1516. <y>0</y>
  1517. <width>229</width>
  1518. <height>409</height>
  1519. </rect>
  1520. </property>
  1521. <layout class="QVBoxLayout" name="edc_deroulementAttributs_layout">
  1522. <property name="spacing">
  1523. <number>1</number>
  1524. </property>
  1525. <property name="leftMargin">
  1526. <number>3</number>
  1527. </property>
  1528. <property name="topMargin">
  1529. <number>3</number>
  1530. </property>
  1531. <property name="rightMargin">
  1532. <number>3</number>
  1533. </property>
  1534. <property name="bottomMargin">
  1535. <number>3</number>
  1536. </property>
  1537. </layout>
  1538. </widget>
  1539. </widget>
  1540. </widget>
  1541. <widget class="QWidget" name="page_att">
  1542. <widget class="QScrollArea" name="edc_deroulementAttaques">
  1543. <property name="geometry">
  1544. <rect>
  1545. <x>0</x>
  1546. <y>0</y>
  1547. <width>491</width>
  1548. <height>431</height>
  1549. </rect>
  1550. </property>
  1551. <property name="widgetResizable">
  1552. <bool>true</bool>
  1553. </property>
  1554. <widget class="QWidget" name="scrollAreaWidgetContents">
  1555. <property name="geometry">
  1556. <rect>
  1557. <x>0</x>
  1558. <y>0</y>
  1559. <width>489</width>
  1560. <height>429</height>
  1561. </rect>
  1562. </property>
  1563. <layout class="QVBoxLayout" name="edc_deroulementAttaques_layout">
  1564. <property name="spacing">
  1565. <number>1</number>
  1566. </property>
  1567. <property name="leftMargin">
  1568. <number>3</number>
  1569. </property>
  1570. <property name="topMargin">
  1571. <number>3</number>
  1572. </property>
  1573. <property name="rightMargin">
  1574. <number>3</number>
  1575. </property>
  1576. <property name="bottomMargin">
  1577. <number>3</number>
  1578. </property>
  1579. </layout>
  1580. </widget>
  1581. </widget>
  1582. </widget>
  1583. <widget class="QWidget" name="page_invent">
  1584. <widget class="QTableWidget" name="edc_listeInventaire">
  1585. <property name="geometry">
  1586. <rect>
  1587. <x>20</x>
  1588. <y>50</y>
  1589. <width>381</width>
  1590. <height>311</height>
  1591. </rect>
  1592. </property>
  1593. <property name="palette">
  1594. <palette>
  1595. <active>
  1596. <colorrole role="Base">
  1597. <brush brushstyle="SolidPattern">
  1598. <color alpha="150">
  1599. <red>255</red>
  1600. <green>255</green>
  1601. <blue>255</blue>
  1602. </color>
  1603. </brush>
  1604. </colorrole>
  1605. </active>
  1606. <inactive>
  1607. <colorrole role="Base">
  1608. <brush brushstyle="SolidPattern">
  1609. <color alpha="150">
  1610. <red>255</red>
  1611. <green>255</green>
  1612. <blue>255</blue>
  1613. </color>
  1614. </brush>
  1615. </colorrole>
  1616. </inactive>
  1617. <disabled>
  1618. <colorrole role="Base">
  1619. <brush brushstyle="SolidPattern">
  1620. <color alpha="255">
  1621. <red>240</red>
  1622. <green>240</green>
  1623. <blue>240</blue>
  1624. </color>
  1625. </brush>
  1626. </colorrole>
  1627. </disabled>
  1628. </palette>
  1629. </property>
  1630. <property name="font">
  1631. <font>
  1632. <family>Verdana</family>
  1633. </font>
  1634. </property>
  1635. <property name="frameShape">
  1636. <enum>QFrame::WinPanel</enum>
  1637. </property>
  1638. <property name="horizontalScrollBarPolicy">
  1639. <enum>Qt::ScrollBarAlwaysOff</enum>
  1640. </property>
  1641. <property name="editTriggers">
  1642. <set>QAbstractItemView::AllEditTriggers</set>
  1643. </property>
  1644. <property name="alternatingRowColors">
  1645. <bool>true</bool>
  1646. </property>
  1647. <property name="selectionMode">
  1648. <enum>QAbstractItemView::NoSelection</enum>
  1649. </property>
  1650. <property name="showGrid">
  1651. <bool>true</bool>
  1652. </property>
  1653. <attribute name="horizontalHeaderVisible">
  1654. <bool>false</bool>
  1655. </attribute>
  1656. <attribute name="horizontalHeaderDefaultSectionSize">
  1657. <number>50</number>
  1658. </attribute>
  1659. <attribute name="verticalHeaderVisible">
  1660. <bool>false</bool>
  1661. </attribute>
  1662. <column>
  1663. <property name="text">
  1664. <string>nombre</string>
  1665. </property>
  1666. </column>
  1667. <column>
  1668. <property name="text">
  1669. <string>objet</string>
  1670. </property>
  1671. </column>
  1672. </widget>
  1673. <widget class="QToolButton" name="edc_inventaire_supprimer">
  1674. <property name="geometry">
  1675. <rect>
  1676. <x>380</x>
  1677. <y>360</y>
  1678. <width>21</width>
  1679. <height>20</height>
  1680. </rect>
  1681. </property>
  1682. <property name="text">
  1683. <string>...</string>
  1684. </property>
  1685. <property name="icon">
  1686. <iconset>
  1687. <normaloff>img/gomme.png</normaloff>img/gomme.png</iconset>
  1688. </property>
  1689. </widget>
  1690. <widget class="QLabel" name="label_24">
  1691. <property name="geometry">
  1692. <rect>
  1693. <x>20</x>
  1694. <y>20</y>
  1695. <width>131</width>
  1696. <height>20</height>
  1697. </rect>
  1698. </property>
  1699. <property name="font">
  1700. <font>
  1701. <family>Verdana</family>
  1702. </font>
  1703. </property>
  1704. <property name="text">
  1705. <string>Inventaire :</string>
  1706. </property>
  1707. </widget>
  1708. <widget class="QToolButton" name="edc_inventaire_nouveau">
  1709. <property name="geometry">
  1710. <rect>
  1711. <x>350</x>
  1712. <y>360</y>
  1713. <width>21</width>
  1714. <height>20</height>
  1715. </rect>
  1716. </property>
  1717. <property name="text">
  1718. <string>...</string>
  1719. </property>
  1720. <property name="icon">
  1721. <iconset>
  1722. <normaloff>img/plus.png</normaloff>img/plus.png</iconset>
  1723. </property>
  1724. </widget>
  1725. </widget>
  1726. <widget class="QWidget" name="page_notes">
  1727. <widget class="QLabel" name="label_23">
  1728. <property name="geometry">
  1729. <rect>
  1730. <x>20</x>
  1731. <y>240</y>
  1732. <width>151</width>
  1733. <height>20</height>
  1734. </rect>
  1735. </property>
  1736. <property name="font">
  1737. <font>
  1738. <family>Verdana</family>
  1739. </font>
  1740. </property>
  1741. <property name="text">
  1742. <string>Notes :</string>
  1743. </property>
  1744. </widget>
  1745. <widget class="QTextEdit" name="edc_notes">
  1746. <property name="geometry">
  1747. <rect>
  1748. <x>20</x>
  1749. <y>270</y>
  1750. <width>411</width>
  1751. <height>171</height>
  1752. </rect>
  1753. </property>
  1754. <property name="palette">
  1755. <palette>
  1756. <active>
  1757. <colorrole role="Base">
  1758. <brush brushstyle="SolidPattern">
  1759. <color alpha="255">
  1760. <red>248</red>
  1761. <green>248</green>
  1762. <blue>248</blue>
  1763. </color>
  1764. </brush>
  1765. </colorrole>
  1766. </active>
  1767. <inactive>
  1768. <colorrole role="Base">
  1769. <brush brushstyle="SolidPattern">
  1770. <color alpha="255">
  1771. <red>248</red>
  1772. <green>248</green>
  1773. <blue>248</blue>
  1774. </color>
  1775. </brush>
  1776. </colorrole>
  1777. </inactive>
  1778. <disabled>
  1779. <colorrole role="Base">
  1780. <brush brushstyle="SolidPattern">
  1781. <color alpha="255">
  1782. <red>240</red>
  1783. <green>240</green>
  1784. <blue>240</blue>
  1785. </color>
  1786. </brush>
  1787. </colorrole>
  1788. </disabled>
  1789. </palette>
  1790. </property>
  1791. <property name="font">
  1792. <font>
  1793. <family>Verdana</family>
  1794. </font>
  1795. </property>
  1796. </widget>
  1797. <widget class="DmLineEdit" name="edc_detail_age">
  1798. <property name="geometry">
  1799. <rect>
  1800. <x>350</x>
  1801. <y>20</y>
  1802. <width>81</width>
  1803. <height>20</height>
  1804. </rect>
  1805. </property>
  1806. <property name="palette">
  1807. <palette>
  1808. <active>
  1809. <colorrole role="Base">
  1810. <brush brushstyle="SolidPattern">
  1811. <color alpha="255">
  1812. <red>248</red>
  1813. <green>248</green>
  1814. <blue>248</blue>
  1815. </color>
  1816. </brush>
  1817. </colorrole>
  1818. </active>
  1819. <inactive>
  1820. <colorrole role="Base">
  1821. <brush brushstyle="SolidPattern">
  1822. <color alpha="255">
  1823. <red>248</red>
  1824. <green>248</green>
  1825. <blue>248</blue>
  1826. </color>
  1827. </brush>
  1828. </colorrole>
  1829. </inactive>
  1830. <disabled>
  1831. <colorrole role="Base">
  1832. <brush brushstyle="SolidPattern">
  1833. <color alpha="255">
  1834. <red>240</red>
  1835. <green>240</green>
  1836. <blue>240</blue>
  1837. </color>
  1838. </brush>
  1839. </colorrole>
  1840. </disabled>
  1841. </palette>
  1842. </property>
  1843. <property name="font">
  1844. <font>
  1845. <family>Verdana</family>
  1846. </font>
  1847. </property>
  1848. </widget>
  1849. <widget class="QLabel" name="label_16">
  1850. <property name="geometry">
  1851. <rect>
  1852. <x>300</x>
  1853. <y>19</y>
  1854. <width>41</width>
  1855. <height>21</height>
  1856. </rect>
  1857. </property>
  1858. <property name="font">
  1859. <font>
  1860. <family>Verdana</family>
  1861. <pointsize>8</pointsize>
  1862. </font>
  1863. </property>
  1864. <property name="text">
  1865. <string>Age : </string>
  1866. </property>
  1867. </widget>
  1868. <widget class="QLabel" name="label_17">
  1869. <property name="geometry">
  1870. <rect>
  1871. <x>300</x>
  1872. <y>49</y>
  1873. <width>41</width>
  1874. <height>21</height>
  1875. </rect>
  1876. </property>
  1877. <property name="font">
  1878. <font>
  1879. <family>Verdana</family>
  1880. <pointsize>8</pointsize>
  1881. </font>
  1882. </property>
  1883. <property name="text">
  1884. <string>Sexe : </string>
  1885. </property>
  1886. </widget>
  1887. <widget class="DmLineEdit" name="edc_detail_sexe">
  1888. <property name="geometry">
  1889. <rect>
  1890. <x>350</x>
  1891. <y>49</y>
  1892. <width>81</width>
  1893. <height>20</height>
  1894. </rect>
  1895. </property>
  1896. <property name="palette">
  1897. <palette>
  1898. <active>
  1899. <colorrole role="Base">
  1900. <brush brushstyle="SolidPattern">
  1901. <color alpha="255">
  1902. <red>248</red>
  1903. <green>248</green>
  1904. <blue>248</blue>
  1905. </color>
  1906. </brush>
  1907. </colorrole>
  1908. </active>
  1909. <inactive>
  1910. <colorrole role="Base">
  1911. <brush brushstyle="SolidPattern">
  1912. <color alpha="255">
  1913. <red>248</red>
  1914. <green>248</green>
  1915. <blue>248</blue>
  1916. </color>
  1917. </brush>
  1918. </colorrole>
  1919. </inactive>
  1920. <disabled>
  1921. <colorrole role="Base">
  1922. <brush brushstyle="SolidPattern">
  1923. <color alpha="255">
  1924. <red>240</red>
  1925. <green>240</green>
  1926. <blue>240</blue>
  1927. </color>
  1928. </brush>
  1929. </colorrole>
  1930. </disabled>
  1931. </palette>
  1932. </property>
  1933. <property name="font">
  1934. <font>
  1935. <family>Verdana</family>
  1936. </font>
  1937. </property>
  1938. </widget>
  1939. <widget class="DmLineEdit" name="edc_detail_yeux">
  1940. <property name="geometry">
  1941. <rect>
  1942. <x>100</x>
  1943. <y>140</y>
  1944. <width>91</width>
  1945. <height>20</height>
  1946. </rect>
  1947. </property>
  1948. <property name="palette">
  1949. <palette>
  1950. <active>
  1951. <colorrole role="Base">
  1952. <brush brushstyle="SolidPattern">
  1953. <color alpha="255">
  1954. <red>248</red>
  1955. <green>248</green>
  1956. <blue>248</blue>
  1957. </color>
  1958. </brush>
  1959. </colorrole>
  1960. </active>
  1961. <inactive>
  1962. <colorrole role="Base">
  1963. <brush brushstyle="SolidPattern">
  1964. <color alpha="255">
  1965. <red>248</red>
  1966. <green>248</green>
  1967. <blue>248</blue>
  1968. </color>
  1969. </brush>
  1970. </colorrole>
  1971. </inactive>
  1972. <disabled>
  1973. <colorrole role="Base">
  1974. <brush brushstyle="SolidPattern">
  1975. <color alpha="255">
  1976. <red>240</red>
  1977. <green>240</green>
  1978. <blue>240</blue>
  1979. </color>
  1980. </brush>
  1981. </colorrole>
  1982. </disabled>
  1983. </palette>
  1984. </property>
  1985. <property name="font">
  1986. <font>
  1987. <family>Verdana</family>
  1988. </font>
  1989. </property>
  1990. <property name="text">
  1991. <string/>
  1992. </property>
  1993. </widget>
  1994. <widget class="QLabel" name="label_37">
  1995. <property name="geometry">
  1996. <rect>
  1997. <x>20</x>
  1998. <y>140</y>
  1999. <width>71</width>
  2000. <height>21</height>
  2001. </rect>
  2002. </property>
  2003. <property name="font">
  2004. <font>
  2005. <family>Verdana</family>
  2006. <pointsize>8</pointsize>
  2007. </font>
  2008. </property>
  2009. <property name="text">
  2010. <string>Yeux :</string>
  2011. </property>
  2012. </widget>
  2013. <widget class="DmLineEdit" name="edc_detail_peau">
  2014. <property name="geometry">
  2015. <rect>
  2016. <x>100</x>
  2017. <y>170</y>
  2018. <width>91</width>
  2019. <height>20</height>
  2020. </rect>
  2021. </property>
  2022. <property name="palette">
  2023. <palette>
  2024. <active>
  2025. <colorrole role="Base">
  2026. <brush brushstyle="SolidPattern">
  2027. <color alpha="255">
  2028. <red>248</red>
  2029. <green>248</green>
  2030. <blue>248</blue>
  2031. </color>
  2032. </brush>
  2033. </colorrole>
  2034. </active>
  2035. <inactive>
  2036. <colorrole role="Base">
  2037. <brush brushstyle="SolidPattern">
  2038. <color alpha="255">
  2039. <red>248</red>
  2040. <green>248</green>
  2041. <blue>248</blue>
  2042. </color>
  2043. </brush>
  2044. </colorrole>
  2045. </inactive>
  2046. <disabled>
  2047. <colorrole role="Base">
  2048. <brush brushstyle="SolidPattern">
  2049. <color alpha="255">
  2050. <red>240</red>
  2051. <green>240</green>
  2052. <blue>240</blue>
  2053. </color>
  2054. </brush>
  2055. </colorrole>
  2056. </disabled>
  2057. </palette>
  2058. </property>
  2059. <property name="font">
  2060. <font>
  2061. <family>Verdana</family>
  2062. </font>
  2063. </property>
  2064. <property name="text">
  2065. <string/>
  2066. </property>
  2067. </widget>
  2068. <widget class="QLabel" name="label_38">
  2069. <property name="geometry">
  2070. <rect>
  2071. <x>20</x>
  2072. <y>170</y>
  2073. <width>61</width>
  2074. <height>21</height>
  2075. </rect>
  2076. </property>
  2077. <property name="font">
  2078. <font>
  2079. <family>Verdana</family>
  2080. <pointsize>8</pointsize>
  2081. </font>
  2082. </property>
  2083. <property name="text">
  2084. <string>Peau :</string>
  2085. </property>
  2086. </widget>
  2087. <widget class="QLabel" name="label_39">
  2088. <property name="geometry">
  2089. <rect>
  2090. <x>210</x>
  2091. <y>140</y>
  2092. <width>101</width>
  2093. <height>21</height>
  2094. </rect>
  2095. </property>
  2096. <property name="font">
  2097. <font>
  2098. <family>Verdana</family>
  2099. <pointsize>8</pointsize>
  2100. </font>
  2101. </property>
  2102. <property name="text">
  2103. <string>Poils /Cheveux :</string>
  2104. </property>
  2105. </widget>
  2106. <widget class="DmLineEdit" name="edc_detail_cheveux">
  2107. <property name="geometry">
  2108. <rect>
  2109. <x>320</x>
  2110. <y>140</y>
  2111. <width>91</width>
  2112. <height>20</height>
  2113. </rect>
  2114. </property>
  2115. <property name="palette">
  2116. <palette>
  2117. <active>
  2118. <colorrole role="Base">
  2119. <brush brushstyle="SolidPattern">
  2120. <color alpha="255">
  2121. <red>248</red>
  2122. <green>248</green>
  2123. <blue>248</blue>
  2124. </color>
  2125. </brush>
  2126. </colorrole>
  2127. </active>
  2128. <inactive>
  2129. <colorrole role="Base">
  2130. <brush brushstyle="SolidPattern">
  2131. <color alpha="255">
  2132. <red>248</red>
  2133. <green>248</green>
  2134. <blue>248</blue>
  2135. </color>
  2136. </brush>
  2137. </colorrole>
  2138. </inactive>
  2139. <disabled>
  2140. <colorrole role="Base">
  2141. <brush brushstyle="SolidPattern">
  2142. <color alpha="255">
  2143. <red>240</red>
  2144. <green>240</green>
  2145. <blue>240</blue>
  2146. </color>
  2147. </brush>
  2148. </colorrole>
  2149. </disabled>
  2150. </palette>
  2151. </property>
  2152. <property name="font">
  2153. <font>
  2154. <family>Verdana</family>
  2155. </font>
  2156. </property>
  2157. <property name="text">
  2158. <string/>
  2159. </property>
  2160. </widget>
  2161. <widget class="DmLineEdit" name="edc_detail_lieuNaissance">
  2162. <property name="geometry">
  2163. <rect>
  2164. <x>100</x>
  2165. <y>110</y>
  2166. <width>171</width>
  2167. <height>20</height>
  2168. </rect>
  2169. </property>
  2170. <property name="palette">
  2171. <palette>
  2172. <active>
  2173. <colorrole role="Base">
  2174. <brush brushstyle="SolidPattern">
  2175. <color alpha="255">
  2176. <red>248</red>
  2177. <green>248</green>
  2178. <blue>248</blue>
  2179. </color>
  2180. </brush>
  2181. </colorrole>
  2182. </active>
  2183. <inactive>
  2184. <colorrole role="Base">
  2185. <brush brushstyle="SolidPattern">
  2186. <color alpha="255">
  2187. <red>248</red>
  2188. <green>248</green>
  2189. <blue>248</blue>
  2190. </color>
  2191. </brush>
  2192. </colorrole>
  2193. </inactive>
  2194. <disabled>
  2195. <colorrole role="Base">
  2196. <brush brushstyle="SolidPattern">
  2197. <color alpha="255">
  2198. <red>240</red>
  2199. <green>240</green>
  2200. <blue>240</blue>
  2201. </color>
  2202. </brush>
  2203. </colorrole>
  2204. </disabled>
  2205. </palette>
  2206. </property>
  2207. <property name="font">
  2208. <font>
  2209. <family>Verdana</family>
  2210. </font>
  2211. </property>
  2212. <property name="text">
  2213. <string/>
  2214. </property>
  2215. </widget>
  2216. <widget class="QLabel" name="label_40">
  2217. <property name="geometry">
  2218. <rect>
  2219. <x>20</x>
  2220. <y>100</y>
  2221. <width>71</width>
  2222. <height>31</height>
  2223. </rect>
  2224. </property>
  2225. <property name="font">
  2226. <font>
  2227. <family>Verdana</family>
  2228. <pointsize>8</pointsize>
  2229. </font>
  2230. </property>
  2231. <property name="text">
  2232. <string>Lieu de
  2233. naissance :</string>
  2234. </property>
  2235. </widget>
  2236. <widget class="QLabel" name="label_41">
  2237. <property name="geometry">
  2238. <rect>
  2239. <x>300</x>
  2240. <y>79</y>
  2241. <width>41</width>
  2242. <height>21</height>
  2243. </rect>
  2244. </property>
  2245. <property name="font">
  2246. <font>
  2247. <family>Verdana</family>
  2248. <pointsize>8</pointsize>
  2249. </font>
  2250. </property>
  2251. <property name="text">
  2252. <string>Poids : </string>
  2253. </property>
  2254. </widget>
  2255. <widget class="DmLineEdit" name="edc_detail_poids">
  2256. <property name="geometry">
  2257. <rect>
  2258. <x>350</x>
  2259. <y>80</y>
  2260. <width>81</width>
  2261. <height>20</height>
  2262. </rect>
  2263. </property>
  2264. <property name="palette">
  2265. <palette>
  2266. <active>
  2267. <colorrole role="Base">
  2268. <brush brushstyle="SolidPattern">
  2269. <color alpha="255">
  2270. <red>248</red>
  2271. <green>248</green>
  2272. <blue>248</blue>
  2273. </color>
  2274. </brush>
  2275. </colorrole>
  2276. </active>
  2277. <inactive>
  2278. <colorrole role="Base">
  2279. <brush brushstyle="SolidPattern">
  2280. <color alpha="255">
  2281. <red>248</red>
  2282. <green>248</green>
  2283. <blue>248</blue>
  2284. </color>
  2285. </brush>
  2286. </colorrole>
  2287. </inactive>
  2288. <disabled>
  2289. <colorrole role="Base">
  2290. <brush brushstyle="SolidPattern">
  2291. <color alpha="255">
  2292. <red>240</red>
  2293. <green>240</green>
  2294. <blue>240</blue>
  2295. </color>
  2296. </brush>
  2297. </colorrole>
  2298. </disabled>
  2299. </palette>
  2300. </property>
  2301. <property name="font">
  2302. <font>
  2303. <family>Verdana</family>
  2304. </font>
  2305. </property>
  2306. </widget>
  2307. <widget class="QLabel" name="label_43">
  2308. <property name="geometry">
  2309. <rect>
  2310. <x>20</x>
  2311. <y>20</y>
  2312. <width>61</width>
  2313. <height>21</height>
  2314. </rect>
  2315. </property>
  2316. <property name="font">
  2317. <font>
  2318. <family>Verdana</family>
  2319. <pointsize>8</pointsize>
  2320. </font>
  2321. </property>
  2322. <property name="text">
  2323. <string>Espèce : </string>
  2324. </property>
  2325. </widget>
  2326. <widget class="DmLineEdit" name="edc_detail_espece">
  2327. <property name="geometry">
  2328. <rect>
  2329. <x>100</x>
  2330. <y>21</y>
  2331. <width>171</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. <property name="text">
  2378. <string/>
  2379. </property>
  2380. </widget>
  2381. <widget class="QLabel" name="label_44">
  2382. <property name="geometry">
  2383. <rect>
  2384. <x>20</x>
  2385. <y>49</y>
  2386. <width>81</width>
  2387. <height>21</height>
  2388. </rect>
  2389. </property>
  2390. <property name="font">
  2391. <font>
  2392. <family>Verdana</family>
  2393. <pointsize>8</pointsize>
  2394. </font>
  2395. </property>
  2396. <property name="text">
  2397. <string>Profession : </string>
  2398. </property>
  2399. </widget>
  2400. <widget class="DmLineEdit" name="edc_detail_profession">
  2401. <property name="geometry">
  2402. <rect>
  2403. <x>100</x>
  2404. <y>50</y>
  2405. <width>171</width>
  2406. <height>20</height>
  2407. </rect>
  2408. </property>
  2409. <property name="palette">
  2410. <palette>
  2411. <active>
  2412. <colorrole role="Base">
  2413. <brush brushstyle="SolidPattern">
  2414. <color alpha="255">
  2415. <red>248</red>
  2416. <green>248</green>
  2417. <blue>248</blue>
  2418. </color>
  2419. </brush>
  2420. </colorrole>
  2421. </active>
  2422. <inactive>
  2423. <colorrole role="Base">
  2424. <brush brushstyle="SolidPattern">
  2425. <color alpha="255">
  2426. <red>248</red>
  2427. <green>248</green>
  2428. <blue>248</blue>
  2429. </color>
  2430. </brush>
  2431. </colorrole>
  2432. </inactive>
  2433. <disabled>
  2434. <colorrole role="Base">
  2435. <brush brushstyle="SolidPattern">
  2436. <color alpha="255">
  2437. <red>240</red>
  2438. <green>240</green>
  2439. <blue>240</blue>
  2440. </color>
  2441. </brush>
  2442. </colorrole>
  2443. </disabled>
  2444. </palette>
  2445. </property>
  2446. <property name="font">
  2447. <font>
  2448. <family>Verdana</family>
  2449. </font>
  2450. </property>
  2451. <property name="text">
  2452. <string/>
  2453. </property>
  2454. </widget>
  2455. <widget class="QLabel" name="label_45">
  2456. <property name="geometry">
  2457. <rect>
  2458. <x>300</x>
  2459. <y>109</y>
  2460. <width>41</width>
  2461. <height>21</height>
  2462. </rect>
  2463. </property>
  2464. <property name="font">
  2465. <font>
  2466. <family>Verdana</family>
  2467. <pointsize>8</pointsize>
  2468. </font>
  2469. </property>
  2470. <property name="text">
  2471. <string>Taille : </string>
  2472. </property>
  2473. </widget>
  2474. <widget class="DmLineEdit" name="edc_detail_taille">
  2475. <property name="geometry">
  2476. <rect>
  2477. <x>350</x>
  2478. <y>109</y>
  2479. <width>81</width>
  2480. <height>21</height>
  2481. </rect>
  2482. </property>
  2483. <property name="palette">
  2484. <palette>
  2485. <active>
  2486. <colorrole role="Base">
  2487. <brush brushstyle="SolidPattern">
  2488. <color alpha="255">
  2489. <red>248</red>
  2490. <green>248</green>
  2491. <blue>248</blue>
  2492. </color>
  2493. </brush>
  2494. </colorrole>
  2495. </active>
  2496. <inactive>
  2497. <colorrole role="Base">
  2498. <brush brushstyle="SolidPattern">
  2499. <color alpha="255">
  2500. <red>248</red>
  2501. <green>248</green>
  2502. <blue>248</blue>
  2503. </color>
  2504. </brush>
  2505. </colorrole>
  2506. </inactive>
  2507. <disabled>
  2508. <colorrole role="Base">
  2509. <brush brushstyle="SolidPattern">
  2510. <color alpha="255">
  2511. <red>240</red>
  2512. <green>240</green>
  2513. <blue>240</blue>
  2514. </color>
  2515. </brush>
  2516. </colorrole>
  2517. </disabled>
  2518. </palette>
  2519. </property>
  2520. <property name="font">
  2521. <font>
  2522. <family>Verdana</family>
  2523. </font>
  2524. </property>
  2525. <property name="text">
  2526. <string/>
  2527. </property>
  2528. </widget>
  2529. <widget class="DmLineEdit" name="edc_detail_religion">
  2530. <property name="geometry">
  2531. <rect>
  2532. <x>100</x>
  2533. <y>80</y>
  2534. <width>171</width>
  2535. <height>21</height>
  2536. </rect>
  2537. </property>
  2538. <property name="palette">
  2539. <palette>
  2540. <active>
  2541. <colorrole role="Base">
  2542. <brush brushstyle="SolidPattern">
  2543. <color alpha="255">
  2544. <red>248</red>
  2545. <green>248</green>
  2546. <blue>248</blue>
  2547. </color>
  2548. </brush>
  2549. </colorrole>
  2550. </active>
  2551. <inactive>
  2552. <colorrole role="Base">
  2553. <brush brushstyle="SolidPattern">
  2554. <color alpha="255">
  2555. <red>248</red>
  2556. <green>248</green>
  2557. <blue>248</blue>
  2558. </color>
  2559. </brush>
  2560. </colorrole>
  2561. </inactive>
  2562. <disabled>
  2563. <colorrole role="Base">
  2564. <brush brushstyle="SolidPattern">
  2565. <color alpha="255">
  2566. <red>240</red>
  2567. <green>240</green>
  2568. <blue>240</blue>
  2569. </color>
  2570. </brush>
  2571. </colorrole>
  2572. </disabled>
  2573. </palette>
  2574. </property>
  2575. <property name="font">
  2576. <font>
  2577. <family>Verdana</family>
  2578. </font>
  2579. </property>
  2580. <property name="text">
  2581. <string/>
  2582. </property>
  2583. </widget>
  2584. <widget class="QLabel" name="label_42">
  2585. <property name="geometry">
  2586. <rect>
  2587. <x>20</x>
  2588. <y>70</y>
  2589. <width>81</width>
  2590. <height>31</height>
  2591. </rect>
  2592. </property>
  2593. <property name="font">
  2594. <font>
  2595. <family>Verdana</family>
  2596. <pointsize>8</pointsize>
  2597. </font>
  2598. </property>
  2599. <property name="text">
  2600. <string>Religion /
  2601. Croyances :</string>
  2602. </property>
  2603. </widget>
  2604. <widget class="DmLineEdit" name="edc_detail_langues">
  2605. <property name="geometry">
  2606. <rect>
  2607. <x>100</x>
  2608. <y>200</y>
  2609. <width>331</width>
  2610. <height>20</height>
  2611. </rect>
  2612. </property>
  2613. <property name="palette">
  2614. <palette>
  2615. <active>
  2616. <colorrole role="Base">
  2617. <brush brushstyle="SolidPattern">
  2618. <color alpha="255">
  2619. <red>248</red>
  2620. <green>248</green>
  2621. <blue>248</blue>
  2622. </color>
  2623. </brush>
  2624. </colorrole>
  2625. </active>
  2626. <inactive>
  2627. <colorrole role="Base">
  2628. <brush brushstyle="SolidPattern">
  2629. <color alpha="255">
  2630. <red>248</red>
  2631. <green>248</green>
  2632. <blue>248</blue>
  2633. </color>
  2634. </brush>
  2635. </colorrole>
  2636. </inactive>
  2637. <disabled>
  2638. <colorrole role="Base">
  2639. <brush brushstyle="SolidPattern">
  2640. <color alpha="255">
  2641. <red>240</red>
  2642. <green>240</green>
  2643. <blue>240</blue>
  2644. </color>
  2645. </brush>
  2646. </colorrole>
  2647. </disabled>
  2648. </palette>
  2649. </property>
  2650. </widget>
  2651. <widget class="QLabel" name="label_47">
  2652. <property name="geometry">
  2653. <rect>
  2654. <x>20</x>
  2655. <y>190</y>
  2656. <width>61</width>
  2657. <height>41</height>
  2658. </rect>
  2659. </property>
  2660. <property name="font">
  2661. <font>
  2662. <family>Verdana</family>
  2663. <pointsize>8</pointsize>
  2664. </font>
  2665. </property>
  2666. <property name="text">
  2667. <string>Langues
  2668. parlées : </string>
  2669. </property>
  2670. </widget>
  2671. </widget>
  2672. </widget>
  2673. </item>
  2674. <item>
  2675. <widget class="QFrame" name="frame">
  2676. <property name="minimumSize">
  2677. <size>
  2678. <width>392</width>
  2679. <height>50</height>
  2680. </size>
  2681. </property>
  2682. <property name="maximumSize">
  2683. <size>
  2684. <width>16777215</width>
  2685. <height>50</height>
  2686. </size>
  2687. </property>
  2688. <property name="font">
  2689. <font>
  2690. <family>Verdana</family>
  2691. </font>
  2692. </property>
  2693. <property name="frameShape">
  2694. <enum>QFrame::StyledPanel</enum>
  2695. </property>
  2696. <property name="frameShadow">
  2697. <enum>QFrame::Raised</enum>
  2698. </property>
  2699. <widget class="QPushButton" name="edc_enregistrer">
  2700. <property name="enabled">
  2701. <bool>false</bool>
  2702. </property>
  2703. <property name="geometry">
  2704. <rect>
  2705. <x>370</x>
  2706. <y>10</y>
  2707. <width>111</width>
  2708. <height>31</height>
  2709. </rect>
  2710. </property>
  2711. <property name="font">
  2712. <font>
  2713. <family>Verdana</family>
  2714. <weight>75</weight>
  2715. <bold>true</bold>
  2716. </font>
  2717. </property>
  2718. <property name="text">
  2719. <string>Enregistrer</string>
  2720. </property>
  2721. </widget>
  2722. <widget class="QPushButton" name="edc_annuler">
  2723. <property name="geometry">
  2724. <rect>
  2725. <x>10</x>
  2726. <y>10</y>
  2727. <width>81</width>
  2728. <height>31</height>
  2729. </rect>
  2730. </property>
  2731. <property name="font">
  2732. <font>
  2733. <family>Verdana</family>
  2734. </font>
  2735. </property>
  2736. <property name="text">
  2737. <string>Annuler</string>
  2738. </property>
  2739. </widget>
  2740. </widget>
  2741. </item>
  2742. </layout>
  2743. </item>
  2744. </layout>
  2745. </item>
  2746. </layout>
  2747. </widget>
  2748. <customwidgets>
  2749. <customwidget>
  2750. <class>DmTableMenu</class>
  2751. <extends>QTableWidget</extends>
  2752. <header location="global">dm.h</header>
  2753. </customwidget>
  2754. <customwidget>
  2755. <class>DmLabelChoixImage</class>
  2756. <extends>QLabel</extends>
  2757. <header location="global">dm.h</header>
  2758. </customwidget>
  2759. <customwidget>
  2760. <class>DmLineEdit</class>
  2761. <extends>QLineEdit</extends>
  2762. <header location="global">dm.h</header>
  2763. </customwidget>
  2764. </customwidgets>
  2765. <resources/>
  2766. <connections>
  2767. <connection>
  2768. <sender>edc_menu</sender>
  2769. <signal>cellClicked(int,int)</signal>
  2770. <receiver>edc_pages</receiver>
  2771. <slot>setCurrentIndex(int)</slot>
  2772. <hints>
  2773. <hint type="sourcelabel">
  2774. <x>80</x>
  2775. <y>164</y>
  2776. </hint>
  2777. <hint type="destinationlabel">
  2778. <x>312</x>
  2779. <y>164</y>
  2780. </hint>
  2781. </hints>
  2782. </connection>
  2783. </connections>
  2784. </ui>