mainwindow.ui 141 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3. <class>principal</class>
  4. <widget class="QMainWindow" name="principal">
  5. <property name="geometry">
  6. <rect>
  7. <x>0</x>
  8. <y>0</y>
  9. <width>1225</width>
  10. <height>742</height>
  11. </rect>
  12. </property>
  13. <property name="minimumSize">
  14. <size>
  15. <width>882</width>
  16. <height>623</height>
  17. </size>
  18. </property>
  19. <property name="acceptDrops">
  20. <bool>true</bool>
  21. </property>
  22. <property name="windowTitle">
  23. <string>Bienvenue sur le Dé-Monde</string>
  24. </property>
  25. <widget class="QWidget" name="baseWidget">
  26. <layout class="QHBoxLayout" name="horizontalLayout">
  27. <item>
  28. <widget class="QTabWidget" name="tabWidget">
  29. <property name="enabled">
  30. <bool>true</bool>
  31. </property>
  32. <property name="minimumSize">
  33. <size>
  34. <width>641</width>
  35. <height>561</height>
  36. </size>
  37. </property>
  38. <property name="acceptDrops">
  39. <bool>true</bool>
  40. </property>
  41. <property name="currentIndex">
  42. <number>0</number>
  43. </property>
  44. <widget class="QWidget" name="Combats_tab">
  45. <attribute name="title">
  46. <string>Combats</string>
  47. </attribute>
  48. <layout class="QHBoxLayout" name="horizontalLayout_3">
  49. <item>
  50. <layout class="QVBoxLayout" name="layoutCombat">
  51. <item>
  52. <layout class="QHBoxLayout" name="layoutBoutonsPlateau">
  53. <property name="spacing">
  54. <number>1</number>
  55. </property>
  56. <item>
  57. <widget class="QToolButton" name="toolButton_2">
  58. <property name="text">
  59. <string>...</string>
  60. </property>
  61. <property name="icon">
  62. <iconset>
  63. <normaloff>../../img/editer.png</normaloff>../../img/editer.png</iconset>
  64. </property>
  65. </widget>
  66. </item>
  67. <item>
  68. <widget class="QLabel" name="label_14">
  69. <property name="maximumSize">
  70. <size>
  71. <width>200</width>
  72. <height>16777215</height>
  73. </size>
  74. </property>
  75. <property name="text">
  76. <string>Combat: La tour sombre</string>
  77. </property>
  78. </widget>
  79. </item>
  80. <item>
  81. <widget class="QToolButton" name="toolButton_3">
  82. <property name="maximumSize">
  83. <size>
  84. <width>20</width>
  85. <height>16777215</height>
  86. </size>
  87. </property>
  88. <property name="text">
  89. <string>...</string>
  90. </property>
  91. <property name="icon">
  92. <iconset>
  93. <normaloff>../../img/flecheGauche.png</normaloff>../../img/flecheGauche.png</iconset>
  94. </property>
  95. </widget>
  96. </item>
  97. <item>
  98. <widget class="QLabel" name="label_15">
  99. <property name="maximumSize">
  100. <size>
  101. <width>45</width>
  102. <height>16777215</height>
  103. </size>
  104. </property>
  105. <property name="text">
  106. <string>Tour: 10</string>
  107. </property>
  108. </widget>
  109. </item>
  110. <item>
  111. <widget class="QToolButton" name="toolButton_4">
  112. <property name="maximumSize">
  113. <size>
  114. <width>20</width>
  115. <height>16777215</height>
  116. </size>
  117. </property>
  118. <property name="text">
  119. <string>...</string>
  120. </property>
  121. <property name="icon">
  122. <iconset>
  123. <normaloff>../../img/flecheDroite.png</normaloff>../../img/flecheDroite.png</iconset>
  124. </property>
  125. </widget>
  126. </item>
  127. <item>
  128. <widget class="QLabel" name="label_16">
  129. <property name="maximumSize">
  130. <size>
  131. <width>200</width>
  132. <height>16777215</height>
  133. </size>
  134. </property>
  135. <property name="text">
  136. <string>Plateau: 1er étage</string>
  137. </property>
  138. <property name="alignment">
  139. <set>Qt::AlignCenter</set>
  140. </property>
  141. </widget>
  142. </item>
  143. <item>
  144. <widget class="QToolButton" name="toolButton_5">
  145. <property name="text">
  146. <string>...</string>
  147. </property>
  148. <property name="icon">
  149. <iconset>
  150. <normaloff>../../img/flecheBas.png</normaloff>../../img/flecheBas.png</iconset>
  151. </property>
  152. </widget>
  153. </item>
  154. <item>
  155. <widget class="QPushButton" name="modeCombatPlateau">
  156. <property name="minimumSize">
  157. <size>
  158. <width>34</width>
  159. <height>24</height>
  160. </size>
  161. </property>
  162. <property name="maximumSize">
  163. <size>
  164. <width>34</width>
  165. <height>24</height>
  166. </size>
  167. </property>
  168. <property name="toolTip">
  169. <string>Passer en mode Combat</string>
  170. </property>
  171. <property name="text">
  172. <string/>
  173. </property>
  174. <property name="icon">
  175. <iconset>
  176. <normaloff>../../img/btn_ModeCombat.png</normaloff>../../img/btn_ModeCombat.png</iconset>
  177. </property>
  178. </widget>
  179. </item>
  180. <item>
  181. <widget class="QPushButton" name="modeCreationPlateau">
  182. <property name="minimumSize">
  183. <size>
  184. <width>34</width>
  185. <height>24</height>
  186. </size>
  187. </property>
  188. <property name="maximumSize">
  189. <size>
  190. <width>34</width>
  191. <height>24</height>
  192. </size>
  193. </property>
  194. <property name="toolTip">
  195. <string>Passer en mode Création</string>
  196. </property>
  197. <property name="text">
  198. <string/>
  199. </property>
  200. <property name="icon">
  201. <iconset>
  202. <normaloff>../../img/btnCreation.png</normaloff>../../img/btnCreation.png</iconset>
  203. </property>
  204. </widget>
  205. </item>
  206. <item>
  207. <widget class="QPushButton" name="sauverPlateau">
  208. <property name="minimumSize">
  209. <size>
  210. <width>34</width>
  211. <height>24</height>
  212. </size>
  213. </property>
  214. <property name="maximumSize">
  215. <size>
  216. <width>34</width>
  217. <height>24</height>
  218. </size>
  219. </property>
  220. <property name="toolTip">
  221. <string>Enregistrer le plateau</string>
  222. </property>
  223. <property name="text">
  224. <string/>
  225. </property>
  226. <property name="icon">
  227. <iconset>
  228. <normaloff>../../img/btnEnregistrer.png</normaloff>../../img/btnEnregistrer.png</iconset>
  229. </property>
  230. </widget>
  231. </item>
  232. <item>
  233. <widget class="QPushButton" name="fermerPlateau">
  234. <property name="minimumSize">
  235. <size>
  236. <width>34</width>
  237. <height>24</height>
  238. </size>
  239. </property>
  240. <property name="maximumSize">
  241. <size>
  242. <width>34</width>
  243. <height>24</height>
  244. </size>
  245. </property>
  246. <property name="toolTip">
  247. <string>Fermer le plateau</string>
  248. </property>
  249. <property name="text">
  250. <string/>
  251. </property>
  252. <property name="icon">
  253. <iconset>
  254. <normaloff>../../img/btnFermer.png</normaloff>../../img/btnFermer.png</iconset>
  255. </property>
  256. </widget>
  257. </item>
  258. <item>
  259. <widget class="QPushButton" name="afficherGestionCombat">
  260. <property name="minimumSize">
  261. <size>
  262. <width>34</width>
  263. <height>24</height>
  264. </size>
  265. </property>
  266. <property name="maximumSize">
  267. <size>
  268. <width>110</width>
  269. <height>45</height>
  270. </size>
  271. </property>
  272. <property name="font">
  273. <font>
  274. <weight>75</weight>
  275. <bold>true</bold>
  276. </font>
  277. </property>
  278. <property name="text">
  279. <string>Tab</string>
  280. </property>
  281. </widget>
  282. </item>
  283. </layout>
  284. </item>
  285. <item>
  286. <layout class="QHBoxLayout" name="horizontalLayout_4">
  287. <item>
  288. <widget class="QFrame" name="layoutCombatGauche">
  289. <layout class="QVBoxLayout" name="panneauInfosPlateau" stretch="0,0">
  290. <property name="spacing">
  291. <number>0</number>
  292. </property>
  293. <item>
  294. <widget class="QLabel" name="combatTour">
  295. <property name="minimumSize">
  296. <size>
  297. <width>80</width>
  298. <height>20</height>
  299. </size>
  300. </property>
  301. <property name="maximumSize">
  302. <size>
  303. <width>110</width>
  304. <height>20</height>
  305. </size>
  306. </property>
  307. <property name="font">
  308. <font>
  309. <pointsize>10</pointsize>
  310. <weight>75</weight>
  311. <bold>true</bold>
  312. </font>
  313. </property>
  314. <property name="frameShape">
  315. <enum>QFrame::WinPanel</enum>
  316. </property>
  317. <property name="frameShadow">
  318. <enum>QFrame::Sunken</enum>
  319. </property>
  320. <property name="text">
  321. <string>Tour: 1</string>
  322. </property>
  323. <property name="alignment">
  324. <set>Qt::AlignCenter</set>
  325. </property>
  326. </widget>
  327. </item>
  328. <item>
  329. <widget class="QTableWidget" name="infoOrdreJeu">
  330. <property name="minimumSize">
  331. <size>
  332. <width>80</width>
  333. <height>208</height>
  334. </size>
  335. </property>
  336. <property name="maximumSize">
  337. <size>
  338. <width>110</width>
  339. <height>16777215</height>
  340. </size>
  341. </property>
  342. <property name="palette">
  343. <palette>
  344. <active>
  345. <colorrole role="Base">
  346. <brush brushstyle="SolidPattern">
  347. <color alpha="120">
  348. <red>255</red>
  349. <green>255</green>
  350. <blue>255</blue>
  351. </color>
  352. </brush>
  353. </colorrole>
  354. </active>
  355. <inactive>
  356. <colorrole role="Base">
  357. <brush brushstyle="SolidPattern">
  358. <color alpha="120">
  359. <red>255</red>
  360. <green>255</green>
  361. <blue>255</blue>
  362. </color>
  363. </brush>
  364. </colorrole>
  365. </inactive>
  366. <disabled>
  367. <colorrole role="Base">
  368. <brush brushstyle="SolidPattern">
  369. <color alpha="255">
  370. <red>240</red>
  371. <green>240</green>
  372. <blue>240</blue>
  373. </color>
  374. </brush>
  375. </colorrole>
  376. </disabled>
  377. </palette>
  378. </property>
  379. <property name="frameShape">
  380. <enum>QFrame::WinPanel</enum>
  381. </property>
  382. <property name="editTriggers">
  383. <set>QAbstractItemView::NoEditTriggers</set>
  384. </property>
  385. <property name="dragDropOverwriteMode">
  386. <bool>false</bool>
  387. </property>
  388. <property name="alternatingRowColors">
  389. <bool>false</bool>
  390. </property>
  391. <property name="selectionMode">
  392. <enum>QAbstractItemView::SingleSelection</enum>
  393. </property>
  394. <property name="selectionBehavior">
  395. <enum>QAbstractItemView::SelectItems</enum>
  396. </property>
  397. <property name="textElideMode">
  398. <enum>Qt::ElideMiddle</enum>
  399. </property>
  400. <property name="sortingEnabled">
  401. <bool>true</bool>
  402. </property>
  403. <property name="cornerButtonEnabled">
  404. <bool>false</bool>
  405. </property>
  406. <attribute name="horizontalHeaderVisible">
  407. <bool>false</bool>
  408. </attribute>
  409. <attribute name="horizontalHeaderDefaultSectionSize">
  410. <number>100</number>
  411. </attribute>
  412. <attribute name="verticalHeaderVisible">
  413. <bool>false</bool>
  414. </attribute>
  415. <column>
  416. <property name="text">
  417. <string>num</string>
  418. </property>
  419. </column>
  420. <column>
  421. <property name="text">
  422. <string>nom</string>
  423. </property>
  424. </column>
  425. <column>
  426. <property name="text">
  427. <string>ordre</string>
  428. </property>
  429. </column>
  430. </widget>
  431. </item>
  432. </layout>
  433. </widget>
  434. </item>
  435. <item>
  436. <layout class="QVBoxLayout" name="layoutCombatCentre" stretch="0,0,0">
  437. <property name="spacing">
  438. <number>0</number>
  439. </property>
  440. <item>
  441. <widget class="QLabel" name="nomPlateau">
  442. <property name="minimumSize">
  443. <size>
  444. <width>0</width>
  445. <height>24</height>
  446. </size>
  447. </property>
  448. <property name="maximumSize">
  449. <size>
  450. <width>16777215</width>
  451. <height>24</height>
  452. </size>
  453. </property>
  454. <property name="font">
  455. <font>
  456. <family>Georgia</family>
  457. <pointsize>9</pointsize>
  458. <weight>75</weight>
  459. <bold>true</bold>
  460. </font>
  461. </property>
  462. <property name="text">
  463. <string>nom</string>
  464. </property>
  465. <property name="scaledContents">
  466. <bool>true</bool>
  467. </property>
  468. <property name="alignment">
  469. <set>Qt::AlignCenter</set>
  470. </property>
  471. <property name="wordWrap">
  472. <bool>true</bool>
  473. </property>
  474. </widget>
  475. </item>
  476. <item>
  477. <widget class="QGraphicsView" name="vuePlateau">
  478. <property name="minimumSize">
  479. <size>
  480. <width>400</width>
  481. <height>0</height>
  482. </size>
  483. </property>
  484. <property name="acceptDrops">
  485. <bool>true</bool>
  486. </property>
  487. <property name="verticalScrollBarPolicy">
  488. <enum>Qt::ScrollBarAsNeeded</enum>
  489. </property>
  490. <property name="horizontalScrollBarPolicy">
  491. <enum>Qt::ScrollBarAsNeeded</enum>
  492. </property>
  493. <property name="renderHints">
  494. <set>QPainter::Antialiasing|QPainter::HighQualityAntialiasing|QPainter::TextAntialiasing</set>
  495. </property>
  496. <property name="dragMode">
  497. <enum>QGraphicsView::NoDrag</enum>
  498. </property>
  499. <property name="transformationAnchor">
  500. <enum>QGraphicsView::NoAnchor</enum>
  501. </property>
  502. <property name="resizeAnchor">
  503. <enum>QGraphicsView::NoAnchor</enum>
  504. </property>
  505. <property name="viewportUpdateMode">
  506. <enum>QGraphicsView::MinimalViewportUpdate</enum>
  507. </property>
  508. </widget>
  509. </item>
  510. <item>
  511. <widget class="QFrame" name="barreBasCombat">
  512. <property name="frameShape">
  513. <enum>QFrame::StyledPanel</enum>
  514. </property>
  515. <property name="frameShadow">
  516. <enum>QFrame::Raised</enum>
  517. </property>
  518. <layout class="QHBoxLayout" name="horizontalLayout_2">
  519. <item>
  520. <widget class="QGroupBox" name="infoPion">
  521. <property name="minimumSize">
  522. <size>
  523. <width>80</width>
  524. <height>65</height>
  525. </size>
  526. </property>
  527. <property name="maximumSize">
  528. <size>
  529. <width>110</width>
  530. <height>16777215</height>
  531. </size>
  532. </property>
  533. <property name="title">
  534. <string/>
  535. </property>
  536. <widget class="QLabel" name="infoPionEnCours_sante">
  537. <property name="geometry">
  538. <rect>
  539. <x>50</x>
  540. <y>20</y>
  541. <width>21</width>
  542. <height>21</height>
  543. </rect>
  544. </property>
  545. <property name="text">
  546. <string>sante</string>
  547. </property>
  548. <property name="margin">
  549. <number>1</number>
  550. </property>
  551. <property name="indent">
  552. <number>-1</number>
  553. </property>
  554. </widget>
  555. <widget class="QLabel" name="infoPionEnCours_image">
  556. <property name="geometry">
  557. <rect>
  558. <x>10</x>
  559. <y>20</y>
  560. <width>31</width>
  561. <height>31</height>
  562. </rect>
  563. </property>
  564. <property name="frameShape">
  565. <enum>QFrame::StyledPanel</enum>
  566. </property>
  567. <property name="text">
  568. <string/>
  569. </property>
  570. </widget>
  571. <widget class="QLabel" name="infoPionEnCours_effet">
  572. <property name="geometry">
  573. <rect>
  574. <x>50</x>
  575. <y>40</y>
  576. <width>21</width>
  577. <height>20</height>
  578. </rect>
  579. </property>
  580. <property name="toolTip">
  581. <string>Evanoui</string>
  582. </property>
  583. <property name="text">
  584. <string/>
  585. </property>
  586. <property name="pixmap">
  587. <pixmap>../../img/etatEtourdi.png</pixmap>
  588. </property>
  589. <property name="scaledContents">
  590. <bool>false</bool>
  591. </property>
  592. </widget>
  593. <widget class="QLabel" name="infoPionEnCours_nom">
  594. <property name="geometry">
  595. <rect>
  596. <x>10</x>
  597. <y>0</y>
  598. <width>61</width>
  599. <height>21</height>
  600. </rect>
  601. </property>
  602. <property name="text">
  603. <string>nom</string>
  604. </property>
  605. <property name="margin">
  606. <number>1</number>
  607. </property>
  608. <property name="indent">
  609. <number>-1</number>
  610. </property>
  611. </widget>
  612. </widget>
  613. </item>
  614. <item>
  615. <widget class="QGroupBox" name="infoDecor">
  616. <property name="enabled">
  617. <bool>true</bool>
  618. </property>
  619. <property name="minimumSize">
  620. <size>
  621. <width>80</width>
  622. <height>61</height>
  623. </size>
  624. </property>
  625. <property name="maximumSize">
  626. <size>
  627. <width>110</width>
  628. <height>16777215</height>
  629. </size>
  630. </property>
  631. <property name="title">
  632. <string/>
  633. </property>
  634. <widget class="QLabel" name="infoDecorEnCours_nom">
  635. <property name="geometry">
  636. <rect>
  637. <x>10</x>
  638. <y>0</y>
  639. <width>61</width>
  640. <height>21</height>
  641. </rect>
  642. </property>
  643. <property name="text">
  644. <string>nom</string>
  645. </property>
  646. </widget>
  647. <widget class="QLabel" name="infoDecorEnCours_image">
  648. <property name="geometry">
  649. <rect>
  650. <x>10</x>
  651. <y>20</y>
  652. <width>31</width>
  653. <height>31</height>
  654. </rect>
  655. </property>
  656. <property name="frameShape">
  657. <enum>QFrame::StyledPanel</enum>
  658. </property>
  659. <property name="text">
  660. <string/>
  661. </property>
  662. </widget>
  663. <widget class="QLabel" name="infoDecorEnCours_effet">
  664. <property name="geometry">
  665. <rect>
  666. <x>50</x>
  667. <y>20</y>
  668. <width>21</width>
  669. <height>21</height>
  670. </rect>
  671. </property>
  672. <property name="text">
  673. <string>TextLabel</string>
  674. </property>
  675. </widget>
  676. <widget class="QLabel" name="infoDecorEnCours_detruit">
  677. <property name="geometry">
  678. <rect>
  679. <x>50</x>
  680. <y>40</y>
  681. <width>21</width>
  682. <height>21</height>
  683. </rect>
  684. </property>
  685. <property name="text">
  686. <string>TextLabel</string>
  687. </property>
  688. </widget>
  689. <widget class="QLabel" name="infoDecorEnCours_verrouille">
  690. <property name="geometry">
  691. <rect>
  692. <x>50</x>
  693. <y>0</y>
  694. <width>21</width>
  695. <height>21</height>
  696. </rect>
  697. </property>
  698. <property name="text">
  699. <string>TextLabel</string>
  700. </property>
  701. </widget>
  702. </widget>
  703. </item>
  704. <item>
  705. <widget class="QGroupBox" name="infoCase">
  706. <property name="minimumSize">
  707. <size>
  708. <width>80</width>
  709. <height>61</height>
  710. </size>
  711. </property>
  712. <property name="maximumSize">
  713. <size>
  714. <width>110</width>
  715. <height>16777215</height>
  716. </size>
  717. </property>
  718. <property name="title">
  719. <string/>
  720. </property>
  721. <widget class="QLabel" name="infoPionEnCours_depRestant_2">
  722. <property name="geometry">
  723. <rect>
  724. <x>10</x>
  725. <y>120</y>
  726. <width>71</width>
  727. <height>21</height>
  728. </rect>
  729. </property>
  730. <property name="text">
  731. <string>Dep.: 0 </string>
  732. </property>
  733. <property name="margin">
  734. <number>1</number>
  735. </property>
  736. </widget>
  737. <widget class="QLabel" name="infoPionEnCours_aJoue_2">
  738. <property name="geometry">
  739. <rect>
  740. <x>10</x>
  741. <y>140</y>
  742. <width>61</width>
  743. <height>21</height>
  744. </rect>
  745. </property>
  746. <property name="text">
  747. <string>A joué: Non</string>
  748. </property>
  749. <property name="margin">
  750. <number>1</number>
  751. </property>
  752. </widget>
  753. <widget class="QLabel" name="infoPionEnCours_endormi_2">
  754. <property name="geometry">
  755. <rect>
  756. <x>0</x>
  757. <y>180</y>
  758. <width>21</width>
  759. <height>21</height>
  760. </rect>
  761. </property>
  762. <property name="toolTip">
  763. <string>Endormi</string>
  764. </property>
  765. <property name="text">
  766. <string>end</string>
  767. </property>
  768. </widget>
  769. <widget class="QLabel" name="infoPionEnCours_paralyse_2">
  770. <property name="geometry">
  771. <rect>
  772. <x>20</x>
  773. <y>180</y>
  774. <width>21</width>
  775. <height>21</height>
  776. </rect>
  777. </property>
  778. <property name="toolTip">
  779. <string>Paralysé</string>
  780. </property>
  781. <property name="text">
  782. <string>par</string>
  783. </property>
  784. </widget>
  785. <widget class="QLabel" name="infoPionEnCours_entrave_2">
  786. <property name="geometry">
  787. <rect>
  788. <x>40</x>
  789. <y>180</y>
  790. <width>21</width>
  791. <height>21</height>
  792. </rect>
  793. </property>
  794. <property name="toolTip">
  795. <string>Entravé</string>
  796. </property>
  797. <property name="text">
  798. <string>ent</string>
  799. </property>
  800. </widget>
  801. <widget class="QLabel" name="infoPionEnCours_mort_2">
  802. <property name="geometry">
  803. <rect>
  804. <x>60</x>
  805. <y>180</y>
  806. <width>21</width>
  807. <height>21</height>
  808. </rect>
  809. </property>
  810. <property name="toolTip">
  811. <string>Mort</string>
  812. </property>
  813. <property name="text">
  814. <string>mrt</string>
  815. </property>
  816. </widget>
  817. <widget class="QLabel" name="infoPionEnCours_evanoui_2">
  818. <property name="geometry">
  819. <rect>
  820. <x>0</x>
  821. <y>160</y>
  822. <width>21</width>
  823. <height>21</height>
  824. </rect>
  825. </property>
  826. <property name="toolTip">
  827. <string>Evanoui</string>
  828. </property>
  829. <property name="text">
  830. <string>evn</string>
  831. </property>
  832. </widget>
  833. <widget class="QLabel" name="infoPionEnCours_brule_2">
  834. <property name="geometry">
  835. <rect>
  836. <x>20</x>
  837. <y>160</y>
  838. <width>21</width>
  839. <height>21</height>
  840. </rect>
  841. </property>
  842. <property name="toolTip">
  843. <string>Brûle</string>
  844. </property>
  845. <property name="text">
  846. <string>bru</string>
  847. </property>
  848. </widget>
  849. <widget class="QLabel" name="infoPionEnCours_mouille_2">
  850. <property name="geometry">
  851. <rect>
  852. <x>40</x>
  853. <y>160</y>
  854. <width>21</width>
  855. <height>21</height>
  856. </rect>
  857. </property>
  858. <property name="toolTip">
  859. <string>Mouillé</string>
  860. </property>
  861. <property name="text">
  862. <string>mou</string>
  863. </property>
  864. </widget>
  865. <widget class="QLabel" name="infoPionEnCours_vol_2">
  866. <property name="geometry">
  867. <rect>
  868. <x>60</x>
  869. <y>160</y>
  870. <width>21</width>
  871. <height>21</height>
  872. </rect>
  873. </property>
  874. <property name="toolTip">
  875. <string>En Vol</string>
  876. </property>
  877. <property name="text">
  878. <string>vol</string>
  879. </property>
  880. </widget>
  881. <widget class="QLabel" name="infoCaseEnCours_terrain">
  882. <property name="geometry">
  883. <rect>
  884. <x>10</x>
  885. <y>0</y>
  886. <width>61</width>
  887. <height>21</height>
  888. </rect>
  889. </property>
  890. <property name="text">
  891. <string>terrain</string>
  892. </property>
  893. <property name="margin">
  894. <number>1</number>
  895. </property>
  896. <property name="indent">
  897. <number>-1</number>
  898. </property>
  899. </widget>
  900. <widget class="QLabel" name="infoCaseEnCours_coord">
  901. <property name="geometry">
  902. <rect>
  903. <x>10</x>
  904. <y>20</y>
  905. <width>61</width>
  906. <height>21</height>
  907. </rect>
  908. </property>
  909. <property name="text">
  910. <string>coord</string>
  911. </property>
  912. <property name="margin">
  913. <number>1</number>
  914. </property>
  915. <property name="indent">
  916. <number>-1</number>
  917. </property>
  918. </widget>
  919. <widget class="QLabel" name="infoCaseEnCours_effetNom">
  920. <property name="geometry">
  921. <rect>
  922. <x>60</x>
  923. <y>0</y>
  924. <width>21</width>
  925. <height>21</height>
  926. </rect>
  927. </property>
  928. <property name="text">
  929. <string/>
  930. </property>
  931. <property name="pixmap">
  932. <pixmap>../../img/etatFeu.png</pixmap>
  933. </property>
  934. <property name="scaledContents">
  935. <bool>true</bool>
  936. </property>
  937. <property name="margin">
  938. <number>1</number>
  939. </property>
  940. <property name="indent">
  941. <number>-1</number>
  942. </property>
  943. </widget>
  944. <widget class="QLabel" name="infoCaseEnCours_altitude">
  945. <property name="geometry">
  946. <rect>
  947. <x>10</x>
  948. <y>40</y>
  949. <width>31</width>
  950. <height>21</height>
  951. </rect>
  952. </property>
  953. <property name="text">
  954. <string>alt</string>
  955. </property>
  956. <property name="margin">
  957. <number>1</number>
  958. </property>
  959. <property name="indent">
  960. <number>-1</number>
  961. </property>
  962. </widget>
  963. </widget>
  964. </item>
  965. </layout>
  966. </widget>
  967. </item>
  968. </layout>
  969. </item>
  970. <item>
  971. <layout class="QHBoxLayout" name="layoutCombatDroite" stretch="0,0">
  972. <property name="spacing">
  973. <number>0</number>
  974. </property>
  975. <item>
  976. <widget class="QToolBox" name="outilsEditionPlateau">
  977. <property name="minimumSize">
  978. <size>
  979. <width>120</width>
  980. <height>0</height>
  981. </size>
  982. </property>
  983. <property name="maximumSize">
  984. <size>
  985. <width>120</width>
  986. <height>16777215</height>
  987. </size>
  988. </property>
  989. <property name="font">
  990. <font>
  991. <weight>50</weight>
  992. <italic>false</italic>
  993. <bold>false</bold>
  994. <underline>false</underline>
  995. </font>
  996. </property>
  997. <property name="autoFillBackground">
  998. <bool>true</bool>
  999. </property>
  1000. <property name="frameShape">
  1001. <enum>QFrame::StyledPanel</enum>
  1002. </property>
  1003. <property name="frameShadow">
  1004. <enum>QFrame::Sunken</enum>
  1005. </property>
  1006. <property name="lineWidth">
  1007. <number>1</number>
  1008. </property>
  1009. <property name="midLineWidth">
  1010. <number>0</number>
  1011. </property>
  1012. <property name="currentIndex">
  1013. <number>0</number>
  1014. </property>
  1015. <property name="tabSpacing">
  1016. <number>2</number>
  1017. </property>
  1018. <widget class="QWidget" name="editPlateau_Terrain">
  1019. <property name="geometry">
  1020. <rect>
  1021. <x>0</x>
  1022. <y>0</y>
  1023. <width>118</width>
  1024. <height>507</height>
  1025. </rect>
  1026. </property>
  1027. <attribute name="label">
  1028. <string>Terrains</string>
  1029. </attribute>
  1030. <widget class="QPushButton" name="terrainCouleur">
  1031. <property name="geometry">
  1032. <rect>
  1033. <x>80</x>
  1034. <y>190</y>
  1035. <width>31</width>
  1036. <height>21</height>
  1037. </rect>
  1038. </property>
  1039. <property name="contextMenuPolicy">
  1040. <enum>Qt::DefaultContextMenu</enum>
  1041. </property>
  1042. <property name="toolTip">
  1043. <string>Autres couleurs</string>
  1044. </property>
  1045. <property name="text">
  1046. <string/>
  1047. </property>
  1048. <property name="icon">
  1049. <iconset>
  1050. <normaloff>img/btnCouleurs.png</normaloff>img/btnCouleurs.png</iconset>
  1051. </property>
  1052. </widget>
  1053. <widget class="QTableWidget" name="listTerrains">
  1054. <property name="geometry">
  1055. <rect>
  1056. <x>10</x>
  1057. <y>260</y>
  1058. <width>101</width>
  1059. <height>151</height>
  1060. </rect>
  1061. </property>
  1062. <property name="minimumSize">
  1063. <size>
  1064. <width>81</width>
  1065. <height>0</height>
  1066. </size>
  1067. </property>
  1068. <property name="horizontalScrollBarPolicy">
  1069. <enum>Qt::ScrollBarAlwaysOff</enum>
  1070. </property>
  1071. <property name="editTriggers">
  1072. <set>QAbstractItemView::AnyKeyPressed|QAbstractItemView::DoubleClicked</set>
  1073. </property>
  1074. <property name="iconSize">
  1075. <size>
  1076. <width>2</width>
  1077. <height>2</height>
  1078. </size>
  1079. </property>
  1080. <property name="textElideMode">
  1081. <enum>Qt::ElideMiddle</enum>
  1082. </property>
  1083. <property name="columnCount">
  1084. <number>2</number>
  1085. </property>
  1086. <attribute name="horizontalHeaderVisible">
  1087. <bool>false</bool>
  1088. </attribute>
  1089. <attribute name="verticalHeaderVisible">
  1090. <bool>false</bool>
  1091. </attribute>
  1092. <column>
  1093. <property name="text">
  1094. <string>code</string>
  1095. </property>
  1096. </column>
  1097. <column>
  1098. <property name="text">
  1099. <string>Terrain</string>
  1100. </property>
  1101. <property name="font">
  1102. <font>
  1103. <pointsize>9</pointsize>
  1104. </font>
  1105. </property>
  1106. </column>
  1107. </widget>
  1108. <widget class="QPushButton" name="terrainNouveau">
  1109. <property name="geometry">
  1110. <rect>
  1111. <x>90</x>
  1112. <y>220</y>
  1113. <width>21</width>
  1114. <height>21</height>
  1115. </rect>
  1116. </property>
  1117. <property name="text">
  1118. <string/>
  1119. </property>
  1120. <property name="icon">
  1121. <iconset>
  1122. <normaloff>img/plus.png</normaloff>img/plus.png</iconset>
  1123. </property>
  1124. </widget>
  1125. <widget class="QPushButton" name="terrainEdit">
  1126. <property name="geometry">
  1127. <rect>
  1128. <x>70</x>
  1129. <y>220</y>
  1130. <width>21</width>
  1131. <height>21</height>
  1132. </rect>
  1133. </property>
  1134. <property name="text">
  1135. <string/>
  1136. </property>
  1137. <property name="icon">
  1138. <iconset>
  1139. <normaloff>img/editer.png</normaloff>img/editer.png</iconset>
  1140. </property>
  1141. </widget>
  1142. <widget class="QToolButton" name="effFeu">
  1143. <property name="geometry">
  1144. <rect>
  1145. <x>10</x>
  1146. <y>438</y>
  1147. <width>21</width>
  1148. <height>21</height>
  1149. </rect>
  1150. </property>
  1151. <property name="toolTip">
  1152. <string>Feu</string>
  1153. </property>
  1154. <property name="whatsThis">
  1155. <string/>
  1156. </property>
  1157. <property name="text">
  1158. <string>...</string>
  1159. </property>
  1160. <property name="icon">
  1161. <iconset>
  1162. <normaloff>img/effFeu.jpg</normaloff>img/effFeu.jpg</iconset>
  1163. </property>
  1164. </widget>
  1165. <widget class="QToolButton" name="effEau">
  1166. <property name="geometry">
  1167. <rect>
  1168. <x>30</x>
  1169. <y>438</y>
  1170. <width>21</width>
  1171. <height>21</height>
  1172. </rect>
  1173. </property>
  1174. <property name="toolTip">
  1175. <string>Eau</string>
  1176. </property>
  1177. <property name="whatsThis">
  1178. <string/>
  1179. </property>
  1180. <property name="text">
  1181. <string>...</string>
  1182. </property>
  1183. <property name="icon">
  1184. <iconset>
  1185. <normaloff>img/etatEau.png</normaloff>img/etatEau.png</iconset>
  1186. </property>
  1187. </widget>
  1188. <widget class="QToolButton" name="effGlace">
  1189. <property name="geometry">
  1190. <rect>
  1191. <x>50</x>
  1192. <y>438</y>
  1193. <width>21</width>
  1194. <height>21</height>
  1195. </rect>
  1196. </property>
  1197. <property name="toolTip">
  1198. <string>Glace</string>
  1199. </property>
  1200. <property name="whatsThis">
  1201. <string/>
  1202. </property>
  1203. <property name="text">
  1204. <string>...</string>
  1205. </property>
  1206. <property name="icon">
  1207. <iconset>
  1208. <normaloff>img/effGlace.jpg</normaloff>img/effGlace.jpg</iconset>
  1209. </property>
  1210. </widget>
  1211. <widget class="QToolButton" name="effPoison">
  1212. <property name="geometry">
  1213. <rect>
  1214. <x>70</x>
  1215. <y>438</y>
  1216. <width>21</width>
  1217. <height>21</height>
  1218. </rect>
  1219. </property>
  1220. <property name="toolTip">
  1221. <string>Poison</string>
  1222. </property>
  1223. <property name="whatsThis">
  1224. <string/>
  1225. </property>
  1226. <property name="text">
  1227. <string>...</string>
  1228. </property>
  1229. <property name="icon">
  1230. <iconset>
  1231. <normaloff>img/effPoison.png</normaloff>img/effPoison.png</iconset>
  1232. </property>
  1233. </widget>
  1234. <widget class="QToolButton" name="effEffacer">
  1235. <property name="geometry">
  1236. <rect>
  1237. <x>90</x>
  1238. <y>438</y>
  1239. <width>21</width>
  1240. <height>21</height>
  1241. </rect>
  1242. </property>
  1243. <property name="toolTip">
  1244. <string>Effacer</string>
  1245. </property>
  1246. <property name="whatsThis">
  1247. <string/>
  1248. </property>
  1249. <property name="text">
  1250. <string>...</string>
  1251. </property>
  1252. <property name="icon">
  1253. <iconset>
  1254. <normaloff>img/gomme.png</normaloff>img/gomme.png</iconset>
  1255. </property>
  1256. </widget>
  1257. <widget class="QComboBox" name="listeCategoriesTerrains">
  1258. <property name="geometry">
  1259. <rect>
  1260. <x>10</x>
  1261. <y>241</y>
  1262. <width>101</width>
  1263. <height>20</height>
  1264. </rect>
  1265. </property>
  1266. </widget>
  1267. <widget class="QToolButton" name="formeLigne">
  1268. <property name="geometry">
  1269. <rect>
  1270. <x>10</x>
  1271. <y>40</y>
  1272. <width>31</width>
  1273. <height>21</height>
  1274. </rect>
  1275. </property>
  1276. <property name="toolTip">
  1277. <string>Ligne</string>
  1278. </property>
  1279. <property name="text">
  1280. <string>...</string>
  1281. </property>
  1282. <property name="icon">
  1283. <iconset>
  1284. <normaloff>img/formeLigne.png</normaloff>img/formeLigne.png</iconset>
  1285. </property>
  1286. </widget>
  1287. <widget class="QToolButton" name="formeRectVide">
  1288. <property name="geometry">
  1289. <rect>
  1290. <x>40</x>
  1291. <y>80</y>
  1292. <width>31</width>
  1293. <height>21</height>
  1294. </rect>
  1295. </property>
  1296. <property name="toolTip">
  1297. <string>Rectangle (vide)</string>
  1298. </property>
  1299. <property name="statusTip">
  1300. <string/>
  1301. </property>
  1302. <property name="text">
  1303. <string>...</string>
  1304. </property>
  1305. <property name="icon">
  1306. <iconset>
  1307. <normaloff>img/formeRectVide.png</normaloff>img/formeRectVide.png</iconset>
  1308. </property>
  1309. </widget>
  1310. <widget class="QToolButton" name="formeRectPlein">
  1311. <property name="geometry">
  1312. <rect>
  1313. <x>10</x>
  1314. <y>80</y>
  1315. <width>31</width>
  1316. <height>21</height>
  1317. </rect>
  1318. </property>
  1319. <property name="toolTip">
  1320. <string>Rectangle (plein)</string>
  1321. </property>
  1322. <property name="statusTip">
  1323. <string/>
  1324. </property>
  1325. <property name="text">
  1326. <string>...</string>
  1327. </property>
  1328. <property name="icon">
  1329. <iconset>
  1330. <normaloff>img/formeRectPlein.png</normaloff>img/formeRectPlein.png</iconset>
  1331. </property>
  1332. </widget>
  1333. <widget class="QToolButton" name="formeEllipseVide">
  1334. <property name="geometry">
  1335. <rect>
  1336. <x>40</x>
  1337. <y>60</y>
  1338. <width>31</width>
  1339. <height>21</height>
  1340. </rect>
  1341. </property>
  1342. <property name="toolTip">
  1343. <string>Ellipse (vide)</string>
  1344. </property>
  1345. <property name="statusTip">
  1346. <string/>
  1347. </property>
  1348. <property name="text">
  1349. <string>...</string>
  1350. </property>
  1351. <property name="icon">
  1352. <iconset>
  1353. <normaloff>img/formeEllipseVide.png</normaloff>img/formeEllipseVide.png</iconset>
  1354. </property>
  1355. </widget>
  1356. <widget class="QToolButton" name="formeEllipsePlein">
  1357. <property name="geometry">
  1358. <rect>
  1359. <x>10</x>
  1360. <y>60</y>
  1361. <width>31</width>
  1362. <height>21</height>
  1363. </rect>
  1364. </property>
  1365. <property name="toolTip">
  1366. <string>Ellipse (pleine)</string>
  1367. </property>
  1368. <property name="statusTip">
  1369. <string/>
  1370. </property>
  1371. <property name="text">
  1372. <string>...</string>
  1373. </property>
  1374. <property name="icon">
  1375. <iconset>
  1376. <normaloff>img/formeEllipsePlein.png</normaloff>img/formeEllipsePlein.png</iconset>
  1377. </property>
  1378. </widget>
  1379. <widget class="QToolButton" name="formeLigneOrientee">
  1380. <property name="geometry">
  1381. <rect>
  1382. <x>40</x>
  1383. <y>40</y>
  1384. <width>31</width>
  1385. <height>21</height>
  1386. </rect>
  1387. </property>
  1388. <property name="toolTip">
  1389. <string>Frontière</string>
  1390. </property>
  1391. <property name="statusTip">
  1392. <string/>
  1393. </property>
  1394. <property name="text">
  1395. <string>...</string>
  1396. </property>
  1397. <property name="icon">
  1398. <iconset>
  1399. <normaloff>img/formeLigneOrientee.png</normaloff>img/formeLigneOrientee.png</iconset>
  1400. </property>
  1401. </widget>
  1402. <widget class="QLabel" name="valeurEpaisseurPinceau">
  1403. <property name="geometry">
  1404. <rect>
  1405. <x>80</x>
  1406. <y>20</y>
  1407. <width>16</width>
  1408. <height>19</height>
  1409. </rect>
  1410. </property>
  1411. <property name="minimumSize">
  1412. <size>
  1413. <width>16</width>
  1414. <height>19</height>
  1415. </size>
  1416. </property>
  1417. <property name="maximumSize">
  1418. <size>
  1419. <width>16</width>
  1420. <height>19</height>
  1421. </size>
  1422. </property>
  1423. <property name="font">
  1424. <font>
  1425. <pointsize>9</pointsize>
  1426. <weight>75</weight>
  1427. <bold>true</bold>
  1428. </font>
  1429. </property>
  1430. <property name="text">
  1431. <string>1</string>
  1432. </property>
  1433. <property name="alignment">
  1434. <set>Qt::AlignCenter</set>
  1435. </property>
  1436. </widget>
  1437. <widget class="QSlider" name="epaisseurPinceau">
  1438. <property name="geometry">
  1439. <rect>
  1440. <x>90</x>
  1441. <y>20</y>
  1442. <width>20</width>
  1443. <height>81</height>
  1444. </rect>
  1445. </property>
  1446. <property name="minimum">
  1447. <number>1</number>
  1448. </property>
  1449. <property name="maximum">
  1450. <number>5</number>
  1451. </property>
  1452. <property name="value">
  1453. <number>1</number>
  1454. </property>
  1455. <property name="orientation">
  1456. <enum>Qt::Vertical</enum>
  1457. </property>
  1458. </widget>
  1459. <widget class="QToolButton" name="formeSimple">
  1460. <property name="geometry">
  1461. <rect>
  1462. <x>10</x>
  1463. <y>20</y>
  1464. <width>31</width>
  1465. <height>21</height>
  1466. </rect>
  1467. </property>
  1468. <property name="toolTip">
  1469. <string>Ligne</string>
  1470. </property>
  1471. <property name="text">
  1472. <string>...</string>
  1473. </property>
  1474. <property name="icon">
  1475. <iconset>
  1476. <normaloff>img/curseurPinceau.png</normaloff>img/curseurPinceau.png</iconset>
  1477. </property>
  1478. </widget>
  1479. <widget class="QDoubleSpinBox" name="altitudeCase">
  1480. <property name="geometry">
  1481. <rect>
  1482. <x>60</x>
  1483. <y>461</y>
  1484. <width>51</width>
  1485. <height>20</height>
  1486. </rect>
  1487. </property>
  1488. <property name="decimals">
  1489. <number>0</number>
  1490. </property>
  1491. <property name="minimum">
  1492. <double>-200.000000000000000</double>
  1493. </property>
  1494. <property name="maximum">
  1495. <double>200.000000000000000</double>
  1496. </property>
  1497. <property name="value">
  1498. <double>0.000000000000000</double>
  1499. </property>
  1500. </widget>
  1501. <widget class="QLabel" name="label_9">
  1502. <property name="geometry">
  1503. <rect>
  1504. <x>10</x>
  1505. <y>460</y>
  1506. <width>51</width>
  1507. <height>20</height>
  1508. </rect>
  1509. </property>
  1510. <property name="font">
  1511. <font>
  1512. <italic>true</italic>
  1513. <underline>false</underline>
  1514. </font>
  1515. </property>
  1516. <property name="text">
  1517. <string>Altitude :</string>
  1518. </property>
  1519. </widget>
  1520. <widget class="QToolButton" name="terrainCouleurPerso1">
  1521. <property name="geometry">
  1522. <rect>
  1523. <x>10</x>
  1524. <y>130</y>
  1525. <width>16</width>
  1526. <height>16</height>
  1527. </rect>
  1528. </property>
  1529. <property name="text">
  1530. <string/>
  1531. </property>
  1532. </widget>
  1533. <widget class="QToolButton" name="terrainCouleurPerso2">
  1534. <property name="geometry">
  1535. <rect>
  1536. <x>30</x>
  1537. <y>130</y>
  1538. <width>16</width>
  1539. <height>16</height>
  1540. </rect>
  1541. </property>
  1542. <property name="text">
  1543. <string/>
  1544. </property>
  1545. </widget>
  1546. <widget class="QToolButton" name="terrainCouleurPerso3">
  1547. <property name="geometry">
  1548. <rect>
  1549. <x>50</x>
  1550. <y>130</y>
  1551. <width>16</width>
  1552. <height>16</height>
  1553. </rect>
  1554. </property>
  1555. <property name="text">
  1556. <string/>
  1557. </property>
  1558. </widget>
  1559. <widget class="QToolButton" name="terrainCouleurPerso4">
  1560. <property name="geometry">
  1561. <rect>
  1562. <x>70</x>
  1563. <y>130</y>
  1564. <width>16</width>
  1565. <height>16</height>
  1566. </rect>
  1567. </property>
  1568. <property name="text">
  1569. <string/>
  1570. </property>
  1571. </widget>
  1572. <widget class="QToolButton" name="terrainCouleurPerso5">
  1573. <property name="geometry">
  1574. <rect>
  1575. <x>90</x>
  1576. <y>130</y>
  1577. <width>16</width>
  1578. <height>16</height>
  1579. </rect>
  1580. </property>
  1581. <property name="text">
  1582. <string/>
  1583. </property>
  1584. </widget>
  1585. <widget class="QToolButton" name="terrainCouleurPerso6">
  1586. <property name="geometry">
  1587. <rect>
  1588. <x>10</x>
  1589. <y>150</y>
  1590. <width>16</width>
  1591. <height>16</height>
  1592. </rect>
  1593. </property>
  1594. <property name="text">
  1595. <string/>
  1596. </property>
  1597. </widget>
  1598. <widget class="QToolButton" name="terrainCouleurPerso7">
  1599. <property name="geometry">
  1600. <rect>
  1601. <x>30</x>
  1602. <y>150</y>
  1603. <width>16</width>
  1604. <height>16</height>
  1605. </rect>
  1606. </property>
  1607. <property name="text">
  1608. <string/>
  1609. </property>
  1610. </widget>
  1611. <widget class="QToolButton" name="terrainCouleurPerso8">
  1612. <property name="geometry">
  1613. <rect>
  1614. <x>50</x>
  1615. <y>150</y>
  1616. <width>16</width>
  1617. <height>16</height>
  1618. </rect>
  1619. </property>
  1620. <property name="text">
  1621. <string/>
  1622. </property>
  1623. </widget>
  1624. <widget class="QToolButton" name="terrainCouleurPerso9">
  1625. <property name="geometry">
  1626. <rect>
  1627. <x>70</x>
  1628. <y>150</y>
  1629. <width>16</width>
  1630. <height>16</height>
  1631. </rect>
  1632. </property>
  1633. <property name="text">
  1634. <string/>
  1635. </property>
  1636. </widget>
  1637. <widget class="QToolButton" name="terrainCouleurPerso10">
  1638. <property name="geometry">
  1639. <rect>
  1640. <x>90</x>
  1641. <y>150</y>
  1642. <width>16</width>
  1643. <height>16</height>
  1644. </rect>
  1645. </property>
  1646. <property name="text">
  1647. <string/>
  1648. </property>
  1649. </widget>
  1650. <widget class="QToolButton" name="terrainCouleurPerso11">
  1651. <property name="geometry">
  1652. <rect>
  1653. <x>10</x>
  1654. <y>170</y>
  1655. <width>16</width>
  1656. <height>16</height>
  1657. </rect>
  1658. </property>
  1659. <property name="text">
  1660. <string/>
  1661. </property>
  1662. </widget>
  1663. <widget class="QToolButton" name="terrainCouleurPerso12">
  1664. <property name="geometry">
  1665. <rect>
  1666. <x>30</x>
  1667. <y>170</y>
  1668. <width>16</width>
  1669. <height>16</height>
  1670. </rect>
  1671. </property>
  1672. <property name="text">
  1673. <string/>
  1674. </property>
  1675. </widget>
  1676. <widget class="QToolButton" name="terrainCouleurPerso13">
  1677. <property name="geometry">
  1678. <rect>
  1679. <x>50</x>
  1680. <y>170</y>
  1681. <width>16</width>
  1682. <height>16</height>
  1683. </rect>
  1684. </property>
  1685. <property name="text">
  1686. <string/>
  1687. </property>
  1688. </widget>
  1689. <widget class="QToolButton" name="terrainCouleurPerso14">
  1690. <property name="geometry">
  1691. <rect>
  1692. <x>70</x>
  1693. <y>170</y>
  1694. <width>16</width>
  1695. <height>16</height>
  1696. </rect>
  1697. </property>
  1698. <property name="text">
  1699. <string/>
  1700. </property>
  1701. </widget>
  1702. <widget class="QToolButton" name="terrainCouleurPerso15">
  1703. <property name="geometry">
  1704. <rect>
  1705. <x>90</x>
  1706. <y>170</y>
  1707. <width>16</width>
  1708. <height>16</height>
  1709. </rect>
  1710. </property>
  1711. <property name="text">
  1712. <string/>
  1713. </property>
  1714. </widget>
  1715. <widget class="QToolButton" name="terrainCouleurPerso16">
  1716. <property name="geometry">
  1717. <rect>
  1718. <x>10</x>
  1719. <y>190</y>
  1720. <width>16</width>
  1721. <height>16</height>
  1722. </rect>
  1723. </property>
  1724. <property name="text">
  1725. <string/>
  1726. </property>
  1727. </widget>
  1728. <widget class="QToolButton" name="terrainCopie">
  1729. <property name="geometry">
  1730. <rect>
  1731. <x>40</x>
  1732. <y>190</y>
  1733. <width>31</width>
  1734. <height>21</height>
  1735. </rect>
  1736. </property>
  1737. <property name="toolTip">
  1738. <string>Ligne</string>
  1739. </property>
  1740. <property name="text">
  1741. <string>...</string>
  1742. </property>
  1743. <property name="icon">
  1744. <iconset>
  1745. <normaloff>img/curseurSeringue.png</normaloff>img/curseurSeringue.png</iconset>
  1746. </property>
  1747. </widget>
  1748. <widget class="QLabel" name="label_7">
  1749. <property name="geometry">
  1750. <rect>
  1751. <x>10</x>
  1752. <y>0</y>
  1753. <width>91</width>
  1754. <height>16</height>
  1755. </rect>
  1756. </property>
  1757. <property name="font">
  1758. <font>
  1759. <italic>true</italic>
  1760. </font>
  1761. </property>
  1762. <property name="text">
  1763. <string>Forme du pinceau</string>
  1764. </property>
  1765. </widget>
  1766. <widget class="QLabel" name="label_8">
  1767. <property name="geometry">
  1768. <rect>
  1769. <x>10</x>
  1770. <y>110</y>
  1771. <width>81</width>
  1772. <height>16</height>
  1773. </rect>
  1774. </property>
  1775. <property name="font">
  1776. <font>
  1777. <italic>true</italic>
  1778. </font>
  1779. </property>
  1780. <property name="text">
  1781. <string>Couleur simple</string>
  1782. </property>
  1783. </widget>
  1784. <widget class="QLabel" name="label_10">
  1785. <property name="geometry">
  1786. <rect>
  1787. <x>10</x>
  1788. <y>220</y>
  1789. <width>61</width>
  1790. <height>16</height>
  1791. </rect>
  1792. </property>
  1793. <property name="font">
  1794. <font>
  1795. <italic>true</italic>
  1796. </font>
  1797. </property>
  1798. <property name="text">
  1799. <string>Terrains</string>
  1800. </property>
  1801. </widget>
  1802. <widget class="QLabel" name="label_11">
  1803. <property name="geometry">
  1804. <rect>
  1805. <x>10</x>
  1806. <y>420</y>
  1807. <width>91</width>
  1808. <height>16</height>
  1809. </rect>
  1810. </property>
  1811. <property name="font">
  1812. <font>
  1813. <italic>true</italic>
  1814. </font>
  1815. </property>
  1816. <property name="text">
  1817. <string>Effets spéciaux</string>
  1818. </property>
  1819. </widget>
  1820. </widget>
  1821. <widget class="QWidget" name="editPlateau_Decors">
  1822. <property name="geometry">
  1823. <rect>
  1824. <x>0</x>
  1825. <y>0</y>
  1826. <width>118</width>
  1827. <height>507</height>
  1828. </rect>
  1829. </property>
  1830. <attribute name="label">
  1831. <string>Décors</string>
  1832. </attribute>
  1833. <widget class="QPushButton" name="decorEdit">
  1834. <property name="geometry">
  1835. <rect>
  1836. <x>10</x>
  1837. <y>410</y>
  1838. <width>51</width>
  1839. <height>21</height>
  1840. </rect>
  1841. </property>
  1842. <property name="text">
  1843. <string>Editer</string>
  1844. </property>
  1845. </widget>
  1846. <widget class="QTableWidget" name="listDecors">
  1847. <property name="geometry">
  1848. <rect>
  1849. <x>10</x>
  1850. <y>30</y>
  1851. <width>101</width>
  1852. <height>381</height>
  1853. </rect>
  1854. </property>
  1855. <property name="minimumSize">
  1856. <size>
  1857. <width>81</width>
  1858. <height>0</height>
  1859. </size>
  1860. </property>
  1861. <property name="editTriggers">
  1862. <set>QAbstractItemView::AnyKeyPressed|QAbstractItemView::DoubleClicked</set>
  1863. </property>
  1864. <property name="iconSize">
  1865. <size>
  1866. <width>2</width>
  1867. <height>2</height>
  1868. </size>
  1869. </property>
  1870. <property name="columnCount">
  1871. <number>2</number>
  1872. </property>
  1873. <attribute name="horizontalHeaderVisible">
  1874. <bool>false</bool>
  1875. </attribute>
  1876. <attribute name="verticalHeaderVisible">
  1877. <bool>false</bool>
  1878. </attribute>
  1879. <column>
  1880. <property name="text">
  1881. <string>code</string>
  1882. </property>
  1883. </column>
  1884. <column>
  1885. <property name="text">
  1886. <string>Decor</string>
  1887. </property>
  1888. <property name="font">
  1889. <font>
  1890. <pointsize>9</pointsize>
  1891. </font>
  1892. </property>
  1893. </column>
  1894. </widget>
  1895. <widget class="QPushButton" name="decorNouveau">
  1896. <property name="geometry">
  1897. <rect>
  1898. <x>60</x>
  1899. <y>410</y>
  1900. <width>51</width>
  1901. <height>21</height>
  1902. </rect>
  1903. </property>
  1904. <property name="text">
  1905. <string>Nouveau</string>
  1906. </property>
  1907. </widget>
  1908. <widget class="QComboBox" name="listeCategoriesDecors">
  1909. <property name="geometry">
  1910. <rect>
  1911. <x>10</x>
  1912. <y>10</y>
  1913. <width>101</width>
  1914. <height>21</height>
  1915. </rect>
  1916. </property>
  1917. </widget>
  1918. <widget class="QToolButton" name="decorSupprimer">
  1919. <property name="geometry">
  1920. <rect>
  1921. <x>10</x>
  1922. <y>440</y>
  1923. <width>31</width>
  1924. <height>21</height>
  1925. </rect>
  1926. </property>
  1927. <property name="text">
  1928. <string>...</string>
  1929. </property>
  1930. <property name="icon">
  1931. <iconset>
  1932. <normaloff>img/gomme.png</normaloff>img/gomme.png</iconset>
  1933. </property>
  1934. </widget>
  1935. </widget>
  1936. <widget class="QWidget" name="editPlateau_Pions">
  1937. <property name="geometry">
  1938. <rect>
  1939. <x>0</x>
  1940. <y>0</y>
  1941. <width>118</width>
  1942. <height>507</height>
  1943. </rect>
  1944. </property>
  1945. <attribute name="label">
  1946. <string>Pions</string>
  1947. </attribute>
  1948. <widget class="QPushButton" name="pionCouleur">
  1949. <property name="geometry">
  1950. <rect>
  1951. <x>10</x>
  1952. <y>20</y>
  1953. <width>31</width>
  1954. <height>21</height>
  1955. </rect>
  1956. </property>
  1957. <property name="contextMenuPolicy">
  1958. <enum>Qt::DefaultContextMenu</enum>
  1959. </property>
  1960. <property name="text">
  1961. <string/>
  1962. </property>
  1963. <property name="icon">
  1964. <iconset>
  1965. <normaloff>img/btnCouleurs.png</normaloff>img/btnCouleurs.png</iconset>
  1966. </property>
  1967. </widget>
  1968. <widget class="QPushButton" name="pionSimpleCreer">
  1969. <property name="geometry">
  1970. <rect>
  1971. <x>60</x>
  1972. <y>40</y>
  1973. <width>51</width>
  1974. <height>21</height>
  1975. </rect>
  1976. </property>
  1977. <property name="text">
  1978. <string>Créer</string>
  1979. </property>
  1980. </widget>
  1981. <widget class="QTableWidget" name="listCreatures">
  1982. <property name="geometry">
  1983. <rect>
  1984. <x>10</x>
  1985. <y>90</y>
  1986. <width>101</width>
  1987. <height>351</height>
  1988. </rect>
  1989. </property>
  1990. <property name="minimumSize">
  1991. <size>
  1992. <width>81</width>
  1993. <height>0</height>
  1994. </size>
  1995. </property>
  1996. <property name="editTriggers">
  1997. <set>QAbstractItemView::AnyKeyPressed|QAbstractItemView::DoubleClicked</set>
  1998. </property>
  1999. <property name="iconSize">
  2000. <size>
  2001. <width>2</width>
  2002. <height>2</height>
  2003. </size>
  2004. </property>
  2005. <property name="columnCount">
  2006. <number>2</number>
  2007. </property>
  2008. <attribute name="horizontalHeaderVisible">
  2009. <bool>false</bool>
  2010. </attribute>
  2011. <attribute name="verticalHeaderVisible">
  2012. <bool>false</bool>
  2013. </attribute>
  2014. <column>
  2015. <property name="text">
  2016. <string>code</string>
  2017. </property>
  2018. </column>
  2019. <column>
  2020. <property name="text">
  2021. <string>Creature</string>
  2022. </property>
  2023. <property name="font">
  2024. <font>
  2025. <pointsize>9</pointsize>
  2026. </font>
  2027. </property>
  2028. </column>
  2029. </widget>
  2030. <widget class="QPushButton" name="creatureEdit">
  2031. <property name="geometry">
  2032. <rect>
  2033. <x>70</x>
  2034. <y>70</y>
  2035. <width>21</width>
  2036. <height>21</height>
  2037. </rect>
  2038. </property>
  2039. <property name="text">
  2040. <string/>
  2041. </property>
  2042. <property name="icon">
  2043. <iconset>
  2044. <normaloff>img/editer.png</normaloff>img/editer.png</iconset>
  2045. </property>
  2046. </widget>
  2047. <widget class="QPushButton" name="creatureNouveau">
  2048. <property name="geometry">
  2049. <rect>
  2050. <x>90</x>
  2051. <y>70</y>
  2052. <width>21</width>
  2053. <height>21</height>
  2054. </rect>
  2055. </property>
  2056. <property name="text">
  2057. <string/>
  2058. </property>
  2059. <property name="icon">
  2060. <iconset>
  2061. <normaloff>img/plus.png</normaloff>img/plus.png</iconset>
  2062. </property>
  2063. </widget>
  2064. <widget class="QLabel" name="label_4">
  2065. <property name="geometry">
  2066. <rect>
  2067. <x>10</x>
  2068. <y>0</y>
  2069. <width>61</width>
  2070. <height>16</height>
  2071. </rect>
  2072. </property>
  2073. <property name="font">
  2074. <font>
  2075. <weight>50</weight>
  2076. <italic>true</italic>
  2077. <bold>false</bold>
  2078. <underline>false</underline>
  2079. </font>
  2080. </property>
  2081. <property name="text">
  2082. <string>Pion simple </string>
  2083. </property>
  2084. </widget>
  2085. <widget class="QLineEdit" name="pionSimple_nom">
  2086. <property name="geometry">
  2087. <rect>
  2088. <x>40</x>
  2089. <y>20</y>
  2090. <width>71</width>
  2091. <height>20</height>
  2092. </rect>
  2093. </property>
  2094. </widget>
  2095. <widget class="QToolButton" name="pionSupprimer">
  2096. <property name="geometry">
  2097. <rect>
  2098. <x>70</x>
  2099. <y>450</y>
  2100. <width>31</width>
  2101. <height>21</height>
  2102. </rect>
  2103. </property>
  2104. <property name="text">
  2105. <string>...</string>
  2106. </property>
  2107. <property name="icon">
  2108. <iconset>
  2109. <normaloff>img/gomme.png</normaloff>img/gomme.png</iconset>
  2110. </property>
  2111. </widget>
  2112. <widget class="QLabel" name="label_12">
  2113. <property name="geometry">
  2114. <rect>
  2115. <x>10</x>
  2116. <y>70</y>
  2117. <width>61</width>
  2118. <height>16</height>
  2119. </rect>
  2120. </property>
  2121. <property name="font">
  2122. <font>
  2123. <weight>50</weight>
  2124. <italic>true</italic>
  2125. <bold>false</bold>
  2126. <underline>false</underline>
  2127. </font>
  2128. </property>
  2129. <property name="text">
  2130. <string>Créatures</string>
  2131. </property>
  2132. </widget>
  2133. <widget class="QLabel" name="label_13">
  2134. <property name="geometry">
  2135. <rect>
  2136. <x>10</x>
  2137. <y>440</y>
  2138. <width>61</width>
  2139. <height>41</height>
  2140. </rect>
  2141. </property>
  2142. <property name="font">
  2143. <font>
  2144. <weight>50</weight>
  2145. <italic>true</italic>
  2146. <bold>false</bold>
  2147. <underline>false</underline>
  2148. </font>
  2149. </property>
  2150. <property name="text">
  2151. <string>Supprimer
  2152. pions :</string>
  2153. </property>
  2154. </widget>
  2155. </widget>
  2156. <widget class="QWidget" name="editPlateau_parametres">
  2157. <property name="geometry">
  2158. <rect>
  2159. <x>0</x>
  2160. <y>0</y>
  2161. <width>118</width>
  2162. <height>507</height>
  2163. </rect>
  2164. </property>
  2165. <attribute name="label">
  2166. <string>Autre</string>
  2167. </attribute>
  2168. <widget class="QToolButton" name="definirEntree">
  2169. <property name="geometry">
  2170. <rect>
  2171. <x>10</x>
  2172. <y>100</y>
  2173. <width>41</width>
  2174. <height>31</height>
  2175. </rect>
  2176. </property>
  2177. <property name="toolTip">
  2178. <string>Marquer l'entrée</string>
  2179. </property>
  2180. <property name="text">
  2181. <string>...</string>
  2182. </property>
  2183. <property name="icon">
  2184. <iconset>
  2185. <normaloff>img/btnEntree.png</normaloff>img/btnEntree.png</iconset>
  2186. </property>
  2187. </widget>
  2188. <widget class="QToolButton" name="definirSortie">
  2189. <property name="geometry">
  2190. <rect>
  2191. <x>70</x>
  2192. <y>100</y>
  2193. <width>41</width>
  2194. <height>31</height>
  2195. </rect>
  2196. </property>
  2197. <property name="toolTip">
  2198. <string>Marquer la/les sortie(s)</string>
  2199. </property>
  2200. <property name="text">
  2201. <string>...</string>
  2202. </property>
  2203. <property name="icon">
  2204. <iconset>
  2205. <normaloff>img/btnSortie.png</normaloff>img/btnSortie.png</iconset>
  2206. </property>
  2207. </widget>
  2208. <widget class="QToolButton" name="definirZonePlacement">
  2209. <property name="geometry">
  2210. <rect>
  2211. <x>10</x>
  2212. <y>140</y>
  2213. <width>41</width>
  2214. <height>31</height>
  2215. </rect>
  2216. </property>
  2217. <property name="toolTip">
  2218. <string>Définir la zone de placement des joueurs</string>
  2219. </property>
  2220. <property name="text">
  2221. <string>...</string>
  2222. </property>
  2223. <property name="icon">
  2224. <iconset>
  2225. <normaloff>img/btnZonePlacement.png</normaloff>img/btnZonePlacement.png</iconset>
  2226. </property>
  2227. </widget>
  2228. <widget class="QCommandLinkButton" name="publierPlateau">
  2229. <property name="geometry">
  2230. <rect>
  2231. <x>10</x>
  2232. <y>170</y>
  2233. <width>101</width>
  2234. <height>41</height>
  2235. </rect>
  2236. </property>
  2237. <property name="toolTip">
  2238. <string>Rendre le plateau publique</string>
  2239. </property>
  2240. <property name="text">
  2241. <string>Publier</string>
  2242. </property>
  2243. </widget>
  2244. <widget class="QTextEdit" name="notesMjPlateau">
  2245. <property name="geometry">
  2246. <rect>
  2247. <x>10</x>
  2248. <y>240</y>
  2249. <width>101</width>
  2250. <height>191</height>
  2251. </rect>
  2252. </property>
  2253. </widget>
  2254. <widget class="QLabel" name="label_5">
  2255. <property name="geometry">
  2256. <rect>
  2257. <x>10</x>
  2258. <y>220</y>
  2259. <width>46</width>
  2260. <height>13</height>
  2261. </rect>
  2262. </property>
  2263. <property name="font">
  2264. <font>
  2265. <italic>true</italic>
  2266. </font>
  2267. </property>
  2268. <property name="text">
  2269. <string>Notes : </string>
  2270. </property>
  2271. </widget>
  2272. <widget class="QToolButton" name="agrandirNotesMjPlateau">
  2273. <property name="geometry">
  2274. <rect>
  2275. <x>90</x>
  2276. <y>220</y>
  2277. <width>25</width>
  2278. <height>21</height>
  2279. </rect>
  2280. </property>
  2281. <property name="text">
  2282. <string>...</string>
  2283. </property>
  2284. <property name="icon">
  2285. <iconset>
  2286. <normaloff>img/agrandir.png</normaloff>img/agrandir.png</iconset>
  2287. </property>
  2288. </widget>
  2289. <widget class="QLabel" name="label_6">
  2290. <property name="geometry">
  2291. <rect>
  2292. <x>10</x>
  2293. <y>0</y>
  2294. <width>61</width>
  2295. <height>20</height>
  2296. </rect>
  2297. </property>
  2298. <property name="font">
  2299. <font>
  2300. <italic>true</italic>
  2301. </font>
  2302. </property>
  2303. <property name="text">
  2304. <string>Caches</string>
  2305. </property>
  2306. </widget>
  2307. <widget class="QToolButton" name="plateauCache1">
  2308. <property name="geometry">
  2309. <rect>
  2310. <x>10</x>
  2311. <y>20</y>
  2312. <width>21</width>
  2313. <height>21</height>
  2314. </rect>
  2315. </property>
  2316. <property name="text">
  2317. <string>1</string>
  2318. </property>
  2319. </widget>
  2320. <widget class="QToolButton" name="plateauCache2">
  2321. <property name="geometry">
  2322. <rect>
  2323. <x>30</x>
  2324. <y>20</y>
  2325. <width>21</width>
  2326. <height>21</height>
  2327. </rect>
  2328. </property>
  2329. <property name="text">
  2330. <string>2</string>
  2331. </property>
  2332. </widget>
  2333. <widget class="QToolButton" name="plateauCache3">
  2334. <property name="geometry">
  2335. <rect>
  2336. <x>50</x>
  2337. <y>20</y>
  2338. <width>21</width>
  2339. <height>21</height>
  2340. </rect>
  2341. </property>
  2342. <property name="text">
  2343. <string>3</string>
  2344. </property>
  2345. </widget>
  2346. <widget class="QToolButton" name="plateauCache4">
  2347. <property name="geometry">
  2348. <rect>
  2349. <x>70</x>
  2350. <y>20</y>
  2351. <width>21</width>
  2352. <height>21</height>
  2353. </rect>
  2354. </property>
  2355. <property name="text">
  2356. <string>4</string>
  2357. </property>
  2358. </widget>
  2359. <widget class="QToolButton" name="plateauCache5">
  2360. <property name="geometry">
  2361. <rect>
  2362. <x>90</x>
  2363. <y>20</y>
  2364. <width>21</width>
  2365. <height>21</height>
  2366. </rect>
  2367. </property>
  2368. <property name="text">
  2369. <string>5</string>
  2370. </property>
  2371. </widget>
  2372. <widget class="QGroupBox" name="groupBox">
  2373. <property name="geometry">
  2374. <rect>
  2375. <x>10</x>
  2376. <y>40</y>
  2377. <width>101</width>
  2378. <height>51</height>
  2379. </rect>
  2380. </property>
  2381. <property name="title">
  2382. <string/>
  2383. </property>
  2384. <widget class="QCheckBox" name="cacheActif">
  2385. <property name="geometry">
  2386. <rect>
  2387. <x>10</x>
  2388. <y>0</y>
  2389. <width>70</width>
  2390. <height>17</height>
  2391. </rect>
  2392. </property>
  2393. <property name="text">
  2394. <string>Actif</string>
  2395. </property>
  2396. </widget>
  2397. <widget class="QPushButton" name="cachePlacer">
  2398. <property name="geometry">
  2399. <rect>
  2400. <x>10</x>
  2401. <y>20</y>
  2402. <width>81</width>
  2403. <height>21</height>
  2404. </rect>
  2405. </property>
  2406. <property name="text">
  2407. <string>Placer</string>
  2408. </property>
  2409. </widget>
  2410. <widget class="QToolButton" name="cacheVoir">
  2411. <property name="geometry">
  2412. <rect>
  2413. <x>70</x>
  2414. <y>0</y>
  2415. <width>21</width>
  2416. <height>19</height>
  2417. </rect>
  2418. </property>
  2419. <property name="text">
  2420. <string/>
  2421. </property>
  2422. <property name="icon">
  2423. <iconset>
  2424. <normaloff>img/oeil.png</normaloff>img/oeil.png</iconset>
  2425. </property>
  2426. </widget>
  2427. </widget>
  2428. <widget class="QPushButton" name="plateauRafraichir">
  2429. <property name="geometry">
  2430. <rect>
  2431. <x>10</x>
  2432. <y>440</y>
  2433. <width>101</width>
  2434. <height>23</height>
  2435. </rect>
  2436. </property>
  2437. <property name="text">
  2438. <string>Rafraichir (debug)</string>
  2439. </property>
  2440. </widget>
  2441. </widget>
  2442. </widget>
  2443. </item>
  2444. <item>
  2445. <widget class="QFrame" name="panneauPlateauCombat">
  2446. <property name="minimumSize">
  2447. <size>
  2448. <width>120</width>
  2449. <height>0</height>
  2450. </size>
  2451. </property>
  2452. <property name="frameShape">
  2453. <enum>QFrame::StyledPanel</enum>
  2454. </property>
  2455. <property name="frameShadow">
  2456. <enum>QFrame::Raised</enum>
  2457. </property>
  2458. <widget class="QStackedWidget" name="outilsCombatPlateau">
  2459. <property name="geometry">
  2460. <rect>
  2461. <x>0</x>
  2462. <y>100</y>
  2463. <width>120</width>
  2464. <height>421</height>
  2465. </rect>
  2466. </property>
  2467. <property name="minimumSize">
  2468. <size>
  2469. <width>0</width>
  2470. <height>0</height>
  2471. </size>
  2472. </property>
  2473. <property name="maximumSize">
  2474. <size>
  2475. <width>120</width>
  2476. <height>16777215</height>
  2477. </size>
  2478. </property>
  2479. <property name="frameShape">
  2480. <enum>QFrame::StyledPanel</enum>
  2481. </property>
  2482. <property name="frameShadow">
  2483. <enum>QFrame::Sunken</enum>
  2484. </property>
  2485. <property name="currentIndex">
  2486. <number>1</number>
  2487. </property>
  2488. <widget class="QWidget" name="outilsCombatPlateau_attributs" native="true">
  2489. <widget class="QTableWidget" name="listeAttributs">
  2490. <property name="geometry">
  2491. <rect>
  2492. <x>10</x>
  2493. <y>10</y>
  2494. <width>101</width>
  2495. <height>421</height>
  2496. </rect>
  2497. </property>
  2498. <property name="palette">
  2499. <palette>
  2500. <active>
  2501. <colorrole role="Base">
  2502. <brush brushstyle="SolidPattern">
  2503. <color alpha="150">
  2504. <red>255</red>
  2505. <green>255</green>
  2506. <blue>255</blue>
  2507. </color>
  2508. </brush>
  2509. </colorrole>
  2510. </active>
  2511. <inactive>
  2512. <colorrole role="Base">
  2513. <brush brushstyle="SolidPattern">
  2514. <color alpha="150">
  2515. <red>255</red>
  2516. <green>255</green>
  2517. <blue>255</blue>
  2518. </color>
  2519. </brush>
  2520. </colorrole>
  2521. </inactive>
  2522. <disabled>
  2523. <colorrole role="Base">
  2524. <brush brushstyle="SolidPattern">
  2525. <color alpha="255">
  2526. <red>240</red>
  2527. <green>240</green>
  2528. <blue>240</blue>
  2529. </color>
  2530. </brush>
  2531. </colorrole>
  2532. </disabled>
  2533. </palette>
  2534. </property>
  2535. <property name="frameShape">
  2536. <enum>QFrame::WinPanel</enum>
  2537. </property>
  2538. <property name="horizontalScrollBarPolicy">
  2539. <enum>Qt::ScrollBarAlwaysOff</enum>
  2540. </property>
  2541. <property name="editTriggers">
  2542. <set>QAbstractItemView::AllEditTriggers</set>
  2543. </property>
  2544. <property name="alternatingRowColors">
  2545. <bool>true</bool>
  2546. </property>
  2547. <property name="selectionMode">
  2548. <enum>QAbstractItemView::NoSelection</enum>
  2549. </property>
  2550. <property name="showGrid">
  2551. <bool>true</bool>
  2552. </property>
  2553. <attribute name="horizontalHeaderVisible">
  2554. <bool>false</bool>
  2555. </attribute>
  2556. <attribute name="horizontalHeaderDefaultSectionSize">
  2557. <number>50</number>
  2558. </attribute>
  2559. <attribute name="verticalHeaderVisible">
  2560. <bool>false</bool>
  2561. </attribute>
  2562. <column>
  2563. <property name="text">
  2564. <string>Nouvelle colonne</string>
  2565. </property>
  2566. </column>
  2567. <column>
  2568. <property name="text">
  2569. <string>Valeur</string>
  2570. </property>
  2571. </column>
  2572. </widget>
  2573. </widget>
  2574. <widget class="QWidget" name="outilsCombatPlateau_attaques" native="true">
  2575. <widget class="QGroupBox" name="panneauAttaqueEC">
  2576. <property name="geometry">
  2577. <rect>
  2578. <x>0</x>
  2579. <y>190</y>
  2580. <width>115</width>
  2581. <height>231</height>
  2582. </rect>
  2583. </property>
  2584. <property name="title">
  2585. <string/>
  2586. </property>
  2587. <widget class="QTextEdit" name="notesAttaqueEC">
  2588. <property name="geometry">
  2589. <rect>
  2590. <x>10</x>
  2591. <y>170</y>
  2592. <width>100</width>
  2593. <height>51</height>
  2594. </rect>
  2595. </property>
  2596. </widget>
  2597. <widget class="QTableWidget" name="listeAttributsAttaqueEC">
  2598. <property name="geometry">
  2599. <rect>
  2600. <x>10</x>
  2601. <y>10</y>
  2602. <width>100</width>
  2603. <height>151</height>
  2604. </rect>
  2605. </property>
  2606. <property name="palette">
  2607. <palette>
  2608. <active>
  2609. <colorrole role="Base">
  2610. <brush brushstyle="SolidPattern">
  2611. <color alpha="150">
  2612. <red>255</red>
  2613. <green>255</green>
  2614. <blue>255</blue>
  2615. </color>
  2616. </brush>
  2617. </colorrole>
  2618. </active>
  2619. <inactive>
  2620. <colorrole role="Base">
  2621. <brush brushstyle="SolidPattern">
  2622. <color alpha="150">
  2623. <red>255</red>
  2624. <green>255</green>
  2625. <blue>255</blue>
  2626. </color>
  2627. </brush>
  2628. </colorrole>
  2629. </inactive>
  2630. <disabled>
  2631. <colorrole role="Base">
  2632. <brush brushstyle="SolidPattern">
  2633. <color alpha="255">
  2634. <red>240</red>
  2635. <green>240</green>
  2636. <blue>240</blue>
  2637. </color>
  2638. </brush>
  2639. </colorrole>
  2640. </disabled>
  2641. </palette>
  2642. </property>
  2643. <property name="frameShape">
  2644. <enum>QFrame::WinPanel</enum>
  2645. </property>
  2646. <property name="horizontalScrollBarPolicy">
  2647. <enum>Qt::ScrollBarAlwaysOff</enum>
  2648. </property>
  2649. <property name="editTriggers">
  2650. <set>QAbstractItemView::AllEditTriggers</set>
  2651. </property>
  2652. <property name="alternatingRowColors">
  2653. <bool>true</bool>
  2654. </property>
  2655. <property name="selectionMode">
  2656. <enum>QAbstractItemView::NoSelection</enum>
  2657. </property>
  2658. <property name="showGrid">
  2659. <bool>true</bool>
  2660. </property>
  2661. <attribute name="horizontalHeaderVisible">
  2662. <bool>false</bool>
  2663. </attribute>
  2664. <attribute name="horizontalHeaderDefaultSectionSize">
  2665. <number>50</number>
  2666. </attribute>
  2667. <attribute name="verticalHeaderVisible">
  2668. <bool>false</bool>
  2669. </attribute>
  2670. <column>
  2671. <property name="text">
  2672. <string>Nouvelle colonne</string>
  2673. </property>
  2674. </column>
  2675. <column>
  2676. <property name="text">
  2677. <string>Valeur</string>
  2678. </property>
  2679. </column>
  2680. </widget>
  2681. </widget>
  2682. <widget class="QTableWidget" name="listeAttaques">
  2683. <property name="geometry">
  2684. <rect>
  2685. <x>10</x>
  2686. <y>10</y>
  2687. <width>101</width>
  2688. <height>161</height>
  2689. </rect>
  2690. </property>
  2691. <property name="palette">
  2692. <palette>
  2693. <active>
  2694. <colorrole role="Base">
  2695. <brush brushstyle="SolidPattern">
  2696. <color alpha="255">
  2697. <red>247</red>
  2698. <green>247</green>
  2699. <blue>247</blue>
  2700. </color>
  2701. </brush>
  2702. </colorrole>
  2703. <colorrole role="Highlight">
  2704. <brush brushstyle="SolidPattern">
  2705. <color alpha="150">
  2706. <red>255</red>
  2707. <green>170</green>
  2708. <blue>0</blue>
  2709. </color>
  2710. </brush>
  2711. </colorrole>
  2712. <colorrole role="HighlightedText">
  2713. <brush brushstyle="SolidPattern">
  2714. <color alpha="255">
  2715. <red>255</red>
  2716. <green>255</green>
  2717. <blue>255</blue>
  2718. </color>
  2719. </brush>
  2720. </colorrole>
  2721. </active>
  2722. <inactive>
  2723. <colorrole role="Base">
  2724. <brush brushstyle="SolidPattern">
  2725. <color alpha="255">
  2726. <red>247</red>
  2727. <green>247</green>
  2728. <blue>247</blue>
  2729. </color>
  2730. </brush>
  2731. </colorrole>
  2732. <colorrole role="Highlight">
  2733. <brush brushstyle="SolidPattern">
  2734. <color alpha="150">
  2735. <red>255</red>
  2736. <green>170</green>
  2737. <blue>0</blue>
  2738. </color>
  2739. </brush>
  2740. </colorrole>
  2741. <colorrole role="HighlightedText">
  2742. <brush brushstyle="SolidPattern">
  2743. <color alpha="255">
  2744. <red>255</red>
  2745. <green>255</green>
  2746. <blue>255</blue>
  2747. </color>
  2748. </brush>
  2749. </colorrole>
  2750. </inactive>
  2751. <disabled>
  2752. <colorrole role="Base">
  2753. <brush brushstyle="SolidPattern">
  2754. <color alpha="255">
  2755. <red>240</red>
  2756. <green>240</green>
  2757. <blue>240</blue>
  2758. </color>
  2759. </brush>
  2760. </colorrole>
  2761. <colorrole role="Highlight">
  2762. <brush brushstyle="SolidPattern">
  2763. <color alpha="255">
  2764. <red>51</red>
  2765. <green>153</green>
  2766. <blue>255</blue>
  2767. </color>
  2768. </brush>
  2769. </colorrole>
  2770. <colorrole role="HighlightedText">
  2771. <brush brushstyle="SolidPattern">
  2772. <color alpha="255">
  2773. <red>255</red>
  2774. <green>255</green>
  2775. <blue>255</blue>
  2776. </color>
  2777. </brush>
  2778. </colorrole>
  2779. </disabled>
  2780. </palette>
  2781. </property>
  2782. <property name="frameShape">
  2783. <enum>QFrame::Box</enum>
  2784. </property>
  2785. <property name="horizontalScrollBarPolicy">
  2786. <enum>Qt::ScrollBarAlwaysOff</enum>
  2787. </property>
  2788. <property name="editTriggers">
  2789. <set>QAbstractItemView::NoEditTriggers</set>
  2790. </property>
  2791. <property name="alternatingRowColors">
  2792. <bool>true</bool>
  2793. </property>
  2794. <property name="selectionMode">
  2795. <enum>QAbstractItemView::SingleSelection</enum>
  2796. </property>
  2797. <property name="selectionBehavior">
  2798. <enum>QAbstractItemView::SelectRows</enum>
  2799. </property>
  2800. <property name="textElideMode">
  2801. <enum>Qt::ElideMiddle</enum>
  2802. </property>
  2803. <property name="showGrid">
  2804. <bool>false</bool>
  2805. </property>
  2806. <attribute name="horizontalHeaderVisible">
  2807. <bool>false</bool>
  2808. </attribute>
  2809. <attribute name="horizontalHeaderDefaultSectionSize">
  2810. <number>50</number>
  2811. </attribute>
  2812. <attribute name="verticalHeaderVisible">
  2813. <bool>false</bool>
  2814. </attribute>
  2815. <column>
  2816. <property name="text">
  2817. <string>numAttaque</string>
  2818. </property>
  2819. </column>
  2820. <column>
  2821. <property name="text">
  2822. <string>typeAttaque</string>
  2823. </property>
  2824. </column>
  2825. <column>
  2826. <property name="text">
  2827. <string>nomAttaque</string>
  2828. </property>
  2829. </column>
  2830. </widget>
  2831. <widget class="QToolButton" name="editerAttaques">
  2832. <property name="geometry">
  2833. <rect>
  2834. <x>90</x>
  2835. <y>170</y>
  2836. <width>21</width>
  2837. <height>20</height>
  2838. </rect>
  2839. </property>
  2840. <property name="text">
  2841. <string>...</string>
  2842. </property>
  2843. <property name="icon">
  2844. <iconset>
  2845. <normaloff>img/editer.png</normaloff>img/editer.png</iconset>
  2846. </property>
  2847. </widget>
  2848. </widget>
  2849. <widget class="QWidget" name="outilsCombatPlateau_inventaire"/>
  2850. <widget class="QWidget" name="outilsCombatPlateau_notes">
  2851. <widget class="QTextEdit" name="notesPion">
  2852. <property name="geometry">
  2853. <rect>
  2854. <x>10</x>
  2855. <y>30</y>
  2856. <width>104</width>
  2857. <height>371</height>
  2858. </rect>
  2859. </property>
  2860. <property name="documentTitle">
  2861. <string/>
  2862. </property>
  2863. </widget>
  2864. </widget>
  2865. </widget>
  2866. <widget class="QLabel" name="combatPionSelectionne">
  2867. <property name="geometry">
  2868. <rect>
  2869. <x>47</x>
  2870. <y>0</y>
  2871. <width>71</width>
  2872. <height>44</height>
  2873. </rect>
  2874. </property>
  2875. <property name="text">
  2876. <string>Pas de pion
  2877. selectionné</string>
  2878. </property>
  2879. </widget>
  2880. <widget class="QLabel" name="combatPionSelectionne_img">
  2881. <property name="geometry">
  2882. <rect>
  2883. <x>10</x>
  2884. <y>0</y>
  2885. <width>31</width>
  2886. <height>44</height>
  2887. </rect>
  2888. </property>
  2889. <property name="text">
  2890. <string>logo</string>
  2891. </property>
  2892. </widget>
  2893. <widget class="QToolButton" name="afficherAttributsPions">
  2894. <property name="geometry">
  2895. <rect>
  2896. <x>0</x>
  2897. <y>50</y>
  2898. <width>31</width>
  2899. <height>21</height>
  2900. </rect>
  2901. </property>
  2902. <property name="text">
  2903. <string>...</string>
  2904. </property>
  2905. </widget>
  2906. <widget class="QToolButton" name="afficherAttaquesPions">
  2907. <property name="geometry">
  2908. <rect>
  2909. <x>30</x>
  2910. <y>50</y>
  2911. <width>31</width>
  2912. <height>21</height>
  2913. </rect>
  2914. </property>
  2915. <property name="text">
  2916. <string>...</string>
  2917. </property>
  2918. </widget>
  2919. <widget class="QToolButton" name="afficherInventairePions">
  2920. <property name="geometry">
  2921. <rect>
  2922. <x>60</x>
  2923. <y>50</y>
  2924. <width>31</width>
  2925. <height>21</height>
  2926. </rect>
  2927. </property>
  2928. <property name="text">
  2929. <string>...</string>
  2930. </property>
  2931. <property name="icon">
  2932. <iconset>
  2933. <normaloff>../../img/sac.png</normaloff>../../img/sac.png</iconset>
  2934. </property>
  2935. <property name="iconSize">
  2936. <size>
  2937. <width>12</width>
  2938. <height>16</height>
  2939. </size>
  2940. </property>
  2941. </widget>
  2942. <widget class="QToolButton" name="afficherNotesPions">
  2943. <property name="geometry">
  2944. <rect>
  2945. <x>90</x>
  2946. <y>50</y>
  2947. <width>31</width>
  2948. <height>21</height>
  2949. </rect>
  2950. </property>
  2951. <property name="text">
  2952. <string>...</string>
  2953. </property>
  2954. <property name="iconSize">
  2955. <size>
  2956. <width>12</width>
  2957. <height>16</height>
  2958. </size>
  2959. </property>
  2960. </widget>
  2961. <widget class="QToolButton" name="toolButton">
  2962. <property name="geometry">
  2963. <rect>
  2964. <x>0</x>
  2965. <y>30</y>
  2966. <width>21</width>
  2967. <height>21</height>
  2968. </rect>
  2969. </property>
  2970. <property name="text">
  2971. <string>...</string>
  2972. </property>
  2973. <property name="icon">
  2974. <iconset>
  2975. <normaloff>../../img/etatVol.png</normaloff>../../img/etatVol.png</iconset>
  2976. </property>
  2977. </widget>
  2978. <widget class="QPushButton" name="combatPasserTour">
  2979. <property name="geometry">
  2980. <rect>
  2981. <x>0</x>
  2982. <y>550</y>
  2983. <width>121</width>
  2984. <height>31</height>
  2985. </rect>
  2986. </property>
  2987. <property name="minimumSize">
  2988. <size>
  2989. <width>0</width>
  2990. <height>0</height>
  2991. </size>
  2992. </property>
  2993. <property name="maximumSize">
  2994. <size>
  2995. <width>16777215</width>
  2996. <height>44</height>
  2997. </size>
  2998. </property>
  2999. <property name="text">
  3000. <string>Finir le tour</string>
  3001. </property>
  3002. </widget>
  3003. <widget class="QToolButton" name="combatDeplacement">
  3004. <property name="geometry">
  3005. <rect>
  3006. <x>0</x>
  3007. <y>70</y>
  3008. <width>31</width>
  3009. <height>31</height>
  3010. </rect>
  3011. </property>
  3012. <property name="minimumSize">
  3013. <size>
  3014. <width>0</width>
  3015. <height>0</height>
  3016. </size>
  3017. </property>
  3018. <property name="maximumSize">
  3019. <size>
  3020. <width>46</width>
  3021. <height>44</height>
  3022. </size>
  3023. </property>
  3024. <property name="text">
  3025. <string/>
  3026. </property>
  3027. <property name="icon">
  3028. <iconset>
  3029. <normaloff>../../img/btnZonePlacement.png</normaloff>../../img/btnZonePlacement.png</iconset>
  3030. </property>
  3031. </widget>
  3032. <widget class="QToolButton" name="combatAttaqueCaC">
  3033. <property name="geometry">
  3034. <rect>
  3035. <x>30</x>
  3036. <y>70</y>
  3037. <width>31</width>
  3038. <height>31</height>
  3039. </rect>
  3040. </property>
  3041. <property name="minimumSize">
  3042. <size>
  3043. <width>0</width>
  3044. <height>0</height>
  3045. </size>
  3046. </property>
  3047. <property name="maximumSize">
  3048. <size>
  3049. <width>46</width>
  3050. <height>44</height>
  3051. </size>
  3052. </property>
  3053. <property name="text">
  3054. <string>...</string>
  3055. </property>
  3056. <property name="icon">
  3057. <iconset>
  3058. <normaloff>../../img/curseurEpee.png</normaloff>../../img/curseurEpee.png</iconset>
  3059. </property>
  3060. </widget>
  3061. <widget class="QToolButton" name="combatAttaqueDist">
  3062. <property name="geometry">
  3063. <rect>
  3064. <x>60</x>
  3065. <y>70</y>
  3066. <width>31</width>
  3067. <height>31</height>
  3068. </rect>
  3069. </property>
  3070. <property name="minimumSize">
  3071. <size>
  3072. <width>0</width>
  3073. <height>0</height>
  3074. </size>
  3075. </property>
  3076. <property name="maximumSize">
  3077. <size>
  3078. <width>46</width>
  3079. <height>44</height>
  3080. </size>
  3081. </property>
  3082. <property name="text">
  3083. <string>...</string>
  3084. </property>
  3085. <property name="icon">
  3086. <iconset>
  3087. <normaloff>../../img/arc.png</normaloff>../../img/arc.png</iconset>
  3088. </property>
  3089. </widget>
  3090. <widget class="QToolButton" name="combatAttaqueZone">
  3091. <property name="geometry">
  3092. <rect>
  3093. <x>90</x>
  3094. <y>70</y>
  3095. <width>31</width>
  3096. <height>31</height>
  3097. </rect>
  3098. </property>
  3099. <property name="minimumSize">
  3100. <size>
  3101. <width>0</width>
  3102. <height>0</height>
  3103. </size>
  3104. </property>
  3105. <property name="maximumSize">
  3106. <size>
  3107. <width>46</width>
  3108. <height>44</height>
  3109. </size>
  3110. </property>
  3111. <property name="text">
  3112. <string>...</string>
  3113. </property>
  3114. <property name="icon">
  3115. <iconset>
  3116. <normaloff>../../img/bombe.png</normaloff>../../img/bombe.png</iconset>
  3117. </property>
  3118. </widget>
  3119. <widget class="QToolButton" name="combatZone_ligne">
  3120. <property name="geometry">
  3121. <rect>
  3122. <x>0</x>
  3123. <y>520</y>
  3124. <width>31</width>
  3125. <height>21</height>
  3126. </rect>
  3127. </property>
  3128. <property name="minimumSize">
  3129. <size>
  3130. <width>0</width>
  3131. <height>0</height>
  3132. </size>
  3133. </property>
  3134. <property name="maximumSize">
  3135. <size>
  3136. <width>46</width>
  3137. <height>44</height>
  3138. </size>
  3139. </property>
  3140. <property name="text">
  3141. <string/>
  3142. </property>
  3143. <property name="icon">
  3144. <iconset>
  3145. <normaloff>../../img/formeLigne.png</normaloff>../../img/formeLigne.png</iconset>
  3146. </property>
  3147. </widget>
  3148. <widget class="QToolButton" name="combatZone_disque">
  3149. <property name="geometry">
  3150. <rect>
  3151. <x>30</x>
  3152. <y>521</y>
  3153. <width>31</width>
  3154. <height>20</height>
  3155. </rect>
  3156. </property>
  3157. <property name="minimumSize">
  3158. <size>
  3159. <width>0</width>
  3160. <height>0</height>
  3161. </size>
  3162. </property>
  3163. <property name="maximumSize">
  3164. <size>
  3165. <width>46</width>
  3166. <height>44</height>
  3167. </size>
  3168. </property>
  3169. <property name="text">
  3170. <string/>
  3171. </property>
  3172. <property name="icon">
  3173. <iconset>
  3174. <normaloff>../../img/formeEllipsePlein.png</normaloff>../../img/formeEllipsePlein.png</iconset>
  3175. </property>
  3176. </widget>
  3177. <widget class="QSpinBox" name="combatZone_disqueRayon">
  3178. <property name="geometry">
  3179. <rect>
  3180. <x>60</x>
  3181. <y>520</y>
  3182. <width>31</width>
  3183. <height>21</height>
  3184. </rect>
  3185. </property>
  3186. <property name="minimumSize">
  3187. <size>
  3188. <width>0</width>
  3189. <height>0</height>
  3190. </size>
  3191. </property>
  3192. <property name="font">
  3193. <font>
  3194. <pointsize>12</pointsize>
  3195. <weight>75</weight>
  3196. <italic>false</italic>
  3197. <bold>true</bold>
  3198. </font>
  3199. </property>
  3200. <property name="minimum">
  3201. <number>1</number>
  3202. </property>
  3203. <property name="maximum">
  3204. <number>30</number>
  3205. </property>
  3206. </widget>
  3207. <widget class="QToolButton" name="combatZone_cone">
  3208. <property name="geometry">
  3209. <rect>
  3210. <x>90</x>
  3211. <y>520</y>
  3212. <width>31</width>
  3213. <height>21</height>
  3214. </rect>
  3215. </property>
  3216. <property name="minimumSize">
  3217. <size>
  3218. <width>0</width>
  3219. <height>0</height>
  3220. </size>
  3221. </property>
  3222. <property name="maximumSize">
  3223. <size>
  3224. <width>46</width>
  3225. <height>44</height>
  3226. </size>
  3227. </property>
  3228. <property name="text">
  3229. <string/>
  3230. </property>
  3231. <property name="icon">
  3232. <iconset>
  3233. <normaloff>../../img/cone.png</normaloff>../../img/cone.png</iconset>
  3234. </property>
  3235. </widget>
  3236. </widget>
  3237. </item>
  3238. </layout>
  3239. </item>
  3240. </layout>
  3241. </item>
  3242. </layout>
  3243. </item>
  3244. </layout>
  3245. </widget>
  3246. <widget class="QWidget" name="Monde_tab">
  3247. <attribute name="title">
  3248. <string>Monde</string>
  3249. </attribute>
  3250. <widget class="QFrame" name="frame">
  3251. <property name="geometry">
  3252. <rect>
  3253. <x>0</x>
  3254. <y>0</y>
  3255. <width>71</width>
  3256. <height>531</height>
  3257. </rect>
  3258. </property>
  3259. <property name="palette">
  3260. <palette>
  3261. <active>
  3262. <colorrole role="Button">
  3263. <brush brushstyle="SolidPattern">
  3264. <color alpha="255">
  3265. <red>170</red>
  3266. <green>170</green>
  3267. <blue>255</blue>
  3268. </color>
  3269. </brush>
  3270. </colorrole>
  3271. <colorrole role="Base">
  3272. <brush brushstyle="SolidPattern">
  3273. <color alpha="255">
  3274. <red>170</red>
  3275. <green>0</green>
  3276. <blue>0</blue>
  3277. </color>
  3278. </brush>
  3279. </colorrole>
  3280. </active>
  3281. <inactive>
  3282. <colorrole role="Button">
  3283. <brush brushstyle="SolidPattern">
  3284. <color alpha="255">
  3285. <red>170</red>
  3286. <green>170</green>
  3287. <blue>255</blue>
  3288. </color>
  3289. </brush>
  3290. </colorrole>
  3291. <colorrole role="Base">
  3292. <brush brushstyle="SolidPattern">
  3293. <color alpha="255">
  3294. <red>170</red>
  3295. <green>0</green>
  3296. <blue>0</blue>
  3297. </color>
  3298. </brush>
  3299. </colorrole>
  3300. </inactive>
  3301. <disabled>
  3302. <colorrole role="Button">
  3303. <brush brushstyle="SolidPattern">
  3304. <color alpha="255">
  3305. <red>170</red>
  3306. <green>170</green>
  3307. <blue>255</blue>
  3308. </color>
  3309. </brush>
  3310. </colorrole>
  3311. <colorrole role="Base">
  3312. <brush brushstyle="SolidPattern">
  3313. <color alpha="255">
  3314. <red>240</red>
  3315. <green>240</green>
  3316. <blue>240</blue>
  3317. </color>
  3318. </brush>
  3319. </colorrole>
  3320. </disabled>
  3321. </palette>
  3322. </property>
  3323. <property name="frameShape">
  3324. <enum>QFrame::StyledPanel</enum>
  3325. </property>
  3326. <property name="frameShadow">
  3327. <enum>QFrame::Raised</enum>
  3328. </property>
  3329. <widget class="QPushButton" name="points">
  3330. <property name="geometry">
  3331. <rect>
  3332. <x>0</x>
  3333. <y>0</y>
  3334. <width>71</width>
  3335. <height>31</height>
  3336. </rect>
  3337. </property>
  3338. <property name="text">
  3339. <string>Points</string>
  3340. </property>
  3341. </widget>
  3342. <widget class="QPushButton" name="itineraire">
  3343. <property name="geometry">
  3344. <rect>
  3345. <x>0</x>
  3346. <y>30</y>
  3347. <width>71</width>
  3348. <height>31</height>
  3349. </rect>
  3350. </property>
  3351. <property name="text">
  3352. <string>Itinéraire</string>
  3353. </property>
  3354. </widget>
  3355. <widget class="QPushButton" name="texte_2">
  3356. <property name="geometry">
  3357. <rect>
  3358. <x>0</x>
  3359. <y>60</y>
  3360. <width>71</width>
  3361. <height>31</height>
  3362. </rect>
  3363. </property>
  3364. <property name="text">
  3365. <string>Texte</string>
  3366. </property>
  3367. </widget>
  3368. <widget class="QPushButton" name="dessin">
  3369. <property name="geometry">
  3370. <rect>
  3371. <x>0</x>
  3372. <y>90</y>
  3373. <width>71</width>
  3374. <height>31</height>
  3375. </rect>
  3376. </property>
  3377. <property name="text">
  3378. <string>Dessin</string>
  3379. </property>
  3380. </widget>
  3381. <widget class="QPushButton" name="supp">
  3382. <property name="geometry">
  3383. <rect>
  3384. <x>0</x>
  3385. <y>120</y>
  3386. <width>71</width>
  3387. <height>31</height>
  3388. </rect>
  3389. </property>
  3390. <property name="text">
  3391. <string>Supprimer</string>
  3392. </property>
  3393. </widget>
  3394. </widget>
  3395. </widget>
  3396. <widget class="QWidget" name="Groupe_tab">
  3397. <attribute name="title">
  3398. <string>Groupe</string>
  3399. </attribute>
  3400. <widget class="QListWidget" name="listePerso">
  3401. <property name="geometry">
  3402. <rect>
  3403. <x>10</x>
  3404. <y>10</y>
  3405. <width>961</width>
  3406. <height>91</height>
  3407. </rect>
  3408. </property>
  3409. <property name="palette">
  3410. <palette>
  3411. <active>
  3412. <colorrole role="Base">
  3413. <brush brushstyle="SolidPattern">
  3414. <color alpha="255">
  3415. <red>241</red>
  3416. <green>241</green>
  3417. <blue>241</blue>
  3418. </color>
  3419. </brush>
  3420. </colorrole>
  3421. </active>
  3422. <inactive>
  3423. <colorrole role="Base">
  3424. <brush brushstyle="SolidPattern">
  3425. <color alpha="255">
  3426. <red>241</red>
  3427. <green>241</green>
  3428. <blue>241</blue>
  3429. </color>
  3430. </brush>
  3431. </colorrole>
  3432. </inactive>
  3433. <disabled>
  3434. <colorrole role="Base">
  3435. <brush brushstyle="SolidPattern">
  3436. <color alpha="255">
  3437. <red>240</red>
  3438. <green>240</green>
  3439. <blue>240</blue>
  3440. </color>
  3441. </brush>
  3442. </colorrole>
  3443. </disabled>
  3444. </palette>
  3445. </property>
  3446. <property name="lineWidth">
  3447. <number>1</number>
  3448. </property>
  3449. <property name="verticalScrollBarPolicy">
  3450. <enum>Qt::ScrollBarAlwaysOff</enum>
  3451. </property>
  3452. <property name="editTriggers">
  3453. <set>QAbstractItemView::DoubleClicked</set>
  3454. </property>
  3455. <property name="flow">
  3456. <enum>QListView::LeftToRight</enum>
  3457. </property>
  3458. <property name="gridSize">
  3459. <size>
  3460. <width>0</width>
  3461. <height>0</height>
  3462. </size>
  3463. </property>
  3464. <property name="viewMode">
  3465. <enum>QListView::ListMode</enum>
  3466. </property>
  3467. <property name="modelColumn">
  3468. <number>0</number>
  3469. </property>
  3470. <property name="uniformItemSizes">
  3471. <bool>true</bool>
  3472. </property>
  3473. <item>
  3474. <property name="text">
  3475. <string>1</string>
  3476. </property>
  3477. </item>
  3478. <item>
  3479. <property name="text">
  3480. <string>2</string>
  3481. </property>
  3482. </item>
  3483. </widget>
  3484. </widget>
  3485. </widget>
  3486. </item>
  3487. <item>
  3488. <layout class="QVBoxLayout" name="layoutPanneauDroite" stretch="1,7,1,1,10,1,1">
  3489. <property name="sizeConstraint">
  3490. <enum>QLayout::SetFixedSize</enum>
  3491. </property>
  3492. <item>
  3493. <widget class="QLabel" name="label">
  3494. <property name="minimumSize">
  3495. <size>
  3496. <width>199</width>
  3497. <height>13</height>
  3498. </size>
  3499. </property>
  3500. <property name="maximumSize">
  3501. <size>
  3502. <width>259</width>
  3503. <height>16777215</height>
  3504. </size>
  3505. </property>
  3506. <property name="font">
  3507. <font>
  3508. <weight>75</weight>
  3509. <bold>true</bold>
  3510. </font>
  3511. </property>
  3512. <property name="text">
  3513. <string>Evenements</string>
  3514. </property>
  3515. </widget>
  3516. </item>
  3517. <item>
  3518. <widget class="QListWidget" name="listEvenement">
  3519. <property name="sizePolicy">
  3520. <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
  3521. <horstretch>20</horstretch>
  3522. <verstretch>20</verstretch>
  3523. </sizepolicy>
  3524. </property>
  3525. <property name="minimumSize">
  3526. <size>
  3527. <width>199</width>
  3528. <height>73</height>
  3529. </size>
  3530. </property>
  3531. <property name="maximumSize">
  3532. <size>
  3533. <width>259</width>
  3534. <height>16777215</height>
  3535. </size>
  3536. </property>
  3537. </widget>
  3538. </item>
  3539. <item>
  3540. <layout class="QHBoxLayout" name="layoutDes" stretch="1,1,3">
  3541. <property name="spacing">
  3542. <number>3</number>
  3543. </property>
  3544. <property name="sizeConstraint">
  3545. <enum>QLayout::SetDefaultConstraint</enum>
  3546. </property>
  3547. <property name="leftMargin">
  3548. <number>0</number>
  3549. </property>
  3550. <item>
  3551. <widget class="QPushButton" name="d20">
  3552. <property name="sizePolicy">
  3553. <sizepolicy hsizetype="Ignored" vsizetype="Fixed">
  3554. <horstretch>0</horstretch>
  3555. <verstretch>0</verstretch>
  3556. </sizepolicy>
  3557. </property>
  3558. <property name="minimumSize">
  3559. <size>
  3560. <width>53</width>
  3561. <height>23</height>
  3562. </size>
  3563. </property>
  3564. <property name="maximumSize">
  3565. <size>
  3566. <width>53</width>
  3567. <height>16777215</height>
  3568. </size>
  3569. </property>
  3570. <property name="text">
  3571. <string>D20</string>
  3572. </property>
  3573. <property name="autoDefault">
  3574. <bool>false</bool>
  3575. </property>
  3576. </widget>
  3577. </item>
  3578. <item>
  3579. <widget class="QPushButton" name="d100">
  3580. <property name="sizePolicy">
  3581. <sizepolicy hsizetype="Ignored" vsizetype="Fixed">
  3582. <horstretch>0</horstretch>
  3583. <verstretch>0</verstretch>
  3584. </sizepolicy>
  3585. </property>
  3586. <property name="minimumSize">
  3587. <size>
  3588. <width>52</width>
  3589. <height>23</height>
  3590. </size>
  3591. </property>
  3592. <property name="maximumSize">
  3593. <size>
  3594. <width>52</width>
  3595. <height>16777215</height>
  3596. </size>
  3597. </property>
  3598. <property name="text">
  3599. <string>D100</string>
  3600. </property>
  3601. </widget>
  3602. </item>
  3603. <item>
  3604. <widget class="QLineEdit" name="inJetDes">
  3605. <property name="minimumSize">
  3606. <size>
  3607. <width>86</width>
  3608. <height>20</height>
  3609. </size>
  3610. </property>
  3611. <property name="maximumSize">
  3612. <size>
  3613. <width>146</width>
  3614. <height>16777215</height>
  3615. </size>
  3616. </property>
  3617. <property name="whatsThis">
  3618. <string/>
  3619. </property>
  3620. <property name="inputMask">
  3621. <string/>
  3622. </property>
  3623. <property name="placeholderText">
  3624. <string>Autre lancer (ex: 1d4+6d6)</string>
  3625. </property>
  3626. </widget>
  3627. </item>
  3628. </layout>
  3629. </item>
  3630. <item>
  3631. <layout class="QHBoxLayout" name="layoutEnTeteChat" stretch="1,2">
  3632. <property name="spacing">
  3633. <number>6</number>
  3634. </property>
  3635. <property name="sizeConstraint">
  3636. <enum>QLayout::SetDefaultConstraint</enum>
  3637. </property>
  3638. <item>
  3639. <widget class="QLabel" name="label_3">
  3640. <property name="minimumSize">
  3641. <size>
  3642. <width>10</width>
  3643. <height>23</height>
  3644. </size>
  3645. </property>
  3646. <property name="maximumSize">
  3647. <size>
  3648. <width>161</width>
  3649. <height>16777215</height>
  3650. </size>
  3651. </property>
  3652. <property name="font">
  3653. <font>
  3654. <weight>75</weight>
  3655. <bold>true</bold>
  3656. </font>
  3657. </property>
  3658. <property name="text">
  3659. <string>Chat</string>
  3660. </property>
  3661. </widget>
  3662. </item>
  3663. <item>
  3664. <widget class="QPushButton" name="chatVoc">
  3665. <property name="sizePolicy">
  3666. <sizepolicy hsizetype="Ignored" vsizetype="Fixed">
  3667. <horstretch>0</horstretch>
  3668. <verstretch>0</verstretch>
  3669. </sizepolicy>
  3670. </property>
  3671. <property name="minimumSize">
  3672. <size>
  3673. <width>64</width>
  3674. <height>23</height>
  3675. </size>
  3676. </property>
  3677. <property name="maximumSize">
  3678. <size>
  3679. <width>90</width>
  3680. <height>16777215</height>
  3681. </size>
  3682. </property>
  3683. <property name="text">
  3684. <string>Chat vocal</string>
  3685. </property>
  3686. </widget>
  3687. </item>
  3688. </layout>
  3689. </item>
  3690. <item>
  3691. <widget class="QListWidget" name="listAffichage">
  3692. <property name="minimumSize">
  3693. <size>
  3694. <width>199</width>
  3695. <height>96</height>
  3696. </size>
  3697. </property>
  3698. <property name="maximumSize">
  3699. <size>
  3700. <width>259</width>
  3701. <height>16777215</height>
  3702. </size>
  3703. </property>
  3704. </widget>
  3705. </item>
  3706. <item>
  3707. <widget class="QLineEdit" name="inChat">
  3708. <property name="minimumSize">
  3709. <size>
  3710. <width>199</width>
  3711. <height>20</height>
  3712. </size>
  3713. </property>
  3714. <property name="maximumSize">
  3715. <size>
  3716. <width>259</width>
  3717. <height>16777215</height>
  3718. </size>
  3719. </property>
  3720. <property name="placeholderText">
  3721. <string>Entrez votre message...</string>
  3722. </property>
  3723. </widget>
  3724. </item>
  3725. <item>
  3726. <widget class="QTabWidget" name="tabStatutAppli">
  3727. <property name="minimumSize">
  3728. <size>
  3729. <width>201</width>
  3730. <height>151</height>
  3731. </size>
  3732. </property>
  3733. <property name="maximumSize">
  3734. <size>
  3735. <width>259</width>
  3736. <height>16777215</height>
  3737. </size>
  3738. </property>
  3739. <property name="currentIndex">
  3740. <number>0</number>
  3741. </property>
  3742. <widget class="QWidget" name="tabConnexion">
  3743. <attribute name="title">
  3744. <string>Connexion</string>
  3745. </attribute>
  3746. <layout class="QVBoxLayout" name="verticalLayout_2">
  3747. <item>
  3748. <widget class="QLabel" name="txtStatutCoPseudo">
  3749. <property name="minimumSize">
  3750. <size>
  3751. <width>179</width>
  3752. <height>13</height>
  3753. </size>
  3754. </property>
  3755. <property name="maximumSize">
  3756. <size>
  3757. <width>16777215</width>
  3758. <height>18</height>
  3759. </size>
  3760. </property>
  3761. <property name="text">
  3762. <string>Pseudo : </string>
  3763. </property>
  3764. </widget>
  3765. </item>
  3766. <item>
  3767. <widget class="QLabel" name="txtStatutCoServeur">
  3768. <property name="minimumSize">
  3769. <size>
  3770. <width>179</width>
  3771. <height>13</height>
  3772. </size>
  3773. </property>
  3774. <property name="maximumSize">
  3775. <size>
  3776. <width>16777215</width>
  3777. <height>18</height>
  3778. </size>
  3779. </property>
  3780. <property name="text">
  3781. <string>Serveur : Aucun serveur</string>
  3782. </property>
  3783. </widget>
  3784. </item>
  3785. <item>
  3786. <widget class="QLabel" name="txtStatutCoServeurVoc">
  3787. <property name="minimumSize">
  3788. <size>
  3789. <width>179</width>
  3790. <height>13</height>
  3791. </size>
  3792. </property>
  3793. <property name="maximumSize">
  3794. <size>
  3795. <width>16777215</width>
  3796. <height>17</height>
  3797. </size>
  3798. </property>
  3799. <property name="text">
  3800. <string>Serveur vocal : Aucun serveur vocal</string>
  3801. </property>
  3802. </widget>
  3803. </item>
  3804. <item>
  3805. <widget class="QLabel" name="txtStatutCoDebits">
  3806. <property name="minimumSize">
  3807. <size>
  3808. <width>179</width>
  3809. <height>0</height>
  3810. </size>
  3811. </property>
  3812. <property name="maximumSize">
  3813. <size>
  3814. <width>16777215</width>
  3815. <height>18</height>
  3816. </size>
  3817. </property>
  3818. <property name="text">
  3819. <string>Débits : E 0 ko/s - R 0 ko/s</string>
  3820. </property>
  3821. </widget>
  3822. </item>
  3823. <item>
  3824. <widget class="QPushButton" name="txtStatutCoEcranCo">
  3825. <property name="minimumSize">
  3826. <size>
  3827. <width>179</width>
  3828. <height>23</height>
  3829. </size>
  3830. </property>
  3831. <property name="maximumSize">
  3832. <size>
  3833. <width>345</width>
  3834. <height>23</height>
  3835. </size>
  3836. </property>
  3837. <property name="text">
  3838. <string>Ecran de connexion</string>
  3839. </property>
  3840. </widget>
  3841. </item>
  3842. </layout>
  3843. </widget>
  3844. <widget class="QWidget" name="tabJoueurs">
  3845. <attribute name="title">
  3846. <string>Joueurs</string>
  3847. </attribute>
  3848. <layout class="QVBoxLayout" name="verticalLayout">
  3849. <item>
  3850. <widget class="QListWidget" name="lstStatutJoueurs">
  3851. <property name="minimumSize">
  3852. <size>
  3853. <width>177</width>
  3854. <height>0</height>
  3855. </size>
  3856. </property>
  3857. <property name="font">
  3858. <font>
  3859. <family>Segoe UI Semibold</family>
  3860. <pointsize>10</pointsize>
  3861. <weight>50</weight>
  3862. <bold>false</bold>
  3863. </font>
  3864. </property>
  3865. <property name="frameShape">
  3866. <enum>QFrame::WinPanel</enum>
  3867. </property>
  3868. </widget>
  3869. </item>
  3870. <item>
  3871. <widget class="QLabel" name="label_2">
  3872. <property name="font">
  3873. <font>
  3874. <italic>true</italic>
  3875. </font>
  3876. </property>
  3877. <property name="text">
  3878. <string>Double-cliquer pour ouvrir un chat privé</string>
  3879. </property>
  3880. <property name="wordWrap">
  3881. <bool>false</bool>
  3882. </property>
  3883. </widget>
  3884. </item>
  3885. </layout>
  3886. </widget>
  3887. <widget class="QWidget" name="tabFichiers">
  3888. <attribute name="title">
  3889. <string>Fichiers</string>
  3890. </attribute>
  3891. <layout class="QGridLayout" name="gridLayout">
  3892. <item row="1" column="0">
  3893. <widget class="QPushButton" name="repReceptionFichiers">
  3894. <property name="minimumSize">
  3895. <size>
  3896. <width>85</width>
  3897. <height>23</height>
  3898. </size>
  3899. </property>
  3900. <property name="maximumSize">
  3901. <size>
  3902. <width>114</width>
  3903. <height>16777215</height>
  3904. </size>
  3905. </property>
  3906. <property name="text">
  3907. <string>Rep. recept.</string>
  3908. </property>
  3909. </widget>
  3910. </item>
  3911. <item row="1" column="1">
  3912. <widget class="QPushButton" name="envoiFichier">
  3913. <property name="minimumSize">
  3914. <size>
  3915. <width>86</width>
  3916. <height>23</height>
  3917. </size>
  3918. </property>
  3919. <property name="maximumSize">
  3920. <size>
  3921. <width>115</width>
  3922. <height>16777215</height>
  3923. </size>
  3924. </property>
  3925. <property name="text">
  3926. <string>Envoi fichier</string>
  3927. </property>
  3928. </widget>
  3929. </item>
  3930. <item row="0" column="0" colspan="2">
  3931. <widget class="QTreeWidget" name="listFichiers">
  3932. <property name="minimumSize">
  3933. <size>
  3934. <width>177</width>
  3935. <height>78</height>
  3936. </size>
  3937. </property>
  3938. <property name="maximumSize">
  3939. <size>
  3940. <width>235</width>
  3941. <height>16777215</height>
  3942. </size>
  3943. </property>
  3944. <property name="baseSize">
  3945. <size>
  3946. <width>0</width>
  3947. <height>0</height>
  3948. </size>
  3949. </property>
  3950. <property name="frameShape">
  3951. <enum>QFrame::WinPanel</enum>
  3952. </property>
  3953. <property name="indentation">
  3954. <number>2</number>
  3955. </property>
  3956. <property name="columnCount">
  3957. <number>3</number>
  3958. </property>
  3959. <attribute name="headerDefaultSectionSize">
  3960. <number>28</number>
  3961. </attribute>
  3962. <attribute name="headerMinimumSectionSize">
  3963. <number>27</number>
  3964. </attribute>
  3965. <column>
  3966. <property name="text">
  3967. <string>E/R</string>
  3968. </property>
  3969. </column>
  3970. <column>
  3971. <property name="text">
  3972. <string>%</string>
  3973. </property>
  3974. </column>
  3975. <column>
  3976. <property name="text">
  3977. <string>Fichier</string>
  3978. </property>
  3979. </column>
  3980. </widget>
  3981. </item>
  3982. </layout>
  3983. </widget>
  3984. </widget>
  3985. </item>
  3986. </layout>
  3987. </item>
  3988. </layout>
  3989. </widget>
  3990. <widget class="QMenuBar" name="menubar">
  3991. <property name="geometry">
  3992. <rect>
  3993. <x>0</x>
  3994. <y>0</y>
  3995. <width>1225</width>
  3996. <height>21</height>
  3997. </rect>
  3998. </property>
  3999. <widget class="QMenu" name="menuFichier">
  4000. <property name="title">
  4001. <string>Fichier</string>
  4002. </property>
  4003. <addaction name="actionOuvrir"/>
  4004. <addaction name="actionEnregistrer"/>
  4005. <addaction name="separator"/>
  4006. <addaction name="actionQuitter"/>
  4007. </widget>
  4008. <widget class="QMenu" name="menuEditer">
  4009. <property name="title">
  4010. <string>Editer</string>
  4011. </property>
  4012. <addaction name="actionParam_tres"/>
  4013. </widget>
  4014. <widget class="QMenu" name="menuAide">
  4015. <property name="title">
  4016. <string>Aide</string>
  4017. </property>
  4018. <addaction name="actionA_propos_de_D_Monde"/>
  4019. <addaction name="actionLexique"/>
  4020. </widget>
  4021. <addaction name="menuFichier"/>
  4022. <addaction name="menuEditer"/>
  4023. <addaction name="menuAide"/>
  4024. </widget>
  4025. <widget class="QStatusBar" name="statusbar"/>
  4026. <action name="actionOuvrir">
  4027. <property name="text">
  4028. <string>Ouvrir</string>
  4029. </property>
  4030. </action>
  4031. <action name="actionEnregistrer">
  4032. <property name="text">
  4033. <string>Enregistrer</string>
  4034. </property>
  4035. </action>
  4036. <action name="actionQuitter">
  4037. <property name="text">
  4038. <string>Quitter</string>
  4039. </property>
  4040. </action>
  4041. <action name="actionA_propos_de_D_Monde">
  4042. <property name="text">
  4043. <string>A propos de DéMonde...</string>
  4044. </property>
  4045. </action>
  4046. <action name="actionParam_tres">
  4047. <property name="text">
  4048. <string>Paramètres</string>
  4049. </property>
  4050. </action>
  4051. <action name="actionLexique">
  4052. <property name="text">
  4053. <string>Lexique</string>
  4054. </property>
  4055. </action>
  4056. </widget>
  4057. <resources/>
  4058. <connections/>
  4059. </ui>