dmOngletsH.ui 77 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3. <class>ecran_creationPion</class>
  4. <widget class="QDialog" name="ecran_creationPion">
  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>618</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 pion</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="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="pages">
  499. <property name="minimumSize">
  500. <size>
  501. <width>392</width>
  502. <height>0</height>
  503. </size>
  504. </property>
  505. <property name="currentIndex">
  506. <number>4</number>
  507. </property>
  508. <widget class="QWidget" name="page">
  509. <widget class="QLabel" name="label_9">
  510. <property name="geometry">
  511. <rect>
  512. <x>50</x>
  513. <y>100</y>
  514. <width>391</width>
  515. <height>31</height>
  516. </rect>
  517. </property>
  518. <property name="font">
  519. <font>
  520. <family>Verdana</family>
  521. </font>
  522. </property>
  523. <property name="frameShape">
  524. <enum>QFrame::NoFrame</enum>
  525. </property>
  526. <property name="text">
  527. <string>Nombre de cases que la créature peut parcourir en un tour : </string>
  528. </property>
  529. </widget>
  530. <widget class="QDoubleSpinBox" name="deplacementCombattant_2">
  531. <property name="geometry">
  532. <rect>
  533. <x>220</x>
  534. <y>140</y>
  535. <width>51</width>
  536. <height>31</height>
  537. </rect>
  538. </property>
  539. <property name="palette">
  540. <palette>
  541. <active>
  542. <colorrole role="Base">
  543. <brush brushstyle="SolidPattern">
  544. <color alpha="255">
  545. <red>248</red>
  546. <green>248</green>
  547. <blue>248</blue>
  548. </color>
  549. </brush>
  550. </colorrole>
  551. </active>
  552. <inactive>
  553. <colorrole role="Base">
  554. <brush brushstyle="SolidPattern">
  555. <color alpha="255">
  556. <red>248</red>
  557. <green>248</green>
  558. <blue>248</blue>
  559. </color>
  560. </brush>
  561. </colorrole>
  562. </inactive>
  563. <disabled>
  564. <colorrole role="Base">
  565. <brush brushstyle="SolidPattern">
  566. <color alpha="255">
  567. <red>240</red>
  568. <green>240</green>
  569. <blue>240</blue>
  570. </color>
  571. </brush>
  572. </colorrole>
  573. </disabled>
  574. </palette>
  575. </property>
  576. <property name="font">
  577. <font>
  578. <family>Verdana</family>
  579. </font>
  580. </property>
  581. <property name="prefix">
  582. <string/>
  583. </property>
  584. <property name="decimals">
  585. <number>0</number>
  586. </property>
  587. <property name="singleStep">
  588. <double>1.000000000000000</double>
  589. </property>
  590. <property name="value">
  591. <double>8.000000000000000</double>
  592. </property>
  593. </widget>
  594. <widget class="QLabel" name="label_10">
  595. <property name="geometry">
  596. <rect>
  597. <x>110</x>
  598. <y>140</y>
  599. <width>101</width>
  600. <height>31</height>
  601. </rect>
  602. </property>
  603. <property name="font">
  604. <font>
  605. <family>Verdana</family>
  606. </font>
  607. </property>
  608. <property name="frameShape">
  609. <enum>QFrame::NoFrame</enum>
  610. </property>
  611. <property name="text">
  612. <string>Marche / Course</string>
  613. </property>
  614. </widget>
  615. <widget class="QDoubleSpinBox" name="deplacementCombattant_3">
  616. <property name="geometry">
  617. <rect>
  618. <x>220</x>
  619. <y>180</y>
  620. <width>51</width>
  621. <height>31</height>
  622. </rect>
  623. </property>
  624. <property name="palette">
  625. <palette>
  626. <active>
  627. <colorrole role="Base">
  628. <brush brushstyle="SolidPattern">
  629. <color alpha="255">
  630. <red>248</red>
  631. <green>248</green>
  632. <blue>248</blue>
  633. </color>
  634. </brush>
  635. </colorrole>
  636. </active>
  637. <inactive>
  638. <colorrole role="Base">
  639. <brush brushstyle="SolidPattern">
  640. <color alpha="255">
  641. <red>248</red>
  642. <green>248</green>
  643. <blue>248</blue>
  644. </color>
  645. </brush>
  646. </colorrole>
  647. </inactive>
  648. <disabled>
  649. <colorrole role="Base">
  650. <brush brushstyle="SolidPattern">
  651. <color alpha="255">
  652. <red>240</red>
  653. <green>240</green>
  654. <blue>240</blue>
  655. </color>
  656. </brush>
  657. </colorrole>
  658. </disabled>
  659. </palette>
  660. </property>
  661. <property name="font">
  662. <font>
  663. <family>Verdana</family>
  664. </font>
  665. </property>
  666. <property name="prefix">
  667. <string/>
  668. </property>
  669. <property name="decimals">
  670. <number>0</number>
  671. </property>
  672. <property name="singleStep">
  673. <double>1.000000000000000</double>
  674. </property>
  675. <property name="value">
  676. <double>4.000000000000000</double>
  677. </property>
  678. </widget>
  679. <widget class="QLabel" name="label_11">
  680. <property name="geometry">
  681. <rect>
  682. <x>110</x>
  683. <y>180</y>
  684. <width>81</width>
  685. <height>31</height>
  686. </rect>
  687. </property>
  688. <property name="font">
  689. <font>
  690. <family>Verdana</family>
  691. </font>
  692. </property>
  693. <property name="frameShape">
  694. <enum>QFrame::NoFrame</enum>
  695. </property>
  696. <property name="text">
  697. <string>Nage </string>
  698. </property>
  699. </widget>
  700. <widget class="QDoubleSpinBox" name="deplacementCombattant_4">
  701. <property name="geometry">
  702. <rect>
  703. <x>220</x>
  704. <y>220</y>
  705. <width>51</width>
  706. <height>31</height>
  707. </rect>
  708. </property>
  709. <property name="palette">
  710. <palette>
  711. <active>
  712. <colorrole role="Base">
  713. <brush brushstyle="SolidPattern">
  714. <color alpha="255">
  715. <red>248</red>
  716. <green>248</green>
  717. <blue>248</blue>
  718. </color>
  719. </brush>
  720. </colorrole>
  721. </active>
  722. <inactive>
  723. <colorrole role="Base">
  724. <brush brushstyle="SolidPattern">
  725. <color alpha="255">
  726. <red>248</red>
  727. <green>248</green>
  728. <blue>248</blue>
  729. </color>
  730. </brush>
  731. </colorrole>
  732. </inactive>
  733. <disabled>
  734. <colorrole role="Base">
  735. <brush brushstyle="SolidPattern">
  736. <color alpha="255">
  737. <red>240</red>
  738. <green>240</green>
  739. <blue>240</blue>
  740. </color>
  741. </brush>
  742. </colorrole>
  743. </disabled>
  744. </palette>
  745. </property>
  746. <property name="font">
  747. <font>
  748. <family>Verdana</family>
  749. </font>
  750. </property>
  751. <property name="prefix">
  752. <string/>
  753. </property>
  754. <property name="decimals">
  755. <number>0</number>
  756. </property>
  757. <property name="singleStep">
  758. <double>1.000000000000000</double>
  759. </property>
  760. <property name="value">
  761. <double>2.000000000000000</double>
  762. </property>
  763. </widget>
  764. <widget class="QLabel" name="label_12">
  765. <property name="geometry">
  766. <rect>
  767. <x>110</x>
  768. <y>220</y>
  769. <width>91</width>
  770. <height>31</height>
  771. </rect>
  772. </property>
  773. <property name="font">
  774. <font>
  775. <family>Verdana</family>
  776. </font>
  777. </property>
  778. <property name="frameShape">
  779. <enum>QFrame::NoFrame</enum>
  780. </property>
  781. <property name="text">
  782. <string>Escalade </string>
  783. </property>
  784. </widget>
  785. <widget class="QLabel" name="label_13">
  786. <property name="geometry">
  787. <rect>
  788. <x>110</x>
  789. <y>260</y>
  790. <width>61</width>
  791. <height>31</height>
  792. </rect>
  793. </property>
  794. <property name="font">
  795. <font>
  796. <family>Verdana</family>
  797. </font>
  798. </property>
  799. <property name="frameShape">
  800. <enum>QFrame::NoFrame</enum>
  801. </property>
  802. <property name="text">
  803. <string>Vol </string>
  804. </property>
  805. </widget>
  806. <widget class="QDoubleSpinBox" name="deplacementCombattant_5">
  807. <property name="geometry">
  808. <rect>
  809. <x>220</x>
  810. <y>260</y>
  811. <width>51</width>
  812. <height>31</height>
  813. </rect>
  814. </property>
  815. <property name="palette">
  816. <palette>
  817. <active>
  818. <colorrole role="Base">
  819. <brush brushstyle="SolidPattern">
  820. <color alpha="255">
  821. <red>248</red>
  822. <green>248</green>
  823. <blue>248</blue>
  824. </color>
  825. </brush>
  826. </colorrole>
  827. </active>
  828. <inactive>
  829. <colorrole role="Base">
  830. <brush brushstyle="SolidPattern">
  831. <color alpha="255">
  832. <red>248</red>
  833. <green>248</green>
  834. <blue>248</blue>
  835. </color>
  836. </brush>
  837. </colorrole>
  838. </inactive>
  839. <disabled>
  840. <colorrole role="Base">
  841. <brush brushstyle="SolidPattern">
  842. <color alpha="255">
  843. <red>240</red>
  844. <green>240</green>
  845. <blue>240</blue>
  846. </color>
  847. </brush>
  848. </colorrole>
  849. </disabled>
  850. </palette>
  851. </property>
  852. <property name="font">
  853. <font>
  854. <family>Verdana</family>
  855. </font>
  856. </property>
  857. <property name="prefix">
  858. <string/>
  859. </property>
  860. <property name="decimals">
  861. <number>0</number>
  862. </property>
  863. <property name="singleStep">
  864. <double>1.000000000000000</double>
  865. </property>
  866. <property name="value">
  867. <double>0.000000000000000</double>
  868. </property>
  869. </widget>
  870. <widget class="QDoubleSpinBox" name="deplacementCombattant_6">
  871. <property name="geometry">
  872. <rect>
  873. <x>290</x>
  874. <y>320</y>
  875. <width>51</width>
  876. <height>31</height>
  877. </rect>
  878. </property>
  879. <property name="palette">
  880. <palette>
  881. <active>
  882. <colorrole role="Base">
  883. <brush brushstyle="SolidPattern">
  884. <color alpha="255">
  885. <red>248</red>
  886. <green>248</green>
  887. <blue>248</blue>
  888. </color>
  889. </brush>
  890. </colorrole>
  891. </active>
  892. <inactive>
  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. </inactive>
  903. <disabled>
  904. <colorrole role="Base">
  905. <brush brushstyle="SolidPattern">
  906. <color alpha="255">
  907. <red>240</red>
  908. <green>240</green>
  909. <blue>240</blue>
  910. </color>
  911. </brush>
  912. </colorrole>
  913. </disabled>
  914. </palette>
  915. </property>
  916. <property name="font">
  917. <font>
  918. <family>Verdana</family>
  919. </font>
  920. </property>
  921. <property name="prefix">
  922. <string/>
  923. </property>
  924. <property name="decimals">
  925. <number>0</number>
  926. </property>
  927. <property name="singleStep">
  928. <double>1.000000000000000</double>
  929. </property>
  930. <property name="value">
  931. <double>5.000000000000000</double>
  932. </property>
  933. </widget>
  934. <widget class="QLabel" name="label_14">
  935. <property name="geometry">
  936. <rect>
  937. <x>50</x>
  938. <y>320</y>
  939. <width>231</width>
  940. <height>31</height>
  941. </rect>
  942. </property>
  943. <property name="font">
  944. <font>
  945. <family>Verdana</family>
  946. </font>
  947. </property>
  948. <property name="frameShape">
  949. <enum>QFrame::NoFrame</enum>
  950. </property>
  951. <property name="text">
  952. <string>Hauteur maximum pour les sauts : </string>
  953. </property>
  954. </widget>
  955. <widget class="QLabel" name="label_2">
  956. <property name="geometry">
  957. <rect>
  958. <x>60</x>
  959. <y>140</y>
  960. <width>31</width>
  961. <height>31</height>
  962. </rect>
  963. </property>
  964. <property name="text">
  965. <string/>
  966. </property>
  967. <property name="pixmap">
  968. <pixmap>img/btnZonePlacement.png</pixmap>
  969. </property>
  970. <property name="scaledContents">
  971. <bool>false</bool>
  972. </property>
  973. <property name="alignment">
  974. <set>Qt::AlignCenter</set>
  975. </property>
  976. </widget>
  977. <widget class="QLabel" name="label_3">
  978. <property name="geometry">
  979. <rect>
  980. <x>60</x>
  981. <y>180</y>
  982. <width>31</width>
  983. <height>31</height>
  984. </rect>
  985. </property>
  986. <property name="text">
  987. <string/>
  988. </property>
  989. <property name="pixmap">
  990. <pixmap>img/nage_24.png</pixmap>
  991. </property>
  992. <property name="scaledContents">
  993. <bool>false</bool>
  994. </property>
  995. </widget>
  996. <widget class="QLabel" name="label_4">
  997. <property name="geometry">
  998. <rect>
  999. <x>60</x>
  1000. <y>220</y>
  1001. <width>31</width>
  1002. <height>31</height>
  1003. </rect>
  1004. </property>
  1005. <property name="text">
  1006. <string/>
  1007. </property>
  1008. <property name="pixmap">
  1009. <pixmap>img/escalade_24.png</pixmap>
  1010. </property>
  1011. <property name="scaledContents">
  1012. <bool>false</bool>
  1013. </property>
  1014. </widget>
  1015. <widget class="QLabel" name="label_5">
  1016. <property name="geometry">
  1017. <rect>
  1018. <x>60</x>
  1019. <y>260</y>
  1020. <width>31</width>
  1021. <height>31</height>
  1022. </rect>
  1023. </property>
  1024. <property name="text">
  1025. <string/>
  1026. </property>
  1027. <property name="pixmap">
  1028. <pixmap>img/plume_24.png</pixmap>
  1029. </property>
  1030. <property name="scaledContents">
  1031. <bool>false</bool>
  1032. </property>
  1033. </widget>
  1034. <widget class="QDoubleSpinBox" name="deplacementCombattant_7">
  1035. <property name="geometry">
  1036. <rect>
  1037. <x>290</x>
  1038. <y>60</y>
  1039. <width>51</width>
  1040. <height>31</height>
  1041. </rect>
  1042. </property>
  1043. <property name="palette">
  1044. <palette>
  1045. <active>
  1046. <colorrole role="Base">
  1047. <brush brushstyle="SolidPattern">
  1048. <color alpha="255">
  1049. <red>248</red>
  1050. <green>248</green>
  1051. <blue>248</blue>
  1052. </color>
  1053. </brush>
  1054. </colorrole>
  1055. </active>
  1056. <inactive>
  1057. <colorrole role="Base">
  1058. <brush brushstyle="SolidPattern">
  1059. <color alpha="255">
  1060. <red>248</red>
  1061. <green>248</green>
  1062. <blue>248</blue>
  1063. </color>
  1064. </brush>
  1065. </colorrole>
  1066. </inactive>
  1067. <disabled>
  1068. <colorrole role="Base">
  1069. <brush brushstyle="SolidPattern">
  1070. <color alpha="255">
  1071. <red>240</red>
  1072. <green>240</green>
  1073. <blue>240</blue>
  1074. </color>
  1075. </brush>
  1076. </colorrole>
  1077. </disabled>
  1078. </palette>
  1079. </property>
  1080. <property name="font">
  1081. <font>
  1082. <family>Verdana</family>
  1083. </font>
  1084. </property>
  1085. <property name="prefix">
  1086. <string/>
  1087. </property>
  1088. <property name="decimals">
  1089. <number>0</number>
  1090. </property>
  1091. <property name="singleStep">
  1092. <double>1.000000000000000</double>
  1093. </property>
  1094. <property name="value">
  1095. <double>2.000000000000000</double>
  1096. </property>
  1097. </widget>
  1098. <widget class="QLabel" name="label_15">
  1099. <property name="geometry">
  1100. <rect>
  1101. <x>50</x>
  1102. <y>60</y>
  1103. <width>231</width>
  1104. <height>31</height>
  1105. </rect>
  1106. </property>
  1107. <property name="font">
  1108. <font>
  1109. <family>Verdana</family>
  1110. </font>
  1111. </property>
  1112. <property name="frameShape">
  1113. <enum>QFrame::NoFrame</enum>
  1114. </property>
  1115. <property name="text">
  1116. <string>Taille de la créature (en cases) : </string>
  1117. </property>
  1118. </widget>
  1119. </widget>
  1120. <widget class="QWidget" name="page_2">
  1121. <widget class="QTableWidget" name="listeAttributs">
  1122. <property name="geometry">
  1123. <rect>
  1124. <x>20</x>
  1125. <y>50</y>
  1126. <width>171</width>
  1127. <height>351</height>
  1128. </rect>
  1129. </property>
  1130. <property name="palette">
  1131. <palette>
  1132. <active>
  1133. <colorrole role="Base">
  1134. <brush brushstyle="SolidPattern">
  1135. <color alpha="150">
  1136. <red>255</red>
  1137. <green>255</green>
  1138. <blue>255</blue>
  1139. </color>
  1140. </brush>
  1141. </colorrole>
  1142. </active>
  1143. <inactive>
  1144. <colorrole role="Base">
  1145. <brush brushstyle="SolidPattern">
  1146. <color alpha="150">
  1147. <red>255</red>
  1148. <green>255</green>
  1149. <blue>255</blue>
  1150. </color>
  1151. </brush>
  1152. </colorrole>
  1153. </inactive>
  1154. <disabled>
  1155. <colorrole role="Base">
  1156. <brush brushstyle="SolidPattern">
  1157. <color alpha="255">
  1158. <red>240</red>
  1159. <green>240</green>
  1160. <blue>240</blue>
  1161. </color>
  1162. </brush>
  1163. </colorrole>
  1164. </disabled>
  1165. </palette>
  1166. </property>
  1167. <property name="font">
  1168. <font>
  1169. <family>Verdana</family>
  1170. </font>
  1171. </property>
  1172. <property name="frameShape">
  1173. <enum>QFrame::WinPanel</enum>
  1174. </property>
  1175. <property name="horizontalScrollBarPolicy">
  1176. <enum>Qt::ScrollBarAlwaysOff</enum>
  1177. </property>
  1178. <property name="editTriggers">
  1179. <set>QAbstractItemView::AllEditTriggers</set>
  1180. </property>
  1181. <property name="alternatingRowColors">
  1182. <bool>true</bool>
  1183. </property>
  1184. <property name="selectionMode">
  1185. <enum>QAbstractItemView::NoSelection</enum>
  1186. </property>
  1187. <property name="showGrid">
  1188. <bool>true</bool>
  1189. </property>
  1190. <attribute name="horizontalHeaderVisible">
  1191. <bool>false</bool>
  1192. </attribute>
  1193. <attribute name="horizontalHeaderDefaultSectionSize">
  1194. <number>50</number>
  1195. </attribute>
  1196. <attribute name="verticalHeaderVisible">
  1197. <bool>false</bool>
  1198. </attribute>
  1199. <column>
  1200. <property name="text">
  1201. <string>Nouvelle colonne</string>
  1202. </property>
  1203. </column>
  1204. <column>
  1205. <property name="text">
  1206. <string>Valeur</string>
  1207. </property>
  1208. </column>
  1209. </widget>
  1210. <widget class="QLabel" name="label_18">
  1211. <property name="geometry">
  1212. <rect>
  1213. <x>20</x>
  1214. <y>20</y>
  1215. <width>171</width>
  1216. <height>16</height>
  1217. </rect>
  1218. </property>
  1219. <property name="font">
  1220. <font>
  1221. <family>Verdana</family>
  1222. </font>
  1223. </property>
  1224. <property name="text">
  1225. <string>Attributs / caractéristiques : </string>
  1226. </property>
  1227. </widget>
  1228. </widget>
  1229. <widget class="QWidget" name="page_3">
  1230. <widget class="QLabel" name="label">
  1231. <property name="geometry">
  1232. <rect>
  1233. <x>180</x>
  1234. <y>160</y>
  1235. <width>71</width>
  1236. <height>41</height>
  1237. </rect>
  1238. </property>
  1239. <property name="text">
  1240. <string>Attaques</string>
  1241. </property>
  1242. </widget>
  1243. </widget>
  1244. <widget class="QWidget" name="page_4">
  1245. <widget class="QTableWidget" name="listeInventaireCombattant">
  1246. <property name="geometry">
  1247. <rect>
  1248. <x>20</x>
  1249. <y>50</y>
  1250. <width>381</width>
  1251. <height>311</height>
  1252. </rect>
  1253. </property>
  1254. <property name="palette">
  1255. <palette>
  1256. <active>
  1257. <colorrole role="Base">
  1258. <brush brushstyle="SolidPattern">
  1259. <color alpha="150">
  1260. <red>255</red>
  1261. <green>255</green>
  1262. <blue>255</blue>
  1263. </color>
  1264. </brush>
  1265. </colorrole>
  1266. </active>
  1267. <inactive>
  1268. <colorrole role="Base">
  1269. <brush brushstyle="SolidPattern">
  1270. <color alpha="150">
  1271. <red>255</red>
  1272. <green>255</green>
  1273. <blue>255</blue>
  1274. </color>
  1275. </brush>
  1276. </colorrole>
  1277. </inactive>
  1278. <disabled>
  1279. <colorrole role="Base">
  1280. <brush brushstyle="SolidPattern">
  1281. <color alpha="255">
  1282. <red>240</red>
  1283. <green>240</green>
  1284. <blue>240</blue>
  1285. </color>
  1286. </brush>
  1287. </colorrole>
  1288. </disabled>
  1289. </palette>
  1290. </property>
  1291. <property name="font">
  1292. <font>
  1293. <family>Verdana</family>
  1294. </font>
  1295. </property>
  1296. <property name="frameShape">
  1297. <enum>QFrame::WinPanel</enum>
  1298. </property>
  1299. <property name="horizontalScrollBarPolicy">
  1300. <enum>Qt::ScrollBarAlwaysOff</enum>
  1301. </property>
  1302. <property name="editTriggers">
  1303. <set>QAbstractItemView::AllEditTriggers</set>
  1304. </property>
  1305. <property name="alternatingRowColors">
  1306. <bool>true</bool>
  1307. </property>
  1308. <property name="selectionMode">
  1309. <enum>QAbstractItemView::NoSelection</enum>
  1310. </property>
  1311. <property name="showGrid">
  1312. <bool>true</bool>
  1313. </property>
  1314. <attribute name="horizontalHeaderVisible">
  1315. <bool>false</bool>
  1316. </attribute>
  1317. <attribute name="horizontalHeaderDefaultSectionSize">
  1318. <number>50</number>
  1319. </attribute>
  1320. <attribute name="verticalHeaderVisible">
  1321. <bool>false</bool>
  1322. </attribute>
  1323. <column>
  1324. <property name="text">
  1325. <string>nombre</string>
  1326. </property>
  1327. </column>
  1328. <column>
  1329. <property name="text">
  1330. <string>objet</string>
  1331. </property>
  1332. </column>
  1333. </widget>
  1334. <widget class="QToolButton" name="supprimerInventaireCombattant">
  1335. <property name="geometry">
  1336. <rect>
  1337. <x>380</x>
  1338. <y>360</y>
  1339. <width>21</width>
  1340. <height>20</height>
  1341. </rect>
  1342. </property>
  1343. <property name="text">
  1344. <string>...</string>
  1345. </property>
  1346. <property name="icon">
  1347. <iconset>
  1348. <normaloff>img/gomme.png</normaloff>img/gomme.png</iconset>
  1349. </property>
  1350. </widget>
  1351. <widget class="QLabel" name="label_24">
  1352. <property name="geometry">
  1353. <rect>
  1354. <x>20</x>
  1355. <y>20</y>
  1356. <width>131</width>
  1357. <height>20</height>
  1358. </rect>
  1359. </property>
  1360. <property name="font">
  1361. <font>
  1362. <family>Verdana</family>
  1363. </font>
  1364. </property>
  1365. <property name="text">
  1366. <string>Inventaire :</string>
  1367. </property>
  1368. </widget>
  1369. <widget class="QToolButton" name="ajouterInventaireCombattant">
  1370. <property name="geometry">
  1371. <rect>
  1372. <x>350</x>
  1373. <y>360</y>
  1374. <width>21</width>
  1375. <height>20</height>
  1376. </rect>
  1377. </property>
  1378. <property name="text">
  1379. <string>...</string>
  1380. </property>
  1381. <property name="icon">
  1382. <iconset>
  1383. <normaloff>img/plus.png</normaloff>img/plus.png</iconset>
  1384. </property>
  1385. </widget>
  1386. </widget>
  1387. <widget class="QWidget" name="page_5">
  1388. <widget class="QLabel" name="label_23">
  1389. <property name="geometry">
  1390. <rect>
  1391. <x>20</x>
  1392. <y>230</y>
  1393. <width>151</width>
  1394. <height>20</height>
  1395. </rect>
  1396. </property>
  1397. <property name="font">
  1398. <font>
  1399. <family>Verdana</family>
  1400. </font>
  1401. </property>
  1402. <property name="text">
  1403. <string>Notes :</string>
  1404. </property>
  1405. </widget>
  1406. <widget class="QTextEdit" name="notesCombattant">
  1407. <property name="geometry">
  1408. <rect>
  1409. <x>20</x>
  1410. <y>257</y>
  1411. <width>381</width>
  1412. <height>171</height>
  1413. </rect>
  1414. </property>
  1415. <property name="font">
  1416. <font>
  1417. <family>Verdana</family>
  1418. </font>
  1419. </property>
  1420. </widget>
  1421. <widget class="QLineEdit" name="et_nom_2">
  1422. <property name="geometry">
  1423. <rect>
  1424. <x>340</x>
  1425. <y>21</y>
  1426. <width>61</width>
  1427. <height>20</height>
  1428. </rect>
  1429. </property>
  1430. <property name="palette">
  1431. <palette>
  1432. <active>
  1433. <colorrole role="Base">
  1434. <brush brushstyle="SolidPattern">
  1435. <color alpha="255">
  1436. <red>248</red>
  1437. <green>248</green>
  1438. <blue>248</blue>
  1439. </color>
  1440. </brush>
  1441. </colorrole>
  1442. </active>
  1443. <inactive>
  1444. <colorrole role="Base">
  1445. <brush brushstyle="SolidPattern">
  1446. <color alpha="255">
  1447. <red>248</red>
  1448. <green>248</green>
  1449. <blue>248</blue>
  1450. </color>
  1451. </brush>
  1452. </colorrole>
  1453. </inactive>
  1454. <disabled>
  1455. <colorrole role="Base">
  1456. <brush brushstyle="SolidPattern">
  1457. <color alpha="255">
  1458. <red>240</red>
  1459. <green>240</green>
  1460. <blue>240</blue>
  1461. </color>
  1462. </brush>
  1463. </colorrole>
  1464. </disabled>
  1465. </palette>
  1466. </property>
  1467. <property name="font">
  1468. <font>
  1469. <family>Verdana</family>
  1470. </font>
  1471. </property>
  1472. </widget>
  1473. <widget class="QLabel" name="label_16">
  1474. <property name="geometry">
  1475. <rect>
  1476. <x>290</x>
  1477. <y>20</y>
  1478. <width>41</width>
  1479. <height>21</height>
  1480. </rect>
  1481. </property>
  1482. <property name="font">
  1483. <font>
  1484. <family>Verdana</family>
  1485. <pointsize>8</pointsize>
  1486. </font>
  1487. </property>
  1488. <property name="text">
  1489. <string>Age : </string>
  1490. </property>
  1491. </widget>
  1492. <widget class="QLabel" name="label_17">
  1493. <property name="geometry">
  1494. <rect>
  1495. <x>290</x>
  1496. <y>50</y>
  1497. <width>41</width>
  1498. <height>21</height>
  1499. </rect>
  1500. </property>
  1501. <property name="font">
  1502. <font>
  1503. <family>Verdana</family>
  1504. <pointsize>8</pointsize>
  1505. </font>
  1506. </property>
  1507. <property name="text">
  1508. <string>Sexe : </string>
  1509. </property>
  1510. </widget>
  1511. <widget class="QLineEdit" name="et_nom_3">
  1512. <property name="geometry">
  1513. <rect>
  1514. <x>340</x>
  1515. <y>50</y>
  1516. <width>61</width>
  1517. <height>20</height>
  1518. </rect>
  1519. </property>
  1520. <property name="palette">
  1521. <palette>
  1522. <active>
  1523. <colorrole role="Base">
  1524. <brush brushstyle="SolidPattern">
  1525. <color alpha="255">
  1526. <red>248</red>
  1527. <green>248</green>
  1528. <blue>248</blue>
  1529. </color>
  1530. </brush>
  1531. </colorrole>
  1532. </active>
  1533. <inactive>
  1534. <colorrole role="Base">
  1535. <brush brushstyle="SolidPattern">
  1536. <color alpha="255">
  1537. <red>248</red>
  1538. <green>248</green>
  1539. <blue>248</blue>
  1540. </color>
  1541. </brush>
  1542. </colorrole>
  1543. </inactive>
  1544. <disabled>
  1545. <colorrole role="Base">
  1546. <brush brushstyle="SolidPattern">
  1547. <color alpha="255">
  1548. <red>240</red>
  1549. <green>240</green>
  1550. <blue>240</blue>
  1551. </color>
  1552. </brush>
  1553. </colorrole>
  1554. </disabled>
  1555. </palette>
  1556. </property>
  1557. <property name="font">
  1558. <font>
  1559. <family>Verdana</family>
  1560. </font>
  1561. </property>
  1562. </widget>
  1563. <widget class="QLineEdit" name="et_nom_7">
  1564. <property name="geometry">
  1565. <rect>
  1566. <x>100</x>
  1567. <y>140</y>
  1568. <width>91</width>
  1569. <height>20</height>
  1570. </rect>
  1571. </property>
  1572. <property name="palette">
  1573. <palette>
  1574. <active>
  1575. <colorrole role="Base">
  1576. <brush brushstyle="SolidPattern">
  1577. <color alpha="255">
  1578. <red>248</red>
  1579. <green>248</green>
  1580. <blue>248</blue>
  1581. </color>
  1582. </brush>
  1583. </colorrole>
  1584. </active>
  1585. <inactive>
  1586. <colorrole role="Base">
  1587. <brush brushstyle="SolidPattern">
  1588. <color alpha="255">
  1589. <red>248</red>
  1590. <green>248</green>
  1591. <blue>248</blue>
  1592. </color>
  1593. </brush>
  1594. </colorrole>
  1595. </inactive>
  1596. <disabled>
  1597. <colorrole role="Base">
  1598. <brush brushstyle="SolidPattern">
  1599. <color alpha="255">
  1600. <red>240</red>
  1601. <green>240</green>
  1602. <blue>240</blue>
  1603. </color>
  1604. </brush>
  1605. </colorrole>
  1606. </disabled>
  1607. </palette>
  1608. </property>
  1609. <property name="font">
  1610. <font>
  1611. <family>Verdana</family>
  1612. </font>
  1613. </property>
  1614. <property name="text">
  1615. <string/>
  1616. </property>
  1617. </widget>
  1618. <widget class="QLabel" name="label_37">
  1619. <property name="geometry">
  1620. <rect>
  1621. <x>20</x>
  1622. <y>140</y>
  1623. <width>71</width>
  1624. <height>21</height>
  1625. </rect>
  1626. </property>
  1627. <property name="font">
  1628. <font>
  1629. <family>Verdana</family>
  1630. <pointsize>8</pointsize>
  1631. </font>
  1632. </property>
  1633. <property name="text">
  1634. <string>Yeux :</string>
  1635. </property>
  1636. </widget>
  1637. <widget class="QLineEdit" name="et_nom_8">
  1638. <property name="geometry">
  1639. <rect>
  1640. <x>100</x>
  1641. <y>170</y>
  1642. <width>91</width>
  1643. <height>20</height>
  1644. </rect>
  1645. </property>
  1646. <property name="palette">
  1647. <palette>
  1648. <active>
  1649. <colorrole role="Base">
  1650. <brush brushstyle="SolidPattern">
  1651. <color alpha="255">
  1652. <red>248</red>
  1653. <green>248</green>
  1654. <blue>248</blue>
  1655. </color>
  1656. </brush>
  1657. </colorrole>
  1658. </active>
  1659. <inactive>
  1660. <colorrole role="Base">
  1661. <brush brushstyle="SolidPattern">
  1662. <color alpha="255">
  1663. <red>248</red>
  1664. <green>248</green>
  1665. <blue>248</blue>
  1666. </color>
  1667. </brush>
  1668. </colorrole>
  1669. </inactive>
  1670. <disabled>
  1671. <colorrole role="Base">
  1672. <brush brushstyle="SolidPattern">
  1673. <color alpha="255">
  1674. <red>240</red>
  1675. <green>240</green>
  1676. <blue>240</blue>
  1677. </color>
  1678. </brush>
  1679. </colorrole>
  1680. </disabled>
  1681. </palette>
  1682. </property>
  1683. <property name="font">
  1684. <font>
  1685. <family>Verdana</family>
  1686. </font>
  1687. </property>
  1688. <property name="text">
  1689. <string/>
  1690. </property>
  1691. </widget>
  1692. <widget class="QLabel" name="label_38">
  1693. <property name="geometry">
  1694. <rect>
  1695. <x>20</x>
  1696. <y>170</y>
  1697. <width>61</width>
  1698. <height>21</height>
  1699. </rect>
  1700. </property>
  1701. <property name="font">
  1702. <font>
  1703. <family>Verdana</family>
  1704. <pointsize>8</pointsize>
  1705. </font>
  1706. </property>
  1707. <property name="text">
  1708. <string>Peau :</string>
  1709. </property>
  1710. </widget>
  1711. <widget class="QLabel" name="label_39">
  1712. <property name="geometry">
  1713. <rect>
  1714. <x>20</x>
  1715. <y>190</y>
  1716. <width>91</width>
  1717. <height>31</height>
  1718. </rect>
  1719. </property>
  1720. <property name="font">
  1721. <font>
  1722. <family>Verdana</family>
  1723. <pointsize>8</pointsize>
  1724. </font>
  1725. </property>
  1726. <property name="text">
  1727. <string>Poils /
  1728. Cheveux :</string>
  1729. </property>
  1730. </widget>
  1731. <widget class="QLineEdit" name="et_nom_9">
  1732. <property name="geometry">
  1733. <rect>
  1734. <x>100</x>
  1735. <y>200</y>
  1736. <width>91</width>
  1737. <height>20</height>
  1738. </rect>
  1739. </property>
  1740. <property name="palette">
  1741. <palette>
  1742. <active>
  1743. <colorrole role="Base">
  1744. <brush brushstyle="SolidPattern">
  1745. <color alpha="255">
  1746. <red>248</red>
  1747. <green>248</green>
  1748. <blue>248</blue>
  1749. </color>
  1750. </brush>
  1751. </colorrole>
  1752. </active>
  1753. <inactive>
  1754. <colorrole role="Base">
  1755. <brush brushstyle="SolidPattern">
  1756. <color alpha="255">
  1757. <red>248</red>
  1758. <green>248</green>
  1759. <blue>248</blue>
  1760. </color>
  1761. </brush>
  1762. </colorrole>
  1763. </inactive>
  1764. <disabled>
  1765. <colorrole role="Base">
  1766. <brush brushstyle="SolidPattern">
  1767. <color alpha="255">
  1768. <red>240</red>
  1769. <green>240</green>
  1770. <blue>240</blue>
  1771. </color>
  1772. </brush>
  1773. </colorrole>
  1774. </disabled>
  1775. </palette>
  1776. </property>
  1777. <property name="font">
  1778. <font>
  1779. <family>Verdana</family>
  1780. </font>
  1781. </property>
  1782. <property name="text">
  1783. <string/>
  1784. </property>
  1785. </widget>
  1786. <widget class="QLineEdit" name="et_nom_10">
  1787. <property name="geometry">
  1788. <rect>
  1789. <x>100</x>
  1790. <y>110</y>
  1791. <width>171</width>
  1792. <height>20</height>
  1793. </rect>
  1794. </property>
  1795. <property name="palette">
  1796. <palette>
  1797. <active>
  1798. <colorrole role="Base">
  1799. <brush brushstyle="SolidPattern">
  1800. <color alpha="255">
  1801. <red>248</red>
  1802. <green>248</green>
  1803. <blue>248</blue>
  1804. </color>
  1805. </brush>
  1806. </colorrole>
  1807. </active>
  1808. <inactive>
  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. </inactive>
  1819. <disabled>
  1820. <colorrole role="Base">
  1821. <brush brushstyle="SolidPattern">
  1822. <color alpha="255">
  1823. <red>240</red>
  1824. <green>240</green>
  1825. <blue>240</blue>
  1826. </color>
  1827. </brush>
  1828. </colorrole>
  1829. </disabled>
  1830. </palette>
  1831. </property>
  1832. <property name="font">
  1833. <font>
  1834. <family>Verdana</family>
  1835. </font>
  1836. </property>
  1837. <property name="text">
  1838. <string/>
  1839. </property>
  1840. </widget>
  1841. <widget class="QLabel" name="label_40">
  1842. <property name="geometry">
  1843. <rect>
  1844. <x>20</x>
  1845. <y>100</y>
  1846. <width>71</width>
  1847. <height>31</height>
  1848. </rect>
  1849. </property>
  1850. <property name="font">
  1851. <font>
  1852. <family>Verdana</family>
  1853. <pointsize>8</pointsize>
  1854. </font>
  1855. </property>
  1856. <property name="text">
  1857. <string>Lieu de
  1858. naissance :</string>
  1859. </property>
  1860. </widget>
  1861. <widget class="QLabel" name="label_41">
  1862. <property name="geometry">
  1863. <rect>
  1864. <x>290</x>
  1865. <y>80</y>
  1866. <width>41</width>
  1867. <height>21</height>
  1868. </rect>
  1869. </property>
  1870. <property name="font">
  1871. <font>
  1872. <family>Verdana</family>
  1873. <pointsize>8</pointsize>
  1874. </font>
  1875. </property>
  1876. <property name="text">
  1877. <string>Poids : </string>
  1878. </property>
  1879. </widget>
  1880. <widget class="QLineEdit" name="et_nom_11">
  1881. <property name="geometry">
  1882. <rect>
  1883. <x>340</x>
  1884. <y>81</y>
  1885. <width>61</width>
  1886. <height>20</height>
  1887. </rect>
  1888. </property>
  1889. <property name="palette">
  1890. <palette>
  1891. <active>
  1892. <colorrole role="Base">
  1893. <brush brushstyle="SolidPattern">
  1894. <color alpha="255">
  1895. <red>248</red>
  1896. <green>248</green>
  1897. <blue>248</blue>
  1898. </color>
  1899. </brush>
  1900. </colorrole>
  1901. </active>
  1902. <inactive>
  1903. <colorrole role="Base">
  1904. <brush brushstyle="SolidPattern">
  1905. <color alpha="255">
  1906. <red>248</red>
  1907. <green>248</green>
  1908. <blue>248</blue>
  1909. </color>
  1910. </brush>
  1911. </colorrole>
  1912. </inactive>
  1913. <disabled>
  1914. <colorrole role="Base">
  1915. <brush brushstyle="SolidPattern">
  1916. <color alpha="255">
  1917. <red>240</red>
  1918. <green>240</green>
  1919. <blue>240</blue>
  1920. </color>
  1921. </brush>
  1922. </colorrole>
  1923. </disabled>
  1924. </palette>
  1925. </property>
  1926. <property name="font">
  1927. <font>
  1928. <family>Verdana</family>
  1929. </font>
  1930. </property>
  1931. </widget>
  1932. <widget class="QLabel" name="label_43">
  1933. <property name="geometry">
  1934. <rect>
  1935. <x>20</x>
  1936. <y>20</y>
  1937. <width>61</width>
  1938. <height>21</height>
  1939. </rect>
  1940. </property>
  1941. <property name="font">
  1942. <font>
  1943. <family>Verdana</family>
  1944. <pointsize>8</pointsize>
  1945. </font>
  1946. </property>
  1947. <property name="text">
  1948. <string>Espèce : </string>
  1949. </property>
  1950. </widget>
  1951. <widget class="QLineEdit" name="et_nom_13">
  1952. <property name="geometry">
  1953. <rect>
  1954. <x>100</x>
  1955. <y>21</y>
  1956. <width>171</width>
  1957. <height>20</height>
  1958. </rect>
  1959. </property>
  1960. <property name="palette">
  1961. <palette>
  1962. <active>
  1963. <colorrole role="Base">
  1964. <brush brushstyle="SolidPattern">
  1965. <color alpha="255">
  1966. <red>248</red>
  1967. <green>248</green>
  1968. <blue>248</blue>
  1969. </color>
  1970. </brush>
  1971. </colorrole>
  1972. </active>
  1973. <inactive>
  1974. <colorrole role="Base">
  1975. <brush brushstyle="SolidPattern">
  1976. <color alpha="255">
  1977. <red>248</red>
  1978. <green>248</green>
  1979. <blue>248</blue>
  1980. </color>
  1981. </brush>
  1982. </colorrole>
  1983. </inactive>
  1984. <disabled>
  1985. <colorrole role="Base">
  1986. <brush brushstyle="SolidPattern">
  1987. <color alpha="255">
  1988. <red>240</red>
  1989. <green>240</green>
  1990. <blue>240</blue>
  1991. </color>
  1992. </brush>
  1993. </colorrole>
  1994. </disabled>
  1995. </palette>
  1996. </property>
  1997. <property name="font">
  1998. <font>
  1999. <family>Verdana</family>
  2000. </font>
  2001. </property>
  2002. <property name="text">
  2003. <string/>
  2004. </property>
  2005. </widget>
  2006. <widget class="QLabel" name="label_44">
  2007. <property name="geometry">
  2008. <rect>
  2009. <x>20</x>
  2010. <y>49</y>
  2011. <width>81</width>
  2012. <height>21</height>
  2013. </rect>
  2014. </property>
  2015. <property name="font">
  2016. <font>
  2017. <family>Verdana</family>
  2018. <pointsize>8</pointsize>
  2019. </font>
  2020. </property>
  2021. <property name="text">
  2022. <string>Profession : </string>
  2023. </property>
  2024. </widget>
  2025. <widget class="QLineEdit" name="et_nom_14">
  2026. <property name="geometry">
  2027. <rect>
  2028. <x>100</x>
  2029. <y>50</y>
  2030. <width>171</width>
  2031. <height>20</height>
  2032. </rect>
  2033. </property>
  2034. <property name="palette">
  2035. <palette>
  2036. <active>
  2037. <colorrole role="Base">
  2038. <brush brushstyle="SolidPattern">
  2039. <color alpha="255">
  2040. <red>248</red>
  2041. <green>248</green>
  2042. <blue>248</blue>
  2043. </color>
  2044. </brush>
  2045. </colorrole>
  2046. </active>
  2047. <inactive>
  2048. <colorrole role="Base">
  2049. <brush brushstyle="SolidPattern">
  2050. <color alpha="255">
  2051. <red>248</red>
  2052. <green>248</green>
  2053. <blue>248</blue>
  2054. </color>
  2055. </brush>
  2056. </colorrole>
  2057. </inactive>
  2058. <disabled>
  2059. <colorrole role="Base">
  2060. <brush brushstyle="SolidPattern">
  2061. <color alpha="255">
  2062. <red>240</red>
  2063. <green>240</green>
  2064. <blue>240</blue>
  2065. </color>
  2066. </brush>
  2067. </colorrole>
  2068. </disabled>
  2069. </palette>
  2070. </property>
  2071. <property name="font">
  2072. <font>
  2073. <family>Verdana</family>
  2074. </font>
  2075. </property>
  2076. <property name="text">
  2077. <string/>
  2078. </property>
  2079. </widget>
  2080. <widget class="QLabel" name="label_45">
  2081. <property name="geometry">
  2082. <rect>
  2083. <x>290</x>
  2084. <y>110</y>
  2085. <width>41</width>
  2086. <height>21</height>
  2087. </rect>
  2088. </property>
  2089. <property name="font">
  2090. <font>
  2091. <family>Verdana</family>
  2092. <pointsize>8</pointsize>
  2093. </font>
  2094. </property>
  2095. <property name="text">
  2096. <string>Taille : </string>
  2097. </property>
  2098. </widget>
  2099. <widget class="QLineEdit" name="et_nom_15">
  2100. <property name="geometry">
  2101. <rect>
  2102. <x>340</x>
  2103. <y>110</y>
  2104. <width>61</width>
  2105. <height>21</height>
  2106. </rect>
  2107. </property>
  2108. <property name="palette">
  2109. <palette>
  2110. <active>
  2111. <colorrole role="Base">
  2112. <brush brushstyle="SolidPattern">
  2113. <color alpha="255">
  2114. <red>248</red>
  2115. <green>248</green>
  2116. <blue>248</blue>
  2117. </color>
  2118. </brush>
  2119. </colorrole>
  2120. </active>
  2121. <inactive>
  2122. <colorrole role="Base">
  2123. <brush brushstyle="SolidPattern">
  2124. <color alpha="255">
  2125. <red>248</red>
  2126. <green>248</green>
  2127. <blue>248</blue>
  2128. </color>
  2129. </brush>
  2130. </colorrole>
  2131. </inactive>
  2132. <disabled>
  2133. <colorrole role="Base">
  2134. <brush brushstyle="SolidPattern">
  2135. <color alpha="255">
  2136. <red>240</red>
  2137. <green>240</green>
  2138. <blue>240</blue>
  2139. </color>
  2140. </brush>
  2141. </colorrole>
  2142. </disabled>
  2143. </palette>
  2144. </property>
  2145. <property name="font">
  2146. <font>
  2147. <family>Verdana</family>
  2148. </font>
  2149. </property>
  2150. <property name="text">
  2151. <string/>
  2152. </property>
  2153. </widget>
  2154. <widget class="QLineEdit" name="et_nom_12">
  2155. <property name="geometry">
  2156. <rect>
  2157. <x>100</x>
  2158. <y>80</y>
  2159. <width>171</width>
  2160. <height>21</height>
  2161. </rect>
  2162. </property>
  2163. <property name="palette">
  2164. <palette>
  2165. <active>
  2166. <colorrole role="Base">
  2167. <brush brushstyle="SolidPattern">
  2168. <color alpha="255">
  2169. <red>248</red>
  2170. <green>248</green>
  2171. <blue>248</blue>
  2172. </color>
  2173. </brush>
  2174. </colorrole>
  2175. </active>
  2176. <inactive>
  2177. <colorrole role="Base">
  2178. <brush brushstyle="SolidPattern">
  2179. <color alpha="255">
  2180. <red>248</red>
  2181. <green>248</green>
  2182. <blue>248</blue>
  2183. </color>
  2184. </brush>
  2185. </colorrole>
  2186. </inactive>
  2187. <disabled>
  2188. <colorrole role="Base">
  2189. <brush brushstyle="SolidPattern">
  2190. <color alpha="255">
  2191. <red>240</red>
  2192. <green>240</green>
  2193. <blue>240</blue>
  2194. </color>
  2195. </brush>
  2196. </colorrole>
  2197. </disabled>
  2198. </palette>
  2199. </property>
  2200. <property name="font">
  2201. <font>
  2202. <family>Verdana</family>
  2203. </font>
  2204. </property>
  2205. <property name="text">
  2206. <string/>
  2207. </property>
  2208. </widget>
  2209. <widget class="QLabel" name="label_42">
  2210. <property name="geometry">
  2211. <rect>
  2212. <x>20</x>
  2213. <y>70</y>
  2214. <width>81</width>
  2215. <height>31</height>
  2216. </rect>
  2217. </property>
  2218. <property name="font">
  2219. <font>
  2220. <family>Verdana</family>
  2221. <pointsize>8</pointsize>
  2222. </font>
  2223. </property>
  2224. <property name="text">
  2225. <string>Religion /
  2226. Croyances :</string>
  2227. </property>
  2228. </widget>
  2229. <widget class="QLineEdit" name="et_nom_16">
  2230. <property name="geometry">
  2231. <rect>
  2232. <x>210</x>
  2233. <y>170</y>
  2234. <width>191</width>
  2235. <height>51</height>
  2236. </rect>
  2237. </property>
  2238. <property name="palette">
  2239. <palette>
  2240. <active>
  2241. <colorrole role="Base">
  2242. <brush brushstyle="SolidPattern">
  2243. <color alpha="255">
  2244. <red>248</red>
  2245. <green>248</green>
  2246. <blue>248</blue>
  2247. </color>
  2248. </brush>
  2249. </colorrole>
  2250. </active>
  2251. <inactive>
  2252. <colorrole role="Base">
  2253. <brush brushstyle="SolidPattern">
  2254. <color alpha="255">
  2255. <red>248</red>
  2256. <green>248</green>
  2257. <blue>248</blue>
  2258. </color>
  2259. </brush>
  2260. </colorrole>
  2261. </inactive>
  2262. <disabled>
  2263. <colorrole role="Base">
  2264. <brush brushstyle="SolidPattern">
  2265. <color alpha="255">
  2266. <red>240</red>
  2267. <green>240</green>
  2268. <blue>240</blue>
  2269. </color>
  2270. </brush>
  2271. </colorrole>
  2272. </disabled>
  2273. </palette>
  2274. </property>
  2275. <property name="font">
  2276. <font>
  2277. <family>Verdana</family>
  2278. </font>
  2279. </property>
  2280. <property name="text">
  2281. <string/>
  2282. </property>
  2283. </widget>
  2284. <widget class="QLabel" name="label_46">
  2285. <property name="geometry">
  2286. <rect>
  2287. <x>210</x>
  2288. <y>140</y>
  2289. <width>101</width>
  2290. <height>31</height>
  2291. </rect>
  2292. </property>
  2293. <property name="font">
  2294. <font>
  2295. <family>Verdana</family>
  2296. <pointsize>8</pointsize>
  2297. </font>
  2298. </property>
  2299. <property name="text">
  2300. <string>Langues parlées :</string>
  2301. </property>
  2302. </widget>
  2303. </widget>
  2304. <widget class="QWidget" name="page_6">
  2305. <widget class="QLineEdit" name="et_nom">
  2306. <property name="geometry">
  2307. <rect>
  2308. <x>110</x>
  2309. <y>40</y>
  2310. <width>271</width>
  2311. <height>31</height>
  2312. </rect>
  2313. </property>
  2314. <property name="palette">
  2315. <palette>
  2316. <active>
  2317. <colorrole role="Base">
  2318. <brush brushstyle="SolidPattern">
  2319. <color alpha="255">
  2320. <red>248</red>
  2321. <green>248</green>
  2322. <blue>248</blue>
  2323. </color>
  2324. </brush>
  2325. </colorrole>
  2326. </active>
  2327. <inactive>
  2328. <colorrole role="Base">
  2329. <brush brushstyle="SolidPattern">
  2330. <color alpha="255">
  2331. <red>248</red>
  2332. <green>248</green>
  2333. <blue>248</blue>
  2334. </color>
  2335. </brush>
  2336. </colorrole>
  2337. </inactive>
  2338. <disabled>
  2339. <colorrole role="Base">
  2340. <brush brushstyle="SolidPattern">
  2341. <color alpha="255">
  2342. <red>240</red>
  2343. <green>240</green>
  2344. <blue>240</blue>
  2345. </color>
  2346. </brush>
  2347. </colorrole>
  2348. </disabled>
  2349. </palette>
  2350. </property>
  2351. <property name="font">
  2352. <font>
  2353. <family>Verdana</family>
  2354. </font>
  2355. </property>
  2356. </widget>
  2357. <widget class="DmLabelChoixImage" name="et_apercu">
  2358. <property name="geometry">
  2359. <rect>
  2360. <x>20</x>
  2361. <y>20</y>
  2362. <width>71</width>
  2363. <height>71</height>
  2364. </rect>
  2365. </property>
  2366. <property name="font">
  2367. <font>
  2368. <family>Verdana</family>
  2369. <pointsize>7</pointsize>
  2370. </font>
  2371. </property>
  2372. <property name="frameShape">
  2373. <enum>QFrame::Box</enum>
  2374. </property>
  2375. <property name="frameShadow">
  2376. <enum>QFrame::Sunken</enum>
  2377. </property>
  2378. <property name="text">
  2379. <string>Choisissez
  2380. un fichier
  2381. image</string>
  2382. </property>
  2383. <property name="alignment">
  2384. <set>Qt::AlignCenter</set>
  2385. </property>
  2386. </widget>
  2387. <widget class="QLabel" name="label_8">
  2388. <property name="geometry">
  2389. <rect>
  2390. <x>110</x>
  2391. <y>15</y>
  2392. <width>131</width>
  2393. <height>21</height>
  2394. </rect>
  2395. </property>
  2396. <property name="font">
  2397. <font>
  2398. <family>Verdana</family>
  2399. <pointsize>8</pointsize>
  2400. </font>
  2401. </property>
  2402. <property name="text">
  2403. <string>Nom : </string>
  2404. </property>
  2405. </widget>
  2406. <widget class="QFrame" name="frame_2">
  2407. <property name="geometry">
  2408. <rect>
  2409. <x>30</x>
  2410. <y>100</y>
  2411. <width>341</width>
  2412. <height>311</height>
  2413. </rect>
  2414. </property>
  2415. <property name="frameShape">
  2416. <enum>QFrame::WinPanel</enum>
  2417. </property>
  2418. <property name="frameShadow">
  2419. <enum>QFrame::Raised</enum>
  2420. </property>
  2421. <widget class="QGraphicsView" name="vueForme">
  2422. <property name="geometry">
  2423. <rect>
  2424. <x>10</x>
  2425. <y>10</y>
  2426. <width>281</width>
  2427. <height>291</height>
  2428. </rect>
  2429. </property>
  2430. <property name="palette">
  2431. <palette>
  2432. <active>
  2433. <colorrole role="Base">
  2434. <brush brushstyle="SolidPattern">
  2435. <color alpha="255">
  2436. <red>244</red>
  2437. <green>244</green>
  2438. <blue>244</blue>
  2439. </color>
  2440. </brush>
  2441. </colorrole>
  2442. </active>
  2443. <inactive>
  2444. <colorrole role="Base">
  2445. <brush brushstyle="SolidPattern">
  2446. <color alpha="255">
  2447. <red>244</red>
  2448. <green>244</green>
  2449. <blue>244</blue>
  2450. </color>
  2451. </brush>
  2452. </colorrole>
  2453. </inactive>
  2454. <disabled>
  2455. <colorrole role="Base">
  2456. <brush brushstyle="SolidPattern">
  2457. <color alpha="255">
  2458. <red>240</red>
  2459. <green>240</green>
  2460. <blue>240</blue>
  2461. </color>
  2462. </brush>
  2463. </colorrole>
  2464. </disabled>
  2465. </palette>
  2466. </property>
  2467. <property name="frameShape">
  2468. <enum>QFrame::NoFrame</enum>
  2469. </property>
  2470. <property name="frameShadow">
  2471. <enum>QFrame::Raised</enum>
  2472. </property>
  2473. <property name="renderHints">
  2474. <set>QPainter::Antialiasing|QPainter::HighQualityAntialiasing|QPainter::TextAntialiasing</set>
  2475. </property>
  2476. </widget>
  2477. <widget class="QToolButton" name="toolButton_2">
  2478. <property name="geometry">
  2479. <rect>
  2480. <x>300</x>
  2481. <y>50</y>
  2482. <width>31</width>
  2483. <height>31</height>
  2484. </rect>
  2485. </property>
  2486. <property name="text">
  2487. <string>...</string>
  2488. </property>
  2489. <property name="icon">
  2490. <iconset>
  2491. <normaloff>img/portrait.png</normaloff>img/portrait.png</iconset>
  2492. </property>
  2493. <property name="iconSize">
  2494. <size>
  2495. <width>22</width>
  2496. <height>22</height>
  2497. </size>
  2498. </property>
  2499. </widget>
  2500. <widget class="QToolButton" name="toolButton">
  2501. <property name="geometry">
  2502. <rect>
  2503. <x>300</x>
  2504. <y>10</y>
  2505. <width>31</width>
  2506. <height>31</height>
  2507. </rect>
  2508. </property>
  2509. <property name="text">
  2510. <string>...</string>
  2511. </property>
  2512. <property name="icon">
  2513. <iconset>
  2514. <normaloff>img/btnCouleurs.png</normaloff>img/btnCouleurs.png</iconset>
  2515. </property>
  2516. </widget>
  2517. <widget class="QToolButton" name="toolButton_3">
  2518. <property name="geometry">
  2519. <rect>
  2520. <x>300</x>
  2521. <y>270</y>
  2522. <width>31</width>
  2523. <height>31</height>
  2524. </rect>
  2525. </property>
  2526. <property name="text">
  2527. <string>...</string>
  2528. </property>
  2529. <property name="icon">
  2530. <iconset>
  2531. <normaloff>img/aide.png</normaloff>img/aide.png</iconset>
  2532. </property>
  2533. </widget>
  2534. </widget>
  2535. <zorder>et_nom</zorder>
  2536. <zorder>et_apercu</zorder>
  2537. <zorder>label_8</zorder>
  2538. <zorder>frame_2</zorder>
  2539. <zorder>menu</zorder>
  2540. </widget>
  2541. </widget>
  2542. </item>
  2543. <item>
  2544. <widget class="QFrame" name="frame">
  2545. <property name="minimumSize">
  2546. <size>
  2547. <width>392</width>
  2548. <height>50</height>
  2549. </size>
  2550. </property>
  2551. <property name="maximumSize">
  2552. <size>
  2553. <width>16777215</width>
  2554. <height>50</height>
  2555. </size>
  2556. </property>
  2557. <property name="frameShape">
  2558. <enum>QFrame::StyledPanel</enum>
  2559. </property>
  2560. <property name="frameShadow">
  2561. <enum>QFrame::Raised</enum>
  2562. </property>
  2563. <widget class="QPushButton" name="et_enregistrer">
  2564. <property name="enabled">
  2565. <bool>false</bool>
  2566. </property>
  2567. <property name="geometry">
  2568. <rect>
  2569. <x>330</x>
  2570. <y>10</y>
  2571. <width>91</width>
  2572. <height>31</height>
  2573. </rect>
  2574. </property>
  2575. <property name="font">
  2576. <font>
  2577. <family>Verdana</family>
  2578. <weight>75</weight>
  2579. <bold>true</bold>
  2580. </font>
  2581. </property>
  2582. <property name="text">
  2583. <string>Enregistrer</string>
  2584. </property>
  2585. </widget>
  2586. <widget class="QPushButton" name="et_annuler">
  2587. <property name="geometry">
  2588. <rect>
  2589. <x>10</x>
  2590. <y>10</y>
  2591. <width>81</width>
  2592. <height>31</height>
  2593. </rect>
  2594. </property>
  2595. <property name="font">
  2596. <font>
  2597. <family>Verdana</family>
  2598. </font>
  2599. </property>
  2600. <property name="text">
  2601. <string>Annuler</string>
  2602. </property>
  2603. </widget>
  2604. </widget>
  2605. </item>
  2606. </layout>
  2607. </item>
  2608. </layout>
  2609. </item>
  2610. </layout>
  2611. </widget>
  2612. <customwidgets>
  2613. <customwidget>
  2614. <class>DmTableMenu</class>
  2615. <extends>QTableWidget</extends>
  2616. <header location="global">dm.h</header>
  2617. </customwidget>
  2618. <customwidget>
  2619. <class>DmLabelChoixImage</class>
  2620. <extends>QLabel</extends>
  2621. <header location="global">dm.h</header>
  2622. </customwidget>
  2623. </customwidgets>
  2624. <resources/>
  2625. <connections>
  2626. <connection>
  2627. <sender>menu</sender>
  2628. <signal>cellClicked(int,int)</signal>
  2629. <receiver>pages</receiver>
  2630. <slot>setCurrentIndex(int)</slot>
  2631. <hints>
  2632. <hint type="sourcelabel">
  2633. <x>80</x>
  2634. <y>164</y>
  2635. </hint>
  2636. <hint type="destinationlabel">
  2637. <x>312</x>
  2638. <y>164</y>
  2639. </hint>
  2640. </hints>
  2641. </connection>
  2642. </connections>
  2643. </ui>