principal.ui 209 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845
  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>1153</width>
  10. <height>691</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="font">
  20. <font>
  21. <family>MS Shell Dlg 2</family>
  22. </font>
  23. </property>
  24. <property name="acceptDrops">
  25. <bool>true</bool>
  26. </property>
  27. <property name="windowTitle">
  28. <string>Bienvenue sur le Dé-Monde</string>
  29. </property>
  30. <widget class="QWidget" name="baseWidget">
  31. <layout class="QHBoxLayout" name="horizontalLayout">
  32. <item>
  33. <widget class="QTabWidget" name="dm_panneauCentre">
  34. <property name="enabled">
  35. <bool>true</bool>
  36. </property>
  37. <property name="minimumSize">
  38. <size>
  39. <width>660</width>
  40. <height>561</height>
  41. </size>
  42. </property>
  43. <property name="font">
  44. <font>
  45. <family>Verdana</family>
  46. </font>
  47. </property>
  48. <property name="acceptDrops">
  49. <bool>false</bool>
  50. </property>
  51. <property name="currentIndex">
  52. <number>1</number>
  53. </property>
  54. <widget class="QWidget" name="tab">
  55. <attribute name="title">
  56. <string>Partie</string>
  57. </attribute>
  58. <widget class="QLabel" name="label_5">
  59. <property name="geometry">
  60. <rect>
  61. <x>40</x>
  62. <y>30</y>
  63. <width>171</width>
  64. <height>41</height>
  65. </rect>
  66. </property>
  67. <property name="text">
  68. <string>Partie 1 / Chapitre 1</string>
  69. </property>
  70. </widget>
  71. <widget class="QLabel" name="label_6">
  72. <property name="geometry">
  73. <rect>
  74. <x>40</x>
  75. <y>90</y>
  76. <width>171</width>
  77. <height>41</height>
  78. </rect>
  79. </property>
  80. <property name="text">
  81. <string>Règles utilisées</string>
  82. </property>
  83. </widget>
  84. <widget class="QLabel" name="label_7">
  85. <property name="geometry">
  86. <rect>
  87. <x>40</x>
  88. <y>150</y>
  89. <width>171</width>
  90. <height>41</height>
  91. </rect>
  92. </property>
  93. <property name="text">
  94. <string>Participants: </string>
  95. </property>
  96. </widget>
  97. </widget>
  98. <widget class="QWidget" name="Combats_tab">
  99. <attribute name="title">
  100. <string>Combats</string>
  101. </attribute>
  102. <layout class="QHBoxLayout" name="horizontalLayout_3">
  103. <item>
  104. <widget class="QStackedWidget" name="combatPanneau">
  105. <property name="minimumSize">
  106. <size>
  107. <width>50</width>
  108. <height>0</height>
  109. </size>
  110. </property>
  111. <property name="currentIndex">
  112. <number>1</number>
  113. </property>
  114. <widget class="QWidget" name="menu"/>
  115. <widget class="QWidget" name="combat">
  116. <layout class="QHBoxLayout" name="horizontalLayout_9">
  117. <property name="spacing">
  118. <number>1</number>
  119. </property>
  120. <property name="leftMargin">
  121. <number>1</number>
  122. </property>
  123. <property name="topMargin">
  124. <number>1</number>
  125. </property>
  126. <property name="rightMargin">
  127. <number>1</number>
  128. </property>
  129. <property name="bottomMargin">
  130. <number>1</number>
  131. </property>
  132. <item>
  133. <layout class="QVBoxLayout" name="layoutCombat">
  134. <item>
  135. <widget class="QStackedWidget" name="cbt_panneauHaut">
  136. <property name="minimumSize">
  137. <size>
  138. <width>0</width>
  139. <height>32</height>
  140. </size>
  141. </property>
  142. <property name="maximumSize">
  143. <size>
  144. <width>16777215</width>
  145. <height>32</height>
  146. </size>
  147. </property>
  148. <property name="currentIndex">
  149. <number>1</number>
  150. </property>
  151. <widget class="QWidget" name="page_3"/>
  152. <widget class="QWidget" name="page_6">
  153. <layout class="QVBoxLayout" name="verticalLayout_14">
  154. <property name="spacing">
  155. <number>0</number>
  156. </property>
  157. <property name="leftMargin">
  158. <number>0</number>
  159. </property>
  160. <property name="topMargin">
  161. <number>0</number>
  162. </property>
  163. <property name="rightMargin">
  164. <number>0</number>
  165. </property>
  166. <property name="bottomMargin">
  167. <number>0</number>
  168. </property>
  169. <item>
  170. <layout class="QHBoxLayout" name="ppal_layout">
  171. <property name="spacing">
  172. <number>8</number>
  173. </property>
  174. <item>
  175. <spacer name="horizontalSpacer">
  176. <property name="orientation">
  177. <enum>Qt::Horizontal</enum>
  178. </property>
  179. <property name="sizeType">
  180. <enum>QSizePolicy::Expanding</enum>
  181. </property>
  182. <property name="sizeHint" stdset="0">
  183. <size>
  184. <width>40</width>
  185. <height>20</height>
  186. </size>
  187. </property>
  188. </spacer>
  189. </item>
  190. <item>
  191. <widget class="QPushButton" name="cbt_nom">
  192. <property name="minimumSize">
  193. <size>
  194. <width>150</width>
  195. <height>30</height>
  196. </size>
  197. </property>
  198. <property name="maximumSize">
  199. <size>
  200. <width>16777215</width>
  201. <height>30</height>
  202. </size>
  203. </property>
  204. <property name="font">
  205. <font>
  206. <family>Verdana</family>
  207. <pointsize>9</pointsize>
  208. <weight>75</weight>
  209. <bold>true</bold>
  210. </font>
  211. </property>
  212. <property name="text">
  213. <string> La tour sombre [Non Publié] </string>
  214. </property>
  215. </widget>
  216. </item>
  217. <item>
  218. <widget class="QPushButton" name="cbt_sauver">
  219. <property name="minimumSize">
  220. <size>
  221. <width>34</width>
  222. <height>30</height>
  223. </size>
  224. </property>
  225. <property name="maximumSize">
  226. <size>
  227. <width>34</width>
  228. <height>30</height>
  229. </size>
  230. </property>
  231. <property name="toolTip">
  232. <string>Enregistrer le combat</string>
  233. </property>
  234. <property name="text">
  235. <string/>
  236. </property>
  237. <property name="icon">
  238. <iconset resource="ressource.qrc">
  239. <normaloff>:/interface/16/ressource/enregistrer_16.png</normaloff>:/interface/16/ressource/enregistrer_16.png</iconset>
  240. </property>
  241. <property name="iconSize">
  242. <size>
  243. <width>19</width>
  244. <height>19</height>
  245. </size>
  246. </property>
  247. </widget>
  248. </item>
  249. <item>
  250. <widget class="QPushButton" name="cbt_fermer">
  251. <property name="minimumSize">
  252. <size>
  253. <width>34</width>
  254. <height>30</height>
  255. </size>
  256. </property>
  257. <property name="maximumSize">
  258. <size>
  259. <width>34</width>
  260. <height>30</height>
  261. </size>
  262. </property>
  263. <property name="toolTip">
  264. <string>Fermer le combat</string>
  265. </property>
  266. <property name="text">
  267. <string/>
  268. </property>
  269. <property name="icon">
  270. <iconset resource="ressource.qrc">
  271. <normaloff>:/interface/16/ressource/fermer_16.png</normaloff>:/interface/16/ressource/fermer_16.png</iconset>
  272. </property>
  273. </widget>
  274. </item>
  275. <item>
  276. <spacer name="horizontalSpacer_2">
  277. <property name="orientation">
  278. <enum>Qt::Horizontal</enum>
  279. </property>
  280. <property name="sizeType">
  281. <enum>QSizePolicy::Expanding</enum>
  282. </property>
  283. <property name="sizeHint" stdset="0">
  284. <size>
  285. <width>60</width>
  286. <height>20</height>
  287. </size>
  288. </property>
  289. </spacer>
  290. </item>
  291. <item>
  292. <widget class="QPushButton" name="cbt_modeCreation">
  293. <property name="minimumSize">
  294. <size>
  295. <width>40</width>
  296. <height>30</height>
  297. </size>
  298. </property>
  299. <property name="maximumSize">
  300. <size>
  301. <width>40</width>
  302. <height>30</height>
  303. </size>
  304. </property>
  305. <property name="toolTip">
  306. <string>Passer en mode Création</string>
  307. </property>
  308. <property name="icon">
  309. <iconset resource="ressource.qrc">
  310. <normaloff>:/interface/16/ressource/creation_16.png</normaloff>:/interface/16/ressource/creation_16.png</iconset>
  311. </property>
  312. <property name="checkable">
  313. <bool>true</bool>
  314. </property>
  315. </widget>
  316. </item>
  317. <item>
  318. <widget class="QPushButton" name="cbt_modeCombat">
  319. <property name="minimumSize">
  320. <size>
  321. <width>40</width>
  322. <height>30</height>
  323. </size>
  324. </property>
  325. <property name="maximumSize">
  326. <size>
  327. <width>40</width>
  328. <height>30</height>
  329. </size>
  330. </property>
  331. <property name="toolTip">
  332. <string>Passer en mode Combat</string>
  333. </property>
  334. <property name="text">
  335. <string/>
  336. </property>
  337. <property name="icon">
  338. <iconset resource="ressource.qrc">
  339. <normaloff>:/interface/16/ressource/armes_16.png</normaloff>:/interface/16/ressource/armes_16.png</iconset>
  340. </property>
  341. <property name="checkable">
  342. <bool>true</bool>
  343. </property>
  344. </widget>
  345. </item>
  346. </layout>
  347. </item>
  348. </layout>
  349. </widget>
  350. </widget>
  351. </item>
  352. <item>
  353. <layout class="QHBoxLayout" name="plateauLayoutH" stretch="0,1,0">
  354. <property name="spacing">
  355. <number>3</number>
  356. </property>
  357. <item>
  358. <widget class="QStackedWidget" name="cbt_panneauGauche">
  359. <property name="minimumSize">
  360. <size>
  361. <width>90</width>
  362. <height>0</height>
  363. </size>
  364. </property>
  365. <property name="maximumSize">
  366. <size>
  367. <width>128</width>
  368. <height>16777215</height>
  369. </size>
  370. </property>
  371. <property name="currentIndex">
  372. <number>1</number>
  373. </property>
  374. <widget class="QWidget" name="page_4"/>
  375. <widget class="QWidget" name="page_5">
  376. <layout class="QHBoxLayout" name="horizontalLayout_6">
  377. <property name="spacing">
  378. <number>0</number>
  379. </property>
  380. <property name="leftMargin">
  381. <number>0</number>
  382. </property>
  383. <property name="topMargin">
  384. <number>0</number>
  385. </property>
  386. <property name="rightMargin">
  387. <number>0</number>
  388. </property>
  389. <property name="bottomMargin">
  390. <number>0</number>
  391. </property>
  392. <item>
  393. <widget class="QFrame" name="inf_panneau">
  394. <property name="minimumSize">
  395. <size>
  396. <width>90</width>
  397. <height>0</height>
  398. </size>
  399. </property>
  400. <property name="maximumSize">
  401. <size>
  402. <width>128</width>
  403. <height>16777215</height>
  404. </size>
  405. </property>
  406. <layout class="QVBoxLayout" name="panneauInfosPlateau" stretch="0,0,0">
  407. <property name="spacing">
  408. <number>0</number>
  409. </property>
  410. <property name="leftMargin">
  411. <number>6</number>
  412. </property>
  413. <property name="topMargin">
  414. <number>6</number>
  415. </property>
  416. <property name="rightMargin">
  417. <number>6</number>
  418. </property>
  419. <property name="bottomMargin">
  420. <number>6</number>
  421. </property>
  422. <item>
  423. <widget class="DmTableWidget" name="inf_listeOrdreJeu">
  424. <property name="minimumSize">
  425. <size>
  426. <width>80</width>
  427. <height>208</height>
  428. </size>
  429. </property>
  430. <property name="maximumSize">
  431. <size>
  432. <width>110</width>
  433. <height>16777215</height>
  434. </size>
  435. </property>
  436. <property name="palette">
  437. <palette>
  438. <active>
  439. <colorrole role="Base">
  440. <brush brushstyle="SolidPattern">
  441. <color alpha="120">
  442. <red>255</red>
  443. <green>255</green>
  444. <blue>255</blue>
  445. </color>
  446. </brush>
  447. </colorrole>
  448. </active>
  449. <inactive>
  450. <colorrole role="Base">
  451. <brush brushstyle="SolidPattern">
  452. <color alpha="120">
  453. <red>255</red>
  454. <green>255</green>
  455. <blue>255</blue>
  456. </color>
  457. </brush>
  458. </colorrole>
  459. </inactive>
  460. <disabled>
  461. <colorrole role="Base">
  462. <brush brushstyle="SolidPattern">
  463. <color alpha="255">
  464. <red>240</red>
  465. <green>240</green>
  466. <blue>240</blue>
  467. </color>
  468. </brush>
  469. </colorrole>
  470. </disabled>
  471. </palette>
  472. </property>
  473. <property name="frameShape">
  474. <enum>QFrame::WinPanel</enum>
  475. </property>
  476. <property name="editTriggers">
  477. <set>QAbstractItemView::NoEditTriggers</set>
  478. </property>
  479. <property name="dragDropOverwriteMode">
  480. <bool>false</bool>
  481. </property>
  482. <property name="alternatingRowColors">
  483. <bool>false</bool>
  484. </property>
  485. <property name="selectionMode">
  486. <enum>QAbstractItemView::SingleSelection</enum>
  487. </property>
  488. <property name="selectionBehavior">
  489. <enum>QAbstractItemView::SelectItems</enum>
  490. </property>
  491. <property name="textElideMode">
  492. <enum>Qt::ElideMiddle</enum>
  493. </property>
  494. <property name="sortingEnabled">
  495. <bool>true</bool>
  496. </property>
  497. <property name="cornerButtonEnabled">
  498. <bool>false</bool>
  499. </property>
  500. <attribute name="horizontalHeaderVisible">
  501. <bool>false</bool>
  502. </attribute>
  503. <attribute name="horizontalHeaderDefaultSectionSize">
  504. <number>100</number>
  505. </attribute>
  506. <attribute name="verticalHeaderVisible">
  507. <bool>false</bool>
  508. </attribute>
  509. <column>
  510. <property name="text">
  511. <string>num</string>
  512. </property>
  513. </column>
  514. <column>
  515. <property name="text">
  516. <string>nom</string>
  517. </property>
  518. </column>
  519. <column>
  520. <property name="text">
  521. <string>enCours</string>
  522. </property>
  523. </column>
  524. <column>
  525. <property name="text">
  526. <string>ordre</string>
  527. </property>
  528. </column>
  529. </widget>
  530. </item>
  531. <item>
  532. <widget class="QToolButton" name="cbt_afficherGestion">
  533. <property name="minimumSize">
  534. <size>
  535. <width>80</width>
  536. <height>38</height>
  537. </size>
  538. </property>
  539. <property name="maximumSize">
  540. <size>
  541. <width>110</width>
  542. <height>38</height>
  543. </size>
  544. </property>
  545. <property name="toolTip">
  546. <string>Afficher le tableau de gestion du combat (MJ)</string>
  547. </property>
  548. <property name="text">
  549. <string/>
  550. </property>
  551. <property name="icon">
  552. <iconset resource="ressource.qrc">
  553. <normaloff>:/interface/32/ressource/tableau_32.png</normaloff>:/interface/32/ressource/tableau_32.png</iconset>
  554. </property>
  555. <property name="iconSize">
  556. <size>
  557. <width>24</width>
  558. <height>24</height>
  559. </size>
  560. </property>
  561. </widget>
  562. </item>
  563. <item>
  564. <widget class="QFrame" name="inf_bas">
  565. <property name="minimumSize">
  566. <size>
  567. <width>90</width>
  568. <height>200</height>
  569. </size>
  570. </property>
  571. <property name="maximumSize">
  572. <size>
  573. <width>120</width>
  574. <height>200</height>
  575. </size>
  576. </property>
  577. <property name="frameShape">
  578. <enum>QFrame::StyledPanel</enum>
  579. </property>
  580. <property name="frameShadow">
  581. <enum>QFrame::Raised</enum>
  582. </property>
  583. <widget class="DmFrameInf_Combattant" name="inf_boitePion">
  584. <property name="geometry">
  585. <rect>
  586. <x>0</x>
  587. <y>0</y>
  588. <width>110</width>
  589. <height>65</height>
  590. </rect>
  591. </property>
  592. <property name="minimumSize">
  593. <size>
  594. <width>80</width>
  595. <height>65</height>
  596. </size>
  597. </property>
  598. <property name="maximumSize">
  599. <size>
  600. <width>110</width>
  601. <height>16777215</height>
  602. </size>
  603. </property>
  604. <property name="title">
  605. <string/>
  606. </property>
  607. <widget class="DmLabel" name="inf_pionSante">
  608. <property name="geometry">
  609. <rect>
  610. <x>50</x>
  611. <y>20</y>
  612. <width>51</width>
  613. <height>21</height>
  614. </rect>
  615. </property>
  616. <property name="text">
  617. <string>sante</string>
  618. </property>
  619. <property name="margin">
  620. <number>1</number>
  621. </property>
  622. <property name="indent">
  623. <number>-1</number>
  624. </property>
  625. </widget>
  626. <widget class="DmLabel" name="inf_pionImage">
  627. <property name="geometry">
  628. <rect>
  629. <x>10</x>
  630. <y>20</y>
  631. <width>31</width>
  632. <height>31</height>
  633. </rect>
  634. </property>
  635. <property name="frameShape">
  636. <enum>QFrame::StyledPanel</enum>
  637. </property>
  638. <property name="text">
  639. <string/>
  640. </property>
  641. </widget>
  642. <widget class="DmLabel" name="inf_pionEffet">
  643. <property name="geometry">
  644. <rect>
  645. <x>50</x>
  646. <y>40</y>
  647. <width>21</width>
  648. <height>20</height>
  649. </rect>
  650. </property>
  651. <property name="toolTip">
  652. <string>Evanoui</string>
  653. </property>
  654. <property name="text">
  655. <string/>
  656. </property>
  657. <property name="pixmap">
  658. <pixmap>../../../../../Users/olivier.massot/.designer/backup/img/etatEtourdi.png</pixmap>
  659. </property>
  660. <property name="scaledContents">
  661. <bool>false</bool>
  662. </property>
  663. </widget>
  664. <widget class="DmLabel" name="inf_pionNom">
  665. <property name="geometry">
  666. <rect>
  667. <x>10</x>
  668. <y>0</y>
  669. <width>91</width>
  670. <height>21</height>
  671. </rect>
  672. </property>
  673. <property name="text">
  674. <string>nom</string>
  675. </property>
  676. <property name="margin">
  677. <number>1</number>
  678. </property>
  679. <property name="indent">
  680. <number>-1</number>
  681. </property>
  682. </widget>
  683. </widget>
  684. <widget class="DmFrameInf_Decor" name="inf_boiteDecor">
  685. <property name="enabled">
  686. <bool>true</bool>
  687. </property>
  688. <property name="geometry">
  689. <rect>
  690. <x>0</x>
  691. <y>70</y>
  692. <width>110</width>
  693. <height>61</height>
  694. </rect>
  695. </property>
  696. <property name="minimumSize">
  697. <size>
  698. <width>80</width>
  699. <height>61</height>
  700. </size>
  701. </property>
  702. <property name="maximumSize">
  703. <size>
  704. <width>110</width>
  705. <height>16777215</height>
  706. </size>
  707. </property>
  708. <property name="title">
  709. <string/>
  710. </property>
  711. <widget class="DmLabel" name="inf_decorNom">
  712. <property name="geometry">
  713. <rect>
  714. <x>10</x>
  715. <y>0</y>
  716. <width>91</width>
  717. <height>21</height>
  718. </rect>
  719. </property>
  720. <property name="text">
  721. <string>nom</string>
  722. </property>
  723. </widget>
  724. <widget class="DmLabel" name="inf_decorImage">
  725. <property name="geometry">
  726. <rect>
  727. <x>10</x>
  728. <y>20</y>
  729. <width>31</width>
  730. <height>31</height>
  731. </rect>
  732. </property>
  733. <property name="frameShape">
  734. <enum>QFrame::StyledPanel</enum>
  735. </property>
  736. <property name="text">
  737. <string/>
  738. </property>
  739. </widget>
  740. <widget class="DmLabel" name="inf_decorEffet">
  741. <property name="geometry">
  742. <rect>
  743. <x>50</x>
  744. <y>20</y>
  745. <width>21</width>
  746. <height>21</height>
  747. </rect>
  748. </property>
  749. <property name="text">
  750. <string/>
  751. </property>
  752. <property name="pixmap">
  753. <pixmap resource="ressource.qrc">:/interface/16/ressource/feu_16.png</pixmap>
  754. </property>
  755. </widget>
  756. <widget class="DmLabel" name="inf_decorDetruit">
  757. <property name="geometry">
  758. <rect>
  759. <x>50</x>
  760. <y>40</y>
  761. <width>21</width>
  762. <height>21</height>
  763. </rect>
  764. </property>
  765. <property name="text">
  766. <string/>
  767. </property>
  768. <property name="pixmap">
  769. <pixmap resource="ressource.qrc">:/interface/16/ressource/brise_16.png</pixmap>
  770. </property>
  771. </widget>
  772. <widget class="DmLabel" name="inf_decorVerrouille">
  773. <property name="geometry">
  774. <rect>
  775. <x>70</x>
  776. <y>20</y>
  777. <width>21</width>
  778. <height>21</height>
  779. </rect>
  780. </property>
  781. <property name="text">
  782. <string/>
  783. </property>
  784. <property name="pixmap">
  785. <pixmap resource="ressource.qrc">:/interface/16/ressource/verrou_ferme_16.png</pixmap>
  786. </property>
  787. </widget>
  788. </widget>
  789. <widget class="DmFrameInf_Case" name="inf_boiteCase">
  790. <property name="geometry">
  791. <rect>
  792. <x>0</x>
  793. <y>136</y>
  794. <width>110</width>
  795. <height>61</height>
  796. </rect>
  797. </property>
  798. <property name="minimumSize">
  799. <size>
  800. <width>80</width>
  801. <height>61</height>
  802. </size>
  803. </property>
  804. <property name="maximumSize">
  805. <size>
  806. <width>110</width>
  807. <height>16777215</height>
  808. </size>
  809. </property>
  810. <property name="title">
  811. <string/>
  812. </property>
  813. <widget class="QLabel" name="infoPionEnCours_depRestant_2">
  814. <property name="geometry">
  815. <rect>
  816. <x>10</x>
  817. <y>120</y>
  818. <width>71</width>
  819. <height>21</height>
  820. </rect>
  821. </property>
  822. <property name="text">
  823. <string>Dep.: 0 </string>
  824. </property>
  825. <property name="margin">
  826. <number>1</number>
  827. </property>
  828. </widget>
  829. <widget class="QLabel" name="infoPionEnCours_aJoue_2">
  830. <property name="geometry">
  831. <rect>
  832. <x>10</x>
  833. <y>140</y>
  834. <width>61</width>
  835. <height>21</height>
  836. </rect>
  837. </property>
  838. <property name="text">
  839. <string>A joué: Non</string>
  840. </property>
  841. <property name="margin">
  842. <number>1</number>
  843. </property>
  844. </widget>
  845. <widget class="QLabel" name="infoPionEnCours_endormi_2">
  846. <property name="geometry">
  847. <rect>
  848. <x>0</x>
  849. <y>180</y>
  850. <width>21</width>
  851. <height>21</height>
  852. </rect>
  853. </property>
  854. <property name="toolTip">
  855. <string>Endormi</string>
  856. </property>
  857. <property name="text">
  858. <string>end</string>
  859. </property>
  860. </widget>
  861. <widget class="QLabel" name="infoPionEnCours_paralyse_2">
  862. <property name="geometry">
  863. <rect>
  864. <x>20</x>
  865. <y>180</y>
  866. <width>21</width>
  867. <height>21</height>
  868. </rect>
  869. </property>
  870. <property name="toolTip">
  871. <string>Paralysé</string>
  872. </property>
  873. <property name="text">
  874. <string>par</string>
  875. </property>
  876. </widget>
  877. <widget class="QLabel" name="infoPionEnCours_entrave_2">
  878. <property name="geometry">
  879. <rect>
  880. <x>40</x>
  881. <y>180</y>
  882. <width>21</width>
  883. <height>21</height>
  884. </rect>
  885. </property>
  886. <property name="toolTip">
  887. <string>Entravé</string>
  888. </property>
  889. <property name="text">
  890. <string>ent</string>
  891. </property>
  892. </widget>
  893. <widget class="QLabel" name="infoPionEnCours_mort_2">
  894. <property name="geometry">
  895. <rect>
  896. <x>60</x>
  897. <y>180</y>
  898. <width>21</width>
  899. <height>21</height>
  900. </rect>
  901. </property>
  902. <property name="toolTip">
  903. <string>Mort</string>
  904. </property>
  905. <property name="text">
  906. <string>mrt</string>
  907. </property>
  908. </widget>
  909. <widget class="QLabel" name="infoPionEnCours_evanoui_2">
  910. <property name="geometry">
  911. <rect>
  912. <x>0</x>
  913. <y>160</y>
  914. <width>21</width>
  915. <height>21</height>
  916. </rect>
  917. </property>
  918. <property name="toolTip">
  919. <string>Evanoui</string>
  920. </property>
  921. <property name="text">
  922. <string>evn</string>
  923. </property>
  924. </widget>
  925. <widget class="QLabel" name="infoPionEnCours_brule_2">
  926. <property name="geometry">
  927. <rect>
  928. <x>20</x>
  929. <y>160</y>
  930. <width>21</width>
  931. <height>21</height>
  932. </rect>
  933. </property>
  934. <property name="toolTip">
  935. <string>Brûle</string>
  936. </property>
  937. <property name="text">
  938. <string>bru</string>
  939. </property>
  940. </widget>
  941. <widget class="QLabel" name="infoPionEnCours_mouille_2">
  942. <property name="geometry">
  943. <rect>
  944. <x>40</x>
  945. <y>160</y>
  946. <width>21</width>
  947. <height>21</height>
  948. </rect>
  949. </property>
  950. <property name="toolTip">
  951. <string>Mouillé</string>
  952. </property>
  953. <property name="text">
  954. <string>mou</string>
  955. </property>
  956. </widget>
  957. <widget class="QLabel" name="infoPionEnCours_vol_2">
  958. <property name="geometry">
  959. <rect>
  960. <x>60</x>
  961. <y>160</y>
  962. <width>21</width>
  963. <height>21</height>
  964. </rect>
  965. </property>
  966. <property name="toolTip">
  967. <string>En Vol</string>
  968. </property>
  969. <property name="text">
  970. <string>vol</string>
  971. </property>
  972. </widget>
  973. <widget class="DmLabel" name="inf_caseTerrain">
  974. <property name="geometry">
  975. <rect>
  976. <x>10</x>
  977. <y>0</y>
  978. <width>71</width>
  979. <height>21</height>
  980. </rect>
  981. </property>
  982. <property name="text">
  983. <string>terrain</string>
  984. </property>
  985. <property name="margin">
  986. <number>1</number>
  987. </property>
  988. <property name="indent">
  989. <number>-1</number>
  990. </property>
  991. </widget>
  992. <widget class="DmLabel" name="inf_caseCoord">
  993. <property name="geometry">
  994. <rect>
  995. <x>10</x>
  996. <y>20</y>
  997. <width>91</width>
  998. <height>21</height>
  999. </rect>
  1000. </property>
  1001. <property name="text">
  1002. <string>coord</string>
  1003. </property>
  1004. <property name="margin">
  1005. <number>1</number>
  1006. </property>
  1007. <property name="indent">
  1008. <number>-1</number>
  1009. </property>
  1010. </widget>
  1011. <widget class="DmLabel" name="inf_caseEffet">
  1012. <property name="geometry">
  1013. <rect>
  1014. <x>60</x>
  1015. <y>0</y>
  1016. <width>21</width>
  1017. <height>21</height>
  1018. </rect>
  1019. </property>
  1020. <property name="text">
  1021. <string/>
  1022. </property>
  1023. <property name="pixmap">
  1024. <pixmap>../../../../../Users/olivier.massot/.designer/backup/img/etatFeu.png</pixmap>
  1025. </property>
  1026. <property name="scaledContents">
  1027. <bool>true</bool>
  1028. </property>
  1029. <property name="margin">
  1030. <number>1</number>
  1031. </property>
  1032. <property name="indent">
  1033. <number>-1</number>
  1034. </property>
  1035. </widget>
  1036. <widget class="DmLabel" name="inf_caseAltitude">
  1037. <property name="geometry">
  1038. <rect>
  1039. <x>10</x>
  1040. <y>40</y>
  1041. <width>91</width>
  1042. <height>21</height>
  1043. </rect>
  1044. </property>
  1045. <property name="text">
  1046. <string>alt</string>
  1047. </property>
  1048. <property name="margin">
  1049. <number>1</number>
  1050. </property>
  1051. <property name="indent">
  1052. <number>-1</number>
  1053. </property>
  1054. </widget>
  1055. <widget class="DmLabel" name="inf_caseEffet_2">
  1056. <property name="geometry">
  1057. <rect>
  1058. <x>90</x>
  1059. <y>0</y>
  1060. <width>21</width>
  1061. <height>21</height>
  1062. </rect>
  1063. </property>
  1064. <property name="text">
  1065. <string/>
  1066. </property>
  1067. <property name="margin">
  1068. <number>1</number>
  1069. </property>
  1070. <property name="indent">
  1071. <number>-1</number>
  1072. </property>
  1073. </widget>
  1074. </widget>
  1075. </widget>
  1076. </item>
  1077. </layout>
  1078. </widget>
  1079. </item>
  1080. </layout>
  1081. </widget>
  1082. </widget>
  1083. </item>
  1084. <item>
  1085. <layout class="QVBoxLayout" name="layoutCombatCentre" stretch="0,0,0,0">
  1086. <property name="spacing">
  1087. <number>0</number>
  1088. </property>
  1089. <item>
  1090. <widget class="DmGraphicsView" name="cbt_vue">
  1091. <property name="minimumSize">
  1092. <size>
  1093. <width>100</width>
  1094. <height>0</height>
  1095. </size>
  1096. </property>
  1097. <property name="acceptDrops">
  1098. <bool>true</bool>
  1099. </property>
  1100. <property name="verticalScrollBarPolicy">
  1101. <enum>Qt::ScrollBarAsNeeded</enum>
  1102. </property>
  1103. <property name="horizontalScrollBarPolicy">
  1104. <enum>Qt::ScrollBarAsNeeded</enum>
  1105. </property>
  1106. <property name="renderHints">
  1107. <set>QPainter::Antialiasing|QPainter::HighQualityAntialiasing|QPainter::TextAntialiasing</set>
  1108. </property>
  1109. <property name="dragMode">
  1110. <enum>QGraphicsView::NoDrag</enum>
  1111. </property>
  1112. <property name="transformationAnchor">
  1113. <enum>QGraphicsView::NoAnchor</enum>
  1114. </property>
  1115. <property name="resizeAnchor">
  1116. <enum>QGraphicsView::NoAnchor</enum>
  1117. </property>
  1118. <property name="viewportUpdateMode">
  1119. <enum>QGraphicsView::MinimalViewportUpdate</enum>
  1120. </property>
  1121. </widget>
  1122. </item>
  1123. <item>
  1124. <widget class="QPushButton" name="histo_agrandir">
  1125. <property name="minimumSize">
  1126. <size>
  1127. <width>0</width>
  1128. <height>12</height>
  1129. </size>
  1130. </property>
  1131. <property name="maximumSize">
  1132. <size>
  1133. <width>16777215</width>
  1134. <height>12</height>
  1135. </size>
  1136. </property>
  1137. <property name="text">
  1138. <string/>
  1139. </property>
  1140. <property name="icon">
  1141. <iconset resource="ressource.qrc">
  1142. <normaloff>:/interface/16/ressource/flecheHaut_16.png</normaloff>:/interface/16/ressource/flecheHaut_16.png</iconset>
  1143. </property>
  1144. <property name="checkable">
  1145. <bool>false</bool>
  1146. </property>
  1147. <property name="checked">
  1148. <bool>false</bool>
  1149. </property>
  1150. <property name="autoDefault">
  1151. <bool>false</bool>
  1152. </property>
  1153. <property name="default">
  1154. <bool>false</bool>
  1155. </property>
  1156. <property name="flat">
  1157. <bool>true</bool>
  1158. </property>
  1159. </widget>
  1160. </item>
  1161. <item>
  1162. <widget class="QStackedWidget" name="cbt_panneauBas">
  1163. <property name="minimumSize">
  1164. <size>
  1165. <width>0</width>
  1166. <height>75</height>
  1167. </size>
  1168. </property>
  1169. <property name="maximumSize">
  1170. <size>
  1171. <width>16777215</width>
  1172. <height>75</height>
  1173. </size>
  1174. </property>
  1175. <property name="palette">
  1176. <palette>
  1177. <active>
  1178. <colorrole role="Base">
  1179. <brush brushstyle="SolidPattern">
  1180. <color alpha="255">
  1181. <red>249</red>
  1182. <green>249</green>
  1183. <blue>249</blue>
  1184. </color>
  1185. </brush>
  1186. </colorrole>
  1187. </active>
  1188. <inactive>
  1189. <colorrole role="Base">
  1190. <brush brushstyle="SolidPattern">
  1191. <color alpha="255">
  1192. <red>249</red>
  1193. <green>249</green>
  1194. <blue>249</blue>
  1195. </color>
  1196. </brush>
  1197. </colorrole>
  1198. </inactive>
  1199. <disabled>
  1200. <colorrole role="Base">
  1201. <brush brushstyle="SolidPattern">
  1202. <color alpha="255">
  1203. <red>240</red>
  1204. <green>240</green>
  1205. <blue>240</blue>
  1206. </color>
  1207. </brush>
  1208. </colorrole>
  1209. </disabled>
  1210. </palette>
  1211. </property>
  1212. <property name="frameShape">
  1213. <enum>QFrame::StyledPanel</enum>
  1214. </property>
  1215. <property name="currentIndex">
  1216. <number>0</number>
  1217. </property>
  1218. <widget class="QWidget" name="page_act">
  1219. <layout class="QVBoxLayout" name="verticalLayout_16">
  1220. <property name="spacing">
  1221. <number>2</number>
  1222. </property>
  1223. <property name="leftMargin">
  1224. <number>2</number>
  1225. </property>
  1226. <property name="topMargin">
  1227. <number>2</number>
  1228. </property>
  1229. <property name="rightMargin">
  1230. <number>2</number>
  1231. </property>
  1232. <property name="bottomMargin">
  1233. <number>2</number>
  1234. </property>
  1235. <item>
  1236. <layout class="QHBoxLayout" name="act_layout">
  1237. <item>
  1238. <widget class="DmLabel" name="act_img">
  1239. <property name="minimumSize">
  1240. <size>
  1241. <width>50</width>
  1242. <height>50</height>
  1243. </size>
  1244. </property>
  1245. <property name="maximumSize">
  1246. <size>
  1247. <width>50</width>
  1248. <height>50</height>
  1249. </size>
  1250. </property>
  1251. <property name="toolTip">
  1252. <string>Image du pion sélectionné</string>
  1253. </property>
  1254. <property name="text">
  1255. <string>logo</string>
  1256. </property>
  1257. </widget>
  1258. </item>
  1259. <item>
  1260. <widget class="QToolButton" name="act_deplacement">
  1261. <property name="minimumSize">
  1262. <size>
  1263. <width>45</width>
  1264. <height>45</height>
  1265. </size>
  1266. </property>
  1267. <property name="maximumSize">
  1268. <size>
  1269. <width>45</width>
  1270. <height>45</height>
  1271. </size>
  1272. </property>
  1273. <property name="toolTip">
  1274. <string>Déplacer le pion</string>
  1275. </property>
  1276. <property name="text">
  1277. <string/>
  1278. </property>
  1279. <property name="icon">
  1280. <iconset resource="ressource.qrc">
  1281. <normaloff>:/interface/32/ressource/deplacement_32.png</normaloff>:/interface/32/ressource/deplacement_32.png</iconset>
  1282. </property>
  1283. </widget>
  1284. </item>
  1285. <item>
  1286. <widget class="QToolButton" name="act_attaqueCac">
  1287. <property name="minimumSize">
  1288. <size>
  1289. <width>45</width>
  1290. <height>45</height>
  1291. </size>
  1292. </property>
  1293. <property name="maximumSize">
  1294. <size>
  1295. <width>45</width>
  1296. <height>45</height>
  1297. </size>
  1298. </property>
  1299. <property name="toolTip">
  1300. <string>Effectuer une attaque au corps à corps</string>
  1301. </property>
  1302. <property name="text">
  1303. <string>...</string>
  1304. </property>
  1305. <property name="icon">
  1306. <iconset resource="ressource.qrc">
  1307. <normaloff>:/interface/16/ressource/epee_16.png</normaloff>:/interface/16/ressource/epee_16.png</iconset>
  1308. </property>
  1309. </widget>
  1310. </item>
  1311. <item>
  1312. <widget class="QToolButton" name="act_attaqueDist">
  1313. <property name="minimumSize">
  1314. <size>
  1315. <width>45</width>
  1316. <height>45</height>
  1317. </size>
  1318. </property>
  1319. <property name="maximumSize">
  1320. <size>
  1321. <width>45</width>
  1322. <height>45</height>
  1323. </size>
  1324. </property>
  1325. <property name="toolTip">
  1326. <string>Effectuer une attaque à distance</string>
  1327. </property>
  1328. <property name="text">
  1329. <string>...</string>
  1330. </property>
  1331. <property name="icon">
  1332. <iconset resource="ressource.qrc">
  1333. <normaloff>:/interface/16/ressource/arc_16.png</normaloff>:/interface/16/ressource/arc_16.png</iconset>
  1334. </property>
  1335. </widget>
  1336. </item>
  1337. <item>
  1338. <widget class="QToolButton" name="act_attaqueZone">
  1339. <property name="minimumSize">
  1340. <size>
  1341. <width>45</width>
  1342. <height>45</height>
  1343. </size>
  1344. </property>
  1345. <property name="maximumSize">
  1346. <size>
  1347. <width>45</width>
  1348. <height>45</height>
  1349. </size>
  1350. </property>
  1351. <property name="text">
  1352. <string/>
  1353. </property>
  1354. <property name="icon">
  1355. <iconset resource="ressource.qrc">
  1356. <normaloff>:/interface/16/ressource/bombe_16.png</normaloff>:/interface/16/ressource/bombe_16.png</iconset>
  1357. </property>
  1358. </widget>
  1359. </item>
  1360. <item>
  1361. <widget class="QScrollArea" name="act_deroulement">
  1362. <property name="frameShape">
  1363. <enum>QFrame::NoFrame</enum>
  1364. </property>
  1365. <property name="widgetResizable">
  1366. <bool>true</bool>
  1367. </property>
  1368. <widget class="QWidget" name="scrollAreaWidgetContents">
  1369. <property name="geometry">
  1370. <rect>
  1371. <x>0</x>
  1372. <y>0</y>
  1373. <width>152</width>
  1374. <height>67</height>
  1375. </rect>
  1376. </property>
  1377. <layout class="QHBoxLayout" name="horizontalLayout_10">
  1378. <property name="spacing">
  1379. <number>0</number>
  1380. </property>
  1381. <property name="leftMargin">
  1382. <number>0</number>
  1383. </property>
  1384. <property name="topMargin">
  1385. <number>0</number>
  1386. </property>
  1387. <property name="rightMargin">
  1388. <number>0</number>
  1389. </property>
  1390. <property name="bottomMargin">
  1391. <number>0</number>
  1392. </property>
  1393. <item>
  1394. <widget class="DmLabel" name="act_description">
  1395. <property name="minimumSize">
  1396. <size>
  1397. <width>50</width>
  1398. <height>0</height>
  1399. </size>
  1400. </property>
  1401. <property name="maximumSize">
  1402. <size>
  1403. <width>500</width>
  1404. <height>16777215</height>
  1405. </size>
  1406. </property>
  1407. <property name="text">
  1408. <string/>
  1409. </property>
  1410. </widget>
  1411. </item>
  1412. </layout>
  1413. </widget>
  1414. </widget>
  1415. </item>
  1416. <item>
  1417. <widget class="QPushButton" name="act_valider">
  1418. <property name="minimumSize">
  1419. <size>
  1420. <width>80</width>
  1421. <height>45</height>
  1422. </size>
  1423. </property>
  1424. <property name="maximumSize">
  1425. <size>
  1426. <width>80</width>
  1427. <height>45</height>
  1428. </size>
  1429. </property>
  1430. <property name="text">
  1431. <string>Valider</string>
  1432. </property>
  1433. </widget>
  1434. </item>
  1435. </layout>
  1436. </item>
  1437. </layout>
  1438. </widget>
  1439. <widget class="QWidget" name="page_jrl">
  1440. <layout class="QVBoxLayout" name="verticalLayout_13">
  1441. <property name="spacing">
  1442. <number>0</number>
  1443. </property>
  1444. <property name="leftMargin">
  1445. <number>0</number>
  1446. </property>
  1447. <property name="topMargin">
  1448. <number>0</number>
  1449. </property>
  1450. <property name="rightMargin">
  1451. <number>0</number>
  1452. </property>
  1453. <property name="bottomMargin">
  1454. <number>0</number>
  1455. </property>
  1456. <item>
  1457. <widget class="QListWidget" name="histo_liste">
  1458. <property name="minimumSize">
  1459. <size>
  1460. <width>0</width>
  1461. <height>63</height>
  1462. </size>
  1463. </property>
  1464. <property name="maximumSize">
  1465. <size>
  1466. <width>16777215</width>
  1467. <height>63</height>
  1468. </size>
  1469. </property>
  1470. <property name="palette">
  1471. <palette>
  1472. <active>
  1473. <colorrole role="Base">
  1474. <brush brushstyle="SolidPattern">
  1475. <color alpha="255">
  1476. <red>204</red>
  1477. <green>204</green>
  1478. <blue>204</blue>
  1479. </color>
  1480. </brush>
  1481. </colorrole>
  1482. </active>
  1483. <inactive>
  1484. <colorrole role="Base">
  1485. <brush brushstyle="SolidPattern">
  1486. <color alpha="255">
  1487. <red>204</red>
  1488. <green>204</green>
  1489. <blue>204</blue>
  1490. </color>
  1491. </brush>
  1492. </colorrole>
  1493. </inactive>
  1494. <disabled>
  1495. <colorrole role="Base">
  1496. <brush brushstyle="SolidPattern">
  1497. <color alpha="255">
  1498. <red>240</red>
  1499. <green>240</green>
  1500. <blue>240</blue>
  1501. </color>
  1502. </brush>
  1503. </colorrole>
  1504. </disabled>
  1505. </palette>
  1506. </property>
  1507. <property name="font">
  1508. <font>
  1509. <pointsize>8</pointsize>
  1510. </font>
  1511. </property>
  1512. <property name="horizontalScrollBarPolicy">
  1513. <enum>Qt::ScrollBarAlwaysOff</enum>
  1514. </property>
  1515. <property name="editTriggers">
  1516. <set>QAbstractItemView::NoEditTriggers</set>
  1517. </property>
  1518. <property name="selectionMode">
  1519. <enum>QAbstractItemView::NoSelection</enum>
  1520. </property>
  1521. <property name="uniformItemSizes">
  1522. <bool>false</bool>
  1523. </property>
  1524. <property name="wordWrap">
  1525. <bool>true</bool>
  1526. </property>
  1527. <item>
  1528. <property name="text">
  1529. <string>Début du tour 1</string>
  1530. </property>
  1531. </item>
  1532. <item>
  1533. <property name="text">
  1534. <string>Tour 1 - Orc 1 attaque Soldat 2 avec une boule de feu</string>
  1535. </property>
  1536. </item>
  1537. <item>
  1538. <property name="text">
  1539. <string>Tour 1 -[MJ] Orc 1 jette 10D6 &gt; Il obtient 51</string>
  1540. </property>
  1541. </item>
  1542. <item>
  1543. <property name="text">
  1544. <string>Début du tour 2</string>
  1545. </property>
  1546. </item>
  1547. </widget>
  1548. </item>
  1549. </layout>
  1550. </widget>
  1551. </widget>
  1552. </item>
  1553. <item>
  1554. <widget class="DmLabel" name="cbt_arbo">
  1555. <property name="minimumSize">
  1556. <size>
  1557. <width>0</width>
  1558. <height>18</height>
  1559. </size>
  1560. </property>
  1561. <property name="font">
  1562. <font>
  1563. <pointsize>9</pointsize>
  1564. <weight>75</weight>
  1565. <bold>true</bold>
  1566. </font>
  1567. </property>
  1568. <property name="toolTip">
  1569. <string>Nom du pion sélectionné</string>
  1570. </property>
  1571. <property name="text">
  1572. <string>Plateau</string>
  1573. </property>
  1574. </widget>
  1575. </item>
  1576. </layout>
  1577. </item>
  1578. <item>
  1579. <layout class="QVBoxLayout" name="layoutV_droite">
  1580. <property name="spacing">
  1581. <number>0</number>
  1582. </property>
  1583. <property name="sizeConstraint">
  1584. <enum>QLayout::SetDefaultConstraint</enum>
  1585. </property>
  1586. <property name="leftMargin">
  1587. <number>3</number>
  1588. </property>
  1589. <property name="rightMargin">
  1590. <number>3</number>
  1591. </property>
  1592. <item>
  1593. <widget class="QStackedWidget" name="cbt_panneauDroite">
  1594. <property name="minimumSize">
  1595. <size>
  1596. <width>170</width>
  1597. <height>0</height>
  1598. </size>
  1599. </property>
  1600. <property name="maximumSize">
  1601. <size>
  1602. <width>170</width>
  1603. <height>16777215</height>
  1604. </size>
  1605. </property>
  1606. <property name="currentIndex">
  1607. <number>2</number>
  1608. </property>
  1609. <widget class="QWidget" name="cbt_panneauDroite0"/>
  1610. <widget class="QWidget" name="cbt_panneauDroite1">
  1611. <layout class="QHBoxLayout" name="horizontalLayout_5">
  1612. <property name="spacing">
  1613. <number>0</number>
  1614. </property>
  1615. <property name="leftMargin">
  1616. <number>0</number>
  1617. </property>
  1618. <property name="topMargin">
  1619. <number>0</number>
  1620. </property>
  1621. <property name="rightMargin">
  1622. <number>0</number>
  1623. </property>
  1624. <property name="bottomMargin">
  1625. <number>0</number>
  1626. </property>
  1627. <item>
  1628. <widget class="QFrame" name="cp_panneau">
  1629. <property name="minimumSize">
  1630. <size>
  1631. <width>170</width>
  1632. <height>0</height>
  1633. </size>
  1634. </property>
  1635. <property name="maximumSize">
  1636. <size>
  1637. <width>170</width>
  1638. <height>16777215</height>
  1639. </size>
  1640. </property>
  1641. <property name="autoFillBackground">
  1642. <bool>true</bool>
  1643. </property>
  1644. <property name="frameShape">
  1645. <enum>QFrame::StyledPanel</enum>
  1646. </property>
  1647. <property name="frameShadow">
  1648. <enum>QFrame::Raised</enum>
  1649. </property>
  1650. <layout class="QVBoxLayout" name="verticalLayout_3">
  1651. <property name="spacing">
  1652. <number>5</number>
  1653. </property>
  1654. <property name="leftMargin">
  1655. <number>5</number>
  1656. </property>
  1657. <property name="topMargin">
  1658. <number>5</number>
  1659. </property>
  1660. <property name="rightMargin">
  1661. <number>5</number>
  1662. </property>
  1663. <property name="bottomMargin">
  1664. <number>5</number>
  1665. </property>
  1666. <item>
  1667. <widget class="QFrame" name="cp_boiteCouleurs">
  1668. <property name="minimumSize">
  1669. <size>
  1670. <width>152</width>
  1671. <height>60</height>
  1672. </size>
  1673. </property>
  1674. <property name="maximumSize">
  1675. <size>
  1676. <width>152</width>
  1677. <height>60</height>
  1678. </size>
  1679. </property>
  1680. <property name="frameShape">
  1681. <enum>QFrame::StyledPanel</enum>
  1682. </property>
  1683. <property name="frameShadow">
  1684. <enum>QFrame::Raised</enum>
  1685. </property>
  1686. <widget class="QToolButton" name="cp_couleur2">
  1687. <property name="geometry">
  1688. <rect>
  1689. <x>16</x>
  1690. <y>0</y>
  1691. <width>16</width>
  1692. <height>16</height>
  1693. </rect>
  1694. </property>
  1695. <property name="text">
  1696. <string/>
  1697. </property>
  1698. </widget>
  1699. <widget class="QToolButton" name="cp_couleur14">
  1700. <property name="geometry">
  1701. <rect>
  1702. <x>64</x>
  1703. <y>17</y>
  1704. <width>16</width>
  1705. <height>16</height>
  1706. </rect>
  1707. </property>
  1708. <property name="text">
  1709. <string/>
  1710. </property>
  1711. </widget>
  1712. <widget class="QToolButton" name="cp_couleur7">
  1713. <property name="geometry">
  1714. <rect>
  1715. <x>96</x>
  1716. <y>0</y>
  1717. <width>16</width>
  1718. <height>16</height>
  1719. </rect>
  1720. </property>
  1721. <property name="text">
  1722. <string/>
  1723. </property>
  1724. </widget>
  1725. <widget class="QToolButton" name="cp_couleur12">
  1726. <property name="geometry">
  1727. <rect>
  1728. <x>32</x>
  1729. <y>17</y>
  1730. <width>16</width>
  1731. <height>16</height>
  1732. </rect>
  1733. </property>
  1734. <property name="text">
  1735. <string/>
  1736. </property>
  1737. </widget>
  1738. <widget class="QToolButton" name="cp_couleur5">
  1739. <property name="geometry">
  1740. <rect>
  1741. <x>64</x>
  1742. <y>0</y>
  1743. <width>16</width>
  1744. <height>16</height>
  1745. </rect>
  1746. </property>
  1747. <property name="text">
  1748. <string/>
  1749. </property>
  1750. </widget>
  1751. <widget class="QToolButton" name="cp_couleur10">
  1752. <property name="geometry">
  1753. <rect>
  1754. <x>0</x>
  1755. <y>17</y>
  1756. <width>16</width>
  1757. <height>16</height>
  1758. </rect>
  1759. </property>
  1760. <property name="text">
  1761. <string/>
  1762. </property>
  1763. </widget>
  1764. <widget class="QToolButton" name="cp_couleur3">
  1765. <property name="geometry">
  1766. <rect>
  1767. <x>32</x>
  1768. <y>0</y>
  1769. <width>16</width>
  1770. <height>16</height>
  1771. </rect>
  1772. </property>
  1773. <property name="text">
  1774. <string/>
  1775. </property>
  1776. </widget>
  1777. <widget class="QToolButton" name="cp_couleur15">
  1778. <property name="geometry">
  1779. <rect>
  1780. <x>80</x>
  1781. <y>17</y>
  1782. <width>16</width>
  1783. <height>16</height>
  1784. </rect>
  1785. </property>
  1786. <property name="text">
  1787. <string/>
  1788. </property>
  1789. </widget>
  1790. <widget class="QToolButton" name="cp_couleur6">
  1791. <property name="geometry">
  1792. <rect>
  1793. <x>80</x>
  1794. <y>0</y>
  1795. <width>16</width>
  1796. <height>16</height>
  1797. </rect>
  1798. </property>
  1799. <property name="text">
  1800. <string/>
  1801. </property>
  1802. </widget>
  1803. <widget class="QToolButton" name="cp_couleur1">
  1804. <property name="geometry">
  1805. <rect>
  1806. <x>0</x>
  1807. <y>0</y>
  1808. <width>16</width>
  1809. <height>16</height>
  1810. </rect>
  1811. </property>
  1812. <property name="text">
  1813. <string/>
  1814. </property>
  1815. </widget>
  1816. <widget class="QToolButton" name="cp_couleur13">
  1817. <property name="geometry">
  1818. <rect>
  1819. <x>48</x>
  1820. <y>17</y>
  1821. <width>16</width>
  1822. <height>16</height>
  1823. </rect>
  1824. </property>
  1825. <property name="text">
  1826. <string/>
  1827. </property>
  1828. </widget>
  1829. <widget class="QToolButton" name="cp_couleur4">
  1830. <property name="geometry">
  1831. <rect>
  1832. <x>48</x>
  1833. <y>0</y>
  1834. <width>16</width>
  1835. <height>16</height>
  1836. </rect>
  1837. </property>
  1838. <property name="text">
  1839. <string/>
  1840. </property>
  1841. </widget>
  1842. <widget class="QToolButton" name="cp_couleur16">
  1843. <property name="geometry">
  1844. <rect>
  1845. <x>96</x>
  1846. <y>17</y>
  1847. <width>16</width>
  1848. <height>16</height>
  1849. </rect>
  1850. </property>
  1851. <property name="text">
  1852. <string/>
  1853. </property>
  1854. </widget>
  1855. <widget class="QToolButton" name="cp_couleur11">
  1856. <property name="geometry">
  1857. <rect>
  1858. <x>16</x>
  1859. <y>17</y>
  1860. <width>16</width>
  1861. <height>16</height>
  1862. </rect>
  1863. </property>
  1864. <property name="text">
  1865. <string/>
  1866. </property>
  1867. </widget>
  1868. <widget class="QToolButton" name="cp_pipetteCouleur">
  1869. <property name="geometry">
  1870. <rect>
  1871. <x>40</x>
  1872. <y>38</y>
  1873. <width>31</width>
  1874. <height>21</height>
  1875. </rect>
  1876. </property>
  1877. <property name="toolTip">
  1878. <string>Ligne</string>
  1879. </property>
  1880. <property name="text">
  1881. <string>...</string>
  1882. </property>
  1883. <property name="icon">
  1884. <iconset resource="ressource.qrc">
  1885. <normaloff>:/interface/16/ressource/seringue_16.png</normaloff>:/interface/16/ressource/seringue_16.png</iconset>
  1886. </property>
  1887. </widget>
  1888. <widget class="QPushButton" name="cp_dialogueCouleurs">
  1889. <property name="geometry">
  1890. <rect>
  1891. <x>81</x>
  1892. <y>38</y>
  1893. <width>31</width>
  1894. <height>21</height>
  1895. </rect>
  1896. </property>
  1897. <property name="contextMenuPolicy">
  1898. <enum>Qt::DefaultContextMenu</enum>
  1899. </property>
  1900. <property name="toolTip">
  1901. <string>Autres couleurs</string>
  1902. </property>
  1903. <property name="text">
  1904. <string/>
  1905. </property>
  1906. <property name="icon">
  1907. <iconset resource="ressource.qrc">
  1908. <normaloff>:/interface/16/ressource/palette_16.png</normaloff>:/interface/16/ressource/palette_16.png</iconset>
  1909. </property>
  1910. </widget>
  1911. <widget class="QToolButton" name="cp_couleur8">
  1912. <property name="geometry">
  1913. <rect>
  1914. <x>112</x>
  1915. <y>0</y>
  1916. <width>16</width>
  1917. <height>16</height>
  1918. </rect>
  1919. </property>
  1920. <property name="text">
  1921. <string/>
  1922. </property>
  1923. </widget>
  1924. <widget class="QToolButton" name="cp_couleur9">
  1925. <property name="geometry">
  1926. <rect>
  1927. <x>128</x>
  1928. <y>0</y>
  1929. <width>16</width>
  1930. <height>16</height>
  1931. </rect>
  1932. </property>
  1933. <property name="text">
  1934. <string/>
  1935. </property>
  1936. </widget>
  1937. <widget class="QToolButton" name="cp_couleur17">
  1938. <property name="geometry">
  1939. <rect>
  1940. <x>112</x>
  1941. <y>17</y>
  1942. <width>16</width>
  1943. <height>16</height>
  1944. </rect>
  1945. </property>
  1946. <property name="text">
  1947. <string/>
  1948. </property>
  1949. </widget>
  1950. <widget class="QToolButton" name="cp_couleur18">
  1951. <property name="geometry">
  1952. <rect>
  1953. <x>128</x>
  1954. <y>17</y>
  1955. <width>16</width>
  1956. <height>16</height>
  1957. </rect>
  1958. </property>
  1959. <property name="text">
  1960. <string/>
  1961. </property>
  1962. </widget>
  1963. </widget>
  1964. </item>
  1965. <item alignment="Qt::AlignHCenter">
  1966. <widget class="QFrame" name="cP_boiteFormes">
  1967. <property name="minimumSize">
  1968. <size>
  1969. <width>152</width>
  1970. <height>80</height>
  1971. </size>
  1972. </property>
  1973. <property name="maximumSize">
  1974. <size>
  1975. <width>120</width>
  1976. <height>80</height>
  1977. </size>
  1978. </property>
  1979. <property name="frameShape">
  1980. <enum>QFrame::StyledPanel</enum>
  1981. </property>
  1982. <property name="frameShadow">
  1983. <enum>QFrame::Raised</enum>
  1984. </property>
  1985. <widget class="QToolButton" name="cp_formeRectPlein">
  1986. <property name="geometry">
  1987. <rect>
  1988. <x>100</x>
  1989. <y>25</y>
  1990. <width>50</width>
  1991. <height>25</height>
  1992. </rect>
  1993. </property>
  1994. <property name="minimumSize">
  1995. <size>
  1996. <width>50</width>
  1997. <height>25</height>
  1998. </size>
  1999. </property>
  2000. <property name="maximumSize">
  2001. <size>
  2002. <width>50</width>
  2003. <height>25</height>
  2004. </size>
  2005. </property>
  2006. <property name="toolTip">
  2007. <string>Rectangle (plein)</string>
  2008. </property>
  2009. <property name="statusTip">
  2010. <string/>
  2011. </property>
  2012. <property name="text">
  2013. <string>...</string>
  2014. </property>
  2015. <property name="icon">
  2016. <iconset resource="ressource.qrc">
  2017. <normaloff>:/interface/16/ressource/rectPlein_16.png</normaloff>:/interface/16/ressource/rectPlein_16.png</iconset>
  2018. </property>
  2019. <property name="iconSize">
  2020. <size>
  2021. <width>18</width>
  2022. <height>18</height>
  2023. </size>
  2024. </property>
  2025. </widget>
  2026. <widget class="QToolButton" name="cp_formeRectVide">
  2027. <property name="geometry">
  2028. <rect>
  2029. <x>50</x>
  2030. <y>25</y>
  2031. <width>50</width>
  2032. <height>25</height>
  2033. </rect>
  2034. </property>
  2035. <property name="minimumSize">
  2036. <size>
  2037. <width>50</width>
  2038. <height>25</height>
  2039. </size>
  2040. </property>
  2041. <property name="maximumSize">
  2042. <size>
  2043. <width>50</width>
  2044. <height>25</height>
  2045. </size>
  2046. </property>
  2047. <property name="toolTip">
  2048. <string>Rectangle (vide)</string>
  2049. </property>
  2050. <property name="statusTip">
  2051. <string/>
  2052. </property>
  2053. <property name="text">
  2054. <string>...</string>
  2055. </property>
  2056. <property name="icon">
  2057. <iconset resource="ressource.qrc">
  2058. <normaloff>:/interface/16/ressource/rectVide_16.png</normaloff>:/interface/16/ressource/rectVide_16.png</iconset>
  2059. </property>
  2060. <property name="iconSize">
  2061. <size>
  2062. <width>18</width>
  2063. <height>18</height>
  2064. </size>
  2065. </property>
  2066. </widget>
  2067. <widget class="DmLabel" name="cp_valeurEpaisseurPinceau">
  2068. <property name="geometry">
  2069. <rect>
  2070. <x>14</x>
  2071. <y>48</y>
  2072. <width>16</width>
  2073. <height>31</height>
  2074. </rect>
  2075. </property>
  2076. <property name="minimumSize">
  2077. <size>
  2078. <width>16</width>
  2079. <height>31</height>
  2080. </size>
  2081. </property>
  2082. <property name="maximumSize">
  2083. <size>
  2084. <width>16</width>
  2085. <height>31</height>
  2086. </size>
  2087. </property>
  2088. <property name="font">
  2089. <font>
  2090. <pointsize>9</pointsize>
  2091. <weight>75</weight>
  2092. <bold>true</bold>
  2093. </font>
  2094. </property>
  2095. <property name="text">
  2096. <string>1</string>
  2097. </property>
  2098. <property name="alignment">
  2099. <set>Qt::AlignCenter</set>
  2100. </property>
  2101. </widget>
  2102. <widget class="QToolButton" name="cp_formeLigneOrientee">
  2103. <property name="geometry">
  2104. <rect>
  2105. <x>100</x>
  2106. <y>0</y>
  2107. <width>50</width>
  2108. <height>25</height>
  2109. </rect>
  2110. </property>
  2111. <property name="minimumSize">
  2112. <size>
  2113. <width>50</width>
  2114. <height>25</height>
  2115. </size>
  2116. </property>
  2117. <property name="maximumSize">
  2118. <size>
  2119. <width>50</width>
  2120. <height>25</height>
  2121. </size>
  2122. </property>
  2123. <property name="toolTip">
  2124. <string>Frontière</string>
  2125. </property>
  2126. <property name="statusTip">
  2127. <string/>
  2128. </property>
  2129. <property name="text">
  2130. <string>...</string>
  2131. </property>
  2132. <property name="icon">
  2133. <iconset resource="ressource.qrc">
  2134. <normaloff>:/interface/16/ressource/ligneOrientee_16.png</normaloff>:/interface/16/ressource/ligneOrientee_16.png</iconset>
  2135. </property>
  2136. <property name="iconSize">
  2137. <size>
  2138. <width>18</width>
  2139. <height>18</height>
  2140. </size>
  2141. </property>
  2142. </widget>
  2143. <widget class="QToolButton" name="cp_formeLigne">
  2144. <property name="geometry">
  2145. <rect>
  2146. <x>50</x>
  2147. <y>0</y>
  2148. <width>50</width>
  2149. <height>25</height>
  2150. </rect>
  2151. </property>
  2152. <property name="minimumSize">
  2153. <size>
  2154. <width>50</width>
  2155. <height>25</height>
  2156. </size>
  2157. </property>
  2158. <property name="maximumSize">
  2159. <size>
  2160. <width>50</width>
  2161. <height>25</height>
  2162. </size>
  2163. </property>
  2164. <property name="toolTip">
  2165. <string>Ligne</string>
  2166. </property>
  2167. <property name="text">
  2168. <string>...</string>
  2169. </property>
  2170. <property name="icon">
  2171. <iconset resource="ressource.qrc">
  2172. <normaloff>:/interface/16/ressource/ligne_16.png</normaloff>:/interface/16/ressource/ligne_16.png</iconset>
  2173. </property>
  2174. <property name="iconSize">
  2175. <size>
  2176. <width>18</width>
  2177. <height>18</height>
  2178. </size>
  2179. </property>
  2180. </widget>
  2181. <widget class="QToolButton" name="cp_formeSimple">
  2182. <property name="geometry">
  2183. <rect>
  2184. <x>0</x>
  2185. <y>0</y>
  2186. <width>50</width>
  2187. <height>25</height>
  2188. </rect>
  2189. </property>
  2190. <property name="minimumSize">
  2191. <size>
  2192. <width>50</width>
  2193. <height>25</height>
  2194. </size>
  2195. </property>
  2196. <property name="maximumSize">
  2197. <size>
  2198. <width>50</width>
  2199. <height>25</height>
  2200. </size>
  2201. </property>
  2202. <property name="toolTip">
  2203. <string>Ligne</string>
  2204. </property>
  2205. <property name="text">
  2206. <string>...</string>
  2207. </property>
  2208. <property name="icon">
  2209. <iconset resource="ressource.qrc">
  2210. <normaloff>:/interface/16/ressource/pinceau_16.png</normaloff>:/interface/16/ressource/pinceau_16.png</iconset>
  2211. </property>
  2212. <property name="iconSize">
  2213. <size>
  2214. <width>18</width>
  2215. <height>18</height>
  2216. </size>
  2217. </property>
  2218. </widget>
  2219. <widget class="QSlider" name="cp_epaisseurPinceau">
  2220. <property name="geometry">
  2221. <rect>
  2222. <x>38</x>
  2223. <y>55</y>
  2224. <width>91</width>
  2225. <height>20</height>
  2226. </rect>
  2227. </property>
  2228. <property name="minimumSize">
  2229. <size>
  2230. <width>91</width>
  2231. <height>20</height>
  2232. </size>
  2233. </property>
  2234. <property name="maximumSize">
  2235. <size>
  2236. <width>91</width>
  2237. <height>20</height>
  2238. </size>
  2239. </property>
  2240. <property name="minimum">
  2241. <number>1</number>
  2242. </property>
  2243. <property name="maximum">
  2244. <number>5</number>
  2245. </property>
  2246. <property name="value">
  2247. <number>1</number>
  2248. </property>
  2249. <property name="orientation">
  2250. <enum>Qt::Horizontal</enum>
  2251. </property>
  2252. </widget>
  2253. <widget class="QToolButton" name="cp_formePot">
  2254. <property name="geometry">
  2255. <rect>
  2256. <x>0</x>
  2257. <y>25</y>
  2258. <width>50</width>
  2259. <height>25</height>
  2260. </rect>
  2261. </property>
  2262. <property name="minimumSize">
  2263. <size>
  2264. <width>50</width>
  2265. <height>25</height>
  2266. </size>
  2267. </property>
  2268. <property name="maximumSize">
  2269. <size>
  2270. <width>50</width>
  2271. <height>25</height>
  2272. </size>
  2273. </property>
  2274. <property name="toolTip">
  2275. <string>Frontière</string>
  2276. </property>
  2277. <property name="statusTip">
  2278. <string/>
  2279. </property>
  2280. <property name="text">
  2281. <string>...</string>
  2282. </property>
  2283. <property name="icon">
  2284. <iconset resource="ressource.qrc">
  2285. <normaloff>:/interface/16/ressource/potPeinture_16.png</normaloff>:/interface/16/ressource/potPeinture_16.png</iconset>
  2286. </property>
  2287. <property name="iconSize">
  2288. <size>
  2289. <width>18</width>
  2290. <height>18</height>
  2291. </size>
  2292. </property>
  2293. </widget>
  2294. </widget>
  2295. </item>
  2296. <item>
  2297. <widget class="QTabWidget" name="cp_ongletsListes">
  2298. <property name="minimumSize">
  2299. <size>
  2300. <width>154</width>
  2301. <height>0</height>
  2302. </size>
  2303. </property>
  2304. <property name="maximumSize">
  2305. <size>
  2306. <width>154</width>
  2307. <height>16777215</height>
  2308. </size>
  2309. </property>
  2310. <property name="palette">
  2311. <palette>
  2312. <active>
  2313. <colorrole role="Base">
  2314. <brush brushstyle="SolidPattern">
  2315. <color alpha="255">
  2316. <red>248</red>
  2317. <green>248</green>
  2318. <blue>248</blue>
  2319. </color>
  2320. </brush>
  2321. </colorrole>
  2322. </active>
  2323. <inactive>
  2324. <colorrole role="Base">
  2325. <brush brushstyle="SolidPattern">
  2326. <color alpha="255">
  2327. <red>248</red>
  2328. <green>248</green>
  2329. <blue>248</blue>
  2330. </color>
  2331. </brush>
  2332. </colorrole>
  2333. </inactive>
  2334. <disabled>
  2335. <colorrole role="Base">
  2336. <brush brushstyle="SolidPattern">
  2337. <color alpha="255">
  2338. <red>240</red>
  2339. <green>240</green>
  2340. <blue>240</blue>
  2341. </color>
  2342. </brush>
  2343. </colorrole>
  2344. </disabled>
  2345. </palette>
  2346. </property>
  2347. <property name="currentIndex">
  2348. <number>1</number>
  2349. </property>
  2350. <widget class="QWidget" name="cp_afficherTerrains">
  2351. <attribute name="icon">
  2352. <iconset resource="ressource.qrc">
  2353. <normaloff>:/interface/32/ressource/montagne_32.png</normaloff>:/interface/32/ressource/montagne_32.png</iconset>
  2354. </attribute>
  2355. <attribute name="title">
  2356. <string/>
  2357. </attribute>
  2358. <attribute name="toolTip">
  2359. <string>Afficher la liste des terrains</string>
  2360. </attribute>
  2361. <layout class="QVBoxLayout" name="verticalLayout_4">
  2362. <property name="spacing">
  2363. <number>3</number>
  2364. </property>
  2365. <item>
  2366. <widget class="DmTableMat" name="cp_listeTerrains">
  2367. <property name="minimumSize">
  2368. <size>
  2369. <width>81</width>
  2370. <height>0</height>
  2371. </size>
  2372. </property>
  2373. <property name="horizontalScrollBarPolicy">
  2374. <enum>Qt::ScrollBarAlwaysOff</enum>
  2375. </property>
  2376. <property name="editTriggers">
  2377. <set>QAbstractItemView::AnyKeyPressed|QAbstractItemView::DoubleClicked</set>
  2378. </property>
  2379. <property name="iconSize">
  2380. <size>
  2381. <width>2</width>
  2382. <height>2</height>
  2383. </size>
  2384. </property>
  2385. <property name="textElideMode">
  2386. <enum>Qt::ElideMiddle</enum>
  2387. </property>
  2388. <property name="columnCount">
  2389. <number>2</number>
  2390. </property>
  2391. <attribute name="horizontalHeaderVisible">
  2392. <bool>false</bool>
  2393. </attribute>
  2394. <attribute name="verticalHeaderVisible">
  2395. <bool>false</bool>
  2396. </attribute>
  2397. <column>
  2398. <property name="text">
  2399. <string>code</string>
  2400. </property>
  2401. </column>
  2402. <column>
  2403. <property name="text">
  2404. <string>Terrain</string>
  2405. </property>
  2406. <property name="font">
  2407. <font>
  2408. <pointsize>9</pointsize>
  2409. </font>
  2410. </property>
  2411. </column>
  2412. </widget>
  2413. </item>
  2414. <item>
  2415. <layout class="QHBoxLayout" name="horizontalLayout_4">
  2416. <property name="topMargin">
  2417. <number>0</number>
  2418. </property>
  2419. <item>
  2420. <widget class="QToolButton" name="cp_importTerrain">
  2421. <property name="text">
  2422. <string>...</string>
  2423. </property>
  2424. <property name="icon">
  2425. <iconset resource="ressource.qrc">
  2426. <normaloff>:/interface/16/ressource/import_16.png</normaloff>:/interface/16/ressource/import_16.png</iconset>
  2427. </property>
  2428. </widget>
  2429. </item>
  2430. <item>
  2431. <spacer name="horizontalSpacer_5">
  2432. <property name="orientation">
  2433. <enum>Qt::Horizontal</enum>
  2434. </property>
  2435. <property name="sizeHint" stdset="0">
  2436. <size>
  2437. <width>40</width>
  2438. <height>20</height>
  2439. </size>
  2440. </property>
  2441. </spacer>
  2442. </item>
  2443. <item>
  2444. <widget class="QToolButton" name="cp_nouveauTerrain">
  2445. <property name="text">
  2446. <string/>
  2447. </property>
  2448. <property name="icon">
  2449. <iconset resource="ressource.qrc">
  2450. <normaloff>:/interface/16/ressource/plus_16.png</normaloff>:/interface/16/ressource/plus_16.png</iconset>
  2451. </property>
  2452. </widget>
  2453. </item>
  2454. <item>
  2455. <widget class="QToolButton" name="cp_editerTerrain">
  2456. <property name="text">
  2457. <string/>
  2458. </property>
  2459. <property name="icon">
  2460. <iconset resource="ressource.qrc">
  2461. <normaloff>:/interface/16/ressource/editer_16.png</normaloff>:/interface/16/ressource/editer_16.png</iconset>
  2462. </property>
  2463. </widget>
  2464. </item>
  2465. <item>
  2466. <widget class="QToolButton" name="cp_retirerTerrain">
  2467. <property name="text">
  2468. <string>...</string>
  2469. </property>
  2470. <property name="icon">
  2471. <iconset resource="ressource.qrc">
  2472. <normaloff>:/interface/16/ressource/moins_16.png</normaloff>:/interface/16/ressource/moins_16.png</iconset>
  2473. </property>
  2474. </widget>
  2475. </item>
  2476. </layout>
  2477. </item>
  2478. </layout>
  2479. </widget>
  2480. <widget class="QWidget" name="cp_afficherDecors">
  2481. <attribute name="icon">
  2482. <iconset resource="ressource.qrc">
  2483. <normaloff>:/interface/32/ressource/decor_32.png</normaloff>:/interface/32/ressource/decor_32.png</iconset>
  2484. </attribute>
  2485. <attribute name="title">
  2486. <string/>
  2487. </attribute>
  2488. <attribute name="toolTip">
  2489. <string>Afficher la liste des décors</string>
  2490. </attribute>
  2491. <layout class="QVBoxLayout" name="verticalLayout_7">
  2492. <property name="spacing">
  2493. <number>3</number>
  2494. </property>
  2495. <item>
  2496. <widget class="DmTableMat" name="cp_listeDecors">
  2497. <property name="minimumSize">
  2498. <size>
  2499. <width>81</width>
  2500. <height>0</height>
  2501. </size>
  2502. </property>
  2503. <property name="editTriggers">
  2504. <set>QAbstractItemView::AnyKeyPressed|QAbstractItemView::DoubleClicked</set>
  2505. </property>
  2506. <property name="iconSize">
  2507. <size>
  2508. <width>2</width>
  2509. <height>2</height>
  2510. </size>
  2511. </property>
  2512. <property name="columnCount">
  2513. <number>2</number>
  2514. </property>
  2515. <attribute name="horizontalHeaderVisible">
  2516. <bool>false</bool>
  2517. </attribute>
  2518. <attribute name="verticalHeaderVisible">
  2519. <bool>false</bool>
  2520. </attribute>
  2521. <column>
  2522. <property name="text">
  2523. <string>code</string>
  2524. </property>
  2525. </column>
  2526. <column>
  2527. <property name="text">
  2528. <string>Decor</string>
  2529. </property>
  2530. <property name="font">
  2531. <font>
  2532. <pointsize>9</pointsize>
  2533. </font>
  2534. </property>
  2535. </column>
  2536. </widget>
  2537. </item>
  2538. <item>
  2539. <layout class="QHBoxLayout" name="horizontalLayout_7">
  2540. <property name="topMargin">
  2541. <number>0</number>
  2542. </property>
  2543. <item>
  2544. <widget class="QToolButton" name="cp_importDecor">
  2545. <property name="text">
  2546. <string>...</string>
  2547. </property>
  2548. <property name="icon">
  2549. <iconset resource="ressource.qrc">
  2550. <normaloff>:/interface/16/ressource/import_16.png</normaloff>:/interface/16/ressource/import_16.png</iconset>
  2551. </property>
  2552. </widget>
  2553. </item>
  2554. <item>
  2555. <spacer name="horizontalSpacer_6">
  2556. <property name="orientation">
  2557. <enum>Qt::Horizontal</enum>
  2558. </property>
  2559. <property name="sizeHint" stdset="0">
  2560. <size>
  2561. <width>40</width>
  2562. <height>20</height>
  2563. </size>
  2564. </property>
  2565. </spacer>
  2566. </item>
  2567. <item>
  2568. <widget class="QToolButton" name="cp_nouveauDecor">
  2569. <property name="text">
  2570. <string/>
  2571. </property>
  2572. <property name="icon">
  2573. <iconset resource="ressource.qrc">
  2574. <normaloff>:/interface/16/ressource/plus_16.png</normaloff>:/interface/16/ressource/plus_16.png</iconset>
  2575. </property>
  2576. </widget>
  2577. </item>
  2578. <item>
  2579. <widget class="QToolButton" name="cp_editerDecor">
  2580. <property name="text">
  2581. <string/>
  2582. </property>
  2583. <property name="icon">
  2584. <iconset resource="ressource.qrc">
  2585. <normaloff>:/interface/16/ressource/editer_16.png</normaloff>:/interface/16/ressource/editer_16.png</iconset>
  2586. </property>
  2587. </widget>
  2588. </item>
  2589. <item>
  2590. <widget class="QToolButton" name="cp_retirerDecor">
  2591. <property name="text">
  2592. <string/>
  2593. </property>
  2594. <property name="icon">
  2595. <iconset resource="ressource.qrc">
  2596. <normaloff>:/interface/16/ressource/moins_16.png</normaloff>:/interface/16/ressource/moins_16.png</iconset>
  2597. </property>
  2598. </widget>
  2599. </item>
  2600. </layout>
  2601. </item>
  2602. </layout>
  2603. </widget>
  2604. <widget class="QWidget" name="cp_afficherCreatures">
  2605. <attribute name="icon">
  2606. <iconset resource="ressource.qrc">
  2607. <normaloff>:/interface/32/ressource/creature_32.png</normaloff>:/interface/32/ressource/creature_32.png</iconset>
  2608. </attribute>
  2609. <attribute name="title">
  2610. <string/>
  2611. </attribute>
  2612. <attribute name="toolTip">
  2613. <string>Afficher la liste des créatures</string>
  2614. </attribute>
  2615. <layout class="QVBoxLayout" name="verticalLayout_6">
  2616. <property name="spacing">
  2617. <number>3</number>
  2618. </property>
  2619. <item>
  2620. <widget class="DmTableMat" name="cp_listeCreatures">
  2621. <property name="minimumSize">
  2622. <size>
  2623. <width>81</width>
  2624. <height>0</height>
  2625. </size>
  2626. </property>
  2627. <property name="editTriggers">
  2628. <set>QAbstractItemView::AnyKeyPressed|QAbstractItemView::DoubleClicked</set>
  2629. </property>
  2630. <property name="iconSize">
  2631. <size>
  2632. <width>2</width>
  2633. <height>2</height>
  2634. </size>
  2635. </property>
  2636. <property name="columnCount">
  2637. <number>2</number>
  2638. </property>
  2639. <attribute name="horizontalHeaderVisible">
  2640. <bool>false</bool>
  2641. </attribute>
  2642. <attribute name="verticalHeaderVisible">
  2643. <bool>false</bool>
  2644. </attribute>
  2645. <column>
  2646. <property name="text">
  2647. <string>code</string>
  2648. </property>
  2649. </column>
  2650. <column>
  2651. <property name="text">
  2652. <string>Creature</string>
  2653. </property>
  2654. <property name="font">
  2655. <font>
  2656. <pointsize>9</pointsize>
  2657. </font>
  2658. </property>
  2659. </column>
  2660. </widget>
  2661. </item>
  2662. <item>
  2663. <layout class="QHBoxLayout" name="horizontalLayout_8">
  2664. <property name="topMargin">
  2665. <number>0</number>
  2666. </property>
  2667. <item>
  2668. <widget class="QToolButton" name="cp_importCombattant">
  2669. <property name="minimumSize">
  2670. <size>
  2671. <width>23</width>
  2672. <height>22</height>
  2673. </size>
  2674. </property>
  2675. <property name="maximumSize">
  2676. <size>
  2677. <width>23</width>
  2678. <height>22</height>
  2679. </size>
  2680. </property>
  2681. <property name="text">
  2682. <string>...</string>
  2683. </property>
  2684. <property name="icon">
  2685. <iconset resource="ressource.qrc">
  2686. <normaloff>:/interface/16/ressource/import_16.png</normaloff>:/interface/16/ressource/import_16.png</iconset>
  2687. </property>
  2688. </widget>
  2689. </item>
  2690. <item>
  2691. <spacer name="horizontalSpacer_7">
  2692. <property name="orientation">
  2693. <enum>Qt::Horizontal</enum>
  2694. </property>
  2695. <property name="sizeHint" stdset="0">
  2696. <size>
  2697. <width>40</width>
  2698. <height>20</height>
  2699. </size>
  2700. </property>
  2701. </spacer>
  2702. </item>
  2703. <item>
  2704. <widget class="QToolButton" name="cp_nouveauCombattant">
  2705. <property name="text">
  2706. <string/>
  2707. </property>
  2708. <property name="icon">
  2709. <iconset resource="ressource.qrc">
  2710. <normaloff>:/interface/16/ressource/plus_16.png</normaloff>:/interface/16/ressource/plus_16.png</iconset>
  2711. </property>
  2712. </widget>
  2713. </item>
  2714. <item>
  2715. <widget class="QToolButton" name="cp_editerCombattant">
  2716. <property name="text">
  2717. <string/>
  2718. </property>
  2719. <property name="icon">
  2720. <iconset resource="ressource.qrc">
  2721. <normaloff>:/interface/16/ressource/editer_16.png</normaloff>:/interface/16/ressource/editer_16.png</iconset>
  2722. </property>
  2723. </widget>
  2724. </item>
  2725. <item>
  2726. <widget class="QToolButton" name="cp_retirerCombattant">
  2727. <property name="text">
  2728. <string/>
  2729. </property>
  2730. <property name="icon">
  2731. <iconset resource="ressource.qrc">
  2732. <normaloff>:/interface/16/ressource/moins_16.png</normaloff>:/interface/16/ressource/moins_16.png</iconset>
  2733. </property>
  2734. </widget>
  2735. </item>
  2736. </layout>
  2737. </item>
  2738. </layout>
  2739. </widget>
  2740. </widget>
  2741. </item>
  2742. <item>
  2743. <widget class="QFrame" name="creationPlateau_sousPanneauBas">
  2744. <property name="minimumSize">
  2745. <size>
  2746. <width>154</width>
  2747. <height>81</height>
  2748. </size>
  2749. </property>
  2750. <property name="maximumSize">
  2751. <size>
  2752. <width>154</width>
  2753. <height>81</height>
  2754. </size>
  2755. </property>
  2756. <property name="frameShape">
  2757. <enum>QFrame::StyledPanel</enum>
  2758. </property>
  2759. <property name="frameShadow">
  2760. <enum>QFrame::Raised</enum>
  2761. </property>
  2762. <layout class="QGridLayout" name="gridLayout_3">
  2763. <property name="leftMargin">
  2764. <number>3</number>
  2765. </property>
  2766. <property name="topMargin">
  2767. <number>3</number>
  2768. </property>
  2769. <property name="rightMargin">
  2770. <number>3</number>
  2771. </property>
  2772. <property name="bottomMargin">
  2773. <number>3</number>
  2774. </property>
  2775. <property name="spacing">
  2776. <number>3</number>
  2777. </property>
  2778. <item row="2" column="1">
  2779. <widget class="QToolButton" name="cp_placerEntree">
  2780. <property name="minimumSize">
  2781. <size>
  2782. <width>31</width>
  2783. <height>31</height>
  2784. </size>
  2785. </property>
  2786. <property name="maximumSize">
  2787. <size>
  2788. <width>31</width>
  2789. <height>31</height>
  2790. </size>
  2791. </property>
  2792. <property name="toolTip">
  2793. <string>Placer la/les entrée(s)</string>
  2794. </property>
  2795. <property name="text">
  2796. <string>...</string>
  2797. </property>
  2798. <property name="icon">
  2799. <iconset resource="ressource.qrc">
  2800. <normaloff>:/interface/16/ressource/entree_16.png</normaloff>:/interface/16/ressource/entree_16.png</iconset>
  2801. </property>
  2802. </widget>
  2803. </item>
  2804. <item row="0" column="5">
  2805. <widget class="QToolButton" name="cp_gomme">
  2806. <property name="minimumSize">
  2807. <size>
  2808. <width>31</width>
  2809. <height>31</height>
  2810. </size>
  2811. </property>
  2812. <property name="maximumSize">
  2813. <size>
  2814. <width>31</width>
  2815. <height>16777215</height>
  2816. </size>
  2817. </property>
  2818. <property name="text">
  2819. <string>...</string>
  2820. </property>
  2821. <property name="icon">
  2822. <iconset resource="ressource.qrc">
  2823. <normaloff>:/interface/16/ressource/gomme_16.png</normaloff>:/interface/16/ressource/gomme_16.png</iconset>
  2824. </property>
  2825. </widget>
  2826. </item>
  2827. <item row="0" column="4">
  2828. <widget class="QToolButton" name="cp_placerPiege">
  2829. <property name="minimumSize">
  2830. <size>
  2831. <width>31</width>
  2832. <height>31</height>
  2833. </size>
  2834. </property>
  2835. <property name="maximumSize">
  2836. <size>
  2837. <width>31</width>
  2838. <height>16777215</height>
  2839. </size>
  2840. </property>
  2841. <property name="text">
  2842. <string>...</string>
  2843. </property>
  2844. <property name="icon">
  2845. <iconset resource="ressource.qrc">
  2846. <normaloff>:/interface/16/ressource/piege_16.png</normaloff>:/interface/16/ressource/piege_16.png</iconset>
  2847. </property>
  2848. </widget>
  2849. </item>
  2850. <item row="2" column="2">
  2851. <widget class="QToolButton" name="cp_placerSortie">
  2852. <property name="minimumSize">
  2853. <size>
  2854. <width>31</width>
  2855. <height>31</height>
  2856. </size>
  2857. </property>
  2858. <property name="maximumSize">
  2859. <size>
  2860. <width>31</width>
  2861. <height>31</height>
  2862. </size>
  2863. </property>
  2864. <property name="toolTip">
  2865. <string>Placer la/les sortie(s)</string>
  2866. </property>
  2867. <property name="text">
  2868. <string>...</string>
  2869. </property>
  2870. <property name="icon">
  2871. <iconset resource="ressource.qrc">
  2872. <normaloff>:/interface/16/ressource/sortie_16.png</normaloff>:/interface/16/ressource/sortie_16.png</iconset>
  2873. </property>
  2874. </widget>
  2875. </item>
  2876. <item row="0" column="1">
  2877. <widget class="QComboBox" name="cp_effets">
  2878. <property name="minimumSize">
  2879. <size>
  2880. <width>31</width>
  2881. <height>31</height>
  2882. </size>
  2883. </property>
  2884. <property name="maximumSize">
  2885. <size>
  2886. <width>31</width>
  2887. <height>31</height>
  2888. </size>
  2889. </property>
  2890. <property name="toolTip">
  2891. <string>Effets spéciaux</string>
  2892. </property>
  2893. <property name="iconSize">
  2894. <size>
  2895. <width>12</width>
  2896. <height>12</height>
  2897. </size>
  2898. </property>
  2899. <item>
  2900. <property name="text">
  2901. <string/>
  2902. </property>
  2903. <property name="icon">
  2904. <iconset resource="ressource.qrc">
  2905. <normaloff>:/interface/16/ressource/feu_16.png</normaloff>:/interface/16/ressource/feu_16.png</iconset>
  2906. </property>
  2907. </item>
  2908. <item>
  2909. <property name="text">
  2910. <string/>
  2911. </property>
  2912. <property name="icon">
  2913. <iconset resource="ressource.qrc">
  2914. <normaloff>:/interface/16/ressource/eau_16.png</normaloff>:/interface/16/ressource/eau_16.png</iconset>
  2915. </property>
  2916. </item>
  2917. <item>
  2918. <property name="text">
  2919. <string/>
  2920. </property>
  2921. <property name="icon">
  2922. <iconset resource="ressource.qrc">
  2923. <normaloff>:/interface/16/ressource/glace_16.png</normaloff>:/interface/16/ressource/glace_16.png</iconset>
  2924. </property>
  2925. </item>
  2926. <item>
  2927. <property name="text">
  2928. <string/>
  2929. </property>
  2930. <property name="icon">
  2931. <iconset resource="ressource.qrc">
  2932. <normaloff>:/interface/16/ressource/poison_16.png</normaloff>:/interface/16/ressource/poison_16.png</iconset>
  2933. </property>
  2934. </item>
  2935. <item>
  2936. <property name="text">
  2937. <string/>
  2938. </property>
  2939. <property name="icon">
  2940. <iconset resource="ressource.qrc">
  2941. <normaloff>:/interface/16/ressource/gomme_16.png</normaloff>:/interface/16/ressource/gomme_16.png</iconset>
  2942. </property>
  2943. </item>
  2944. </widget>
  2945. </item>
  2946. <item row="2" column="4">
  2947. <widget class="QToolButton" name="cp_defPlacement">
  2948. <property name="minimumSize">
  2949. <size>
  2950. <width>31</width>
  2951. <height>31</height>
  2952. </size>
  2953. </property>
  2954. <property name="maximumSize">
  2955. <size>
  2956. <width>31</width>
  2957. <height>31</height>
  2958. </size>
  2959. </property>
  2960. <property name="toolTip">
  2961. <string>Définir la zone de placement des joueurs</string>
  2962. </property>
  2963. <property name="text">
  2964. <string>...</string>
  2965. </property>
  2966. <property name="icon">
  2967. <iconset resource="ressource.qrc">
  2968. <normaloff>:/interface/16/ressource/depart_16.png</normaloff>:/interface/16/ressource/depart_16.png</iconset>
  2969. </property>
  2970. </widget>
  2971. </item>
  2972. <item row="0" column="2">
  2973. <widget class="QToolButton" name="cp_placerCache">
  2974. <property name="minimumSize">
  2975. <size>
  2976. <width>31</width>
  2977. <height>31</height>
  2978. </size>
  2979. </property>
  2980. <property name="maximumSize">
  2981. <size>
  2982. <width>31</width>
  2983. <height>31</height>
  2984. </size>
  2985. </property>
  2986. <property name="text">
  2987. <string>...</string>
  2988. </property>
  2989. <property name="icon">
  2990. <iconset resource="ressource.qrc">
  2991. <normaloff>:/interface/32/ressource/mainCache_32.png</normaloff>:/interface/32/ressource/mainCache_32.png</iconset>
  2992. </property>
  2993. </widget>
  2994. </item>
  2995. <item row="2" column="5">
  2996. <widget class="QToolButton" name="cp_afficherNotes">
  2997. <property name="minimumSize">
  2998. <size>
  2999. <width>31</width>
  3000. <height>31</height>
  3001. </size>
  3002. </property>
  3003. <property name="maximumSize">
  3004. <size>
  3005. <width>31</width>
  3006. <height>31</height>
  3007. </size>
  3008. </property>
  3009. <property name="toolTip">
  3010. <string>Gérer les caches</string>
  3011. </property>
  3012. <property name="text">
  3013. <string>...</string>
  3014. </property>
  3015. <property name="icon">
  3016. <iconset resource="ressource.qrc">
  3017. <normaloff>:/interface/32/ressource/note_32.png</normaloff>:/interface/32/ressource/note_32.png</iconset>
  3018. </property>
  3019. </widget>
  3020. </item>
  3021. </layout>
  3022. </widget>
  3023. </item>
  3024. <item>
  3025. <widget class="QCheckBox" name="cp_gererAlt">
  3026. <property name="font">
  3027. <font>
  3028. <pointsize>7</pointsize>
  3029. <italic>true</italic>
  3030. </font>
  3031. </property>
  3032. <property name="text">
  3033. <string>Gérer les altitudes</string>
  3034. </property>
  3035. </widget>
  3036. </item>
  3037. </layout>
  3038. <zorder>cp_ongletsListes</zorder>
  3039. <zorder>creationPlateau_sousPanneauBas</zorder>
  3040. <zorder>cP_boiteFormes</zorder>
  3041. <zorder>cp_boiteCouleurs</zorder>
  3042. <zorder>cp_gererAlt</zorder>
  3043. </widget>
  3044. </item>
  3045. </layout>
  3046. </widget>
  3047. <widget class="QWidget" name="cbt_panneauDroite2">
  3048. <widget class="QFrame" name="pi_panneau">
  3049. <property name="geometry">
  3050. <rect>
  3051. <x>0</x>
  3052. <y>0</y>
  3053. <width>170</width>
  3054. <height>501</height>
  3055. </rect>
  3056. </property>
  3057. <property name="minimumSize">
  3058. <size>
  3059. <width>170</width>
  3060. <height>0</height>
  3061. </size>
  3062. </property>
  3063. <property name="maximumSize">
  3064. <size>
  3065. <width>170</width>
  3066. <height>16777215</height>
  3067. </size>
  3068. </property>
  3069. <property name="autoFillBackground">
  3070. <bool>true</bool>
  3071. </property>
  3072. <property name="frameShape">
  3073. <enum>QFrame::StyledPanel</enum>
  3074. </property>
  3075. <property name="frameShadow">
  3076. <enum>QFrame::Raised</enum>
  3077. </property>
  3078. <layout class="QVBoxLayout" name="verticalLayout_10">
  3079. <property name="leftMargin">
  3080. <number>5</number>
  3081. </property>
  3082. <property name="topMargin">
  3083. <number>5</number>
  3084. </property>
  3085. <property name="rightMargin">
  3086. <number>5</number>
  3087. </property>
  3088. <property name="bottomMargin">
  3089. <number>5</number>
  3090. </property>
  3091. <item>
  3092. <widget class="QPushButton" name="pi_fiche">
  3093. <property name="minimumSize">
  3094. <size>
  3095. <width>0</width>
  3096. <height>50</height>
  3097. </size>
  3098. </property>
  3099. <property name="maximumSize">
  3100. <size>
  3101. <width>16777215</width>
  3102. <height>50</height>
  3103. </size>
  3104. </property>
  3105. <property name="text">
  3106. <string>Voir la fiche</string>
  3107. </property>
  3108. </widget>
  3109. </item>
  3110. <item>
  3111. <widget class="QTabWidget" name="pi_ongletsListes">
  3112. <property name="minimumSize">
  3113. <size>
  3114. <width>154</width>
  3115. <height>0</height>
  3116. </size>
  3117. </property>
  3118. <property name="maximumSize">
  3119. <size>
  3120. <width>154</width>
  3121. <height>16777215</height>
  3122. </size>
  3123. </property>
  3124. <property name="currentIndex">
  3125. <number>0</number>
  3126. </property>
  3127. <widget class="QWidget" name="pi_afficherAttributs">
  3128. <attribute name="icon">
  3129. <iconset resource="ressource.qrc">
  3130. <normaloff>:/interface/32/ressource/profil_32.png</normaloff>:/interface/32/ressource/profil_32.png</iconset>
  3131. </attribute>
  3132. <attribute name="title">
  3133. <string/>
  3134. </attribute>
  3135. <layout class="QVBoxLayout" name="verticalLayout_9">
  3136. <item>
  3137. <widget class="QTableWidget" name="pi_listeAttributs">
  3138. <property name="palette">
  3139. <palette>
  3140. <active>
  3141. <colorrole role="Base">
  3142. <brush brushstyle="SolidPattern">
  3143. <color alpha="150">
  3144. <red>255</red>
  3145. <green>255</green>
  3146. <blue>255</blue>
  3147. </color>
  3148. </brush>
  3149. </colorrole>
  3150. </active>
  3151. <inactive>
  3152. <colorrole role="Base">
  3153. <brush brushstyle="SolidPattern">
  3154. <color alpha="150">
  3155. <red>255</red>
  3156. <green>255</green>
  3157. <blue>255</blue>
  3158. </color>
  3159. </brush>
  3160. </colorrole>
  3161. </inactive>
  3162. <disabled>
  3163. <colorrole role="Base">
  3164. <brush brushstyle="SolidPattern">
  3165. <color alpha="255">
  3166. <red>240</red>
  3167. <green>240</green>
  3168. <blue>240</blue>
  3169. </color>
  3170. </brush>
  3171. </colorrole>
  3172. </disabled>
  3173. </palette>
  3174. </property>
  3175. <property name="frameShape">
  3176. <enum>QFrame::WinPanel</enum>
  3177. </property>
  3178. <property name="horizontalScrollBarPolicy">
  3179. <enum>Qt::ScrollBarAlwaysOff</enum>
  3180. </property>
  3181. <property name="editTriggers">
  3182. <set>QAbstractItemView::AllEditTriggers</set>
  3183. </property>
  3184. <property name="alternatingRowColors">
  3185. <bool>true</bool>
  3186. </property>
  3187. <property name="selectionMode">
  3188. <enum>QAbstractItemView::NoSelection</enum>
  3189. </property>
  3190. <property name="showGrid">
  3191. <bool>true</bool>
  3192. </property>
  3193. <attribute name="horizontalHeaderVisible">
  3194. <bool>false</bool>
  3195. </attribute>
  3196. <attribute name="horizontalHeaderDefaultSectionSize">
  3197. <number>50</number>
  3198. </attribute>
  3199. <attribute name="verticalHeaderVisible">
  3200. <bool>false</bool>
  3201. </attribute>
  3202. <column>
  3203. <property name="text">
  3204. <string>Id</string>
  3205. </property>
  3206. </column>
  3207. <column>
  3208. <property name="text">
  3209. <string>Valeur</string>
  3210. </property>
  3211. </column>
  3212. </widget>
  3213. </item>
  3214. </layout>
  3215. </widget>
  3216. <widget class="QWidget" name="pi_afficherAttaques">
  3217. <attribute name="icon">
  3218. <iconset resource="ressource.qrc">
  3219. <normaloff>:/interface/32/ressource/attaque_32.png</normaloff>:/interface/32/ressource/attaque_32.png</iconset>
  3220. </attribute>
  3221. <attribute name="title">
  3222. <string/>
  3223. </attribute>
  3224. <widget class="QGroupBox" name="pi_panneauAttaqueEC">
  3225. <property name="geometry">
  3226. <rect>
  3227. <x>2</x>
  3228. <y>140</y>
  3229. <width>143</width>
  3230. <height>221</height>
  3231. </rect>
  3232. </property>
  3233. <property name="minimumSize">
  3234. <size>
  3235. <width>143</width>
  3236. <height>0</height>
  3237. </size>
  3238. </property>
  3239. <property name="maximumSize">
  3240. <size>
  3241. <width>143</width>
  3242. <height>16777215</height>
  3243. </size>
  3244. </property>
  3245. <property name="title">
  3246. <string/>
  3247. </property>
  3248. <widget class="QTextEdit" name="pi_notesAttaqueEC">
  3249. <property name="geometry">
  3250. <rect>
  3251. <x>4</x>
  3252. <y>150</y>
  3253. <width>135</width>
  3254. <height>61</height>
  3255. </rect>
  3256. </property>
  3257. <property name="minimumSize">
  3258. <size>
  3259. <width>135</width>
  3260. <height>40</height>
  3261. </size>
  3262. </property>
  3263. <property name="maximumSize">
  3264. <size>
  3265. <width>135</width>
  3266. <height>16777215</height>
  3267. </size>
  3268. </property>
  3269. </widget>
  3270. <widget class="QTableWidget" name="pi_listeAttributsAttaqueEC">
  3271. <property name="geometry">
  3272. <rect>
  3273. <x>4</x>
  3274. <y>10</y>
  3275. <width>135</width>
  3276. <height>131</height>
  3277. </rect>
  3278. </property>
  3279. <property name="minimumSize">
  3280. <size>
  3281. <width>135</width>
  3282. <height>81</height>
  3283. </size>
  3284. </property>
  3285. <property name="maximumSize">
  3286. <size>
  3287. <width>135</width>
  3288. <height>16777215</height>
  3289. </size>
  3290. </property>
  3291. <property name="palette">
  3292. <palette>
  3293. <active>
  3294. <colorrole role="Base">
  3295. <brush brushstyle="SolidPattern">
  3296. <color alpha="150">
  3297. <red>255</red>
  3298. <green>255</green>
  3299. <blue>255</blue>
  3300. </color>
  3301. </brush>
  3302. </colorrole>
  3303. </active>
  3304. <inactive>
  3305. <colorrole role="Base">
  3306. <brush brushstyle="SolidPattern">
  3307. <color alpha="150">
  3308. <red>255</red>
  3309. <green>255</green>
  3310. <blue>255</blue>
  3311. </color>
  3312. </brush>
  3313. </colorrole>
  3314. </inactive>
  3315. <disabled>
  3316. <colorrole role="Base">
  3317. <brush brushstyle="SolidPattern">
  3318. <color alpha="255">
  3319. <red>240</red>
  3320. <green>240</green>
  3321. <blue>240</blue>
  3322. </color>
  3323. </brush>
  3324. </colorrole>
  3325. </disabled>
  3326. </palette>
  3327. </property>
  3328. <property name="frameShape">
  3329. <enum>QFrame::WinPanel</enum>
  3330. </property>
  3331. <property name="horizontalScrollBarPolicy">
  3332. <enum>Qt::ScrollBarAlwaysOff</enum>
  3333. </property>
  3334. <property name="editTriggers">
  3335. <set>QAbstractItemView::AllEditTriggers</set>
  3336. </property>
  3337. <property name="alternatingRowColors">
  3338. <bool>true</bool>
  3339. </property>
  3340. <property name="selectionMode">
  3341. <enum>QAbstractItemView::NoSelection</enum>
  3342. </property>
  3343. <property name="showGrid">
  3344. <bool>true</bool>
  3345. </property>
  3346. <attribute name="horizontalHeaderVisible">
  3347. <bool>false</bool>
  3348. </attribute>
  3349. <attribute name="horizontalHeaderDefaultSectionSize">
  3350. <number>50</number>
  3351. </attribute>
  3352. <attribute name="verticalHeaderVisible">
  3353. <bool>false</bool>
  3354. </attribute>
  3355. <column>
  3356. <property name="text">
  3357. <string>Nouvelle colonne</string>
  3358. </property>
  3359. </column>
  3360. <column>
  3361. <property name="text">
  3362. <string>Valeur</string>
  3363. </property>
  3364. </column>
  3365. </widget>
  3366. </widget>
  3367. <widget class="QTableWidget" name="pi_listeAttaques">
  3368. <property name="geometry">
  3369. <rect>
  3370. <x>5</x>
  3371. <y>10</y>
  3372. <width>135</width>
  3373. <height>121</height>
  3374. </rect>
  3375. </property>
  3376. <property name="minimumSize">
  3377. <size>
  3378. <width>135</width>
  3379. <height>100</height>
  3380. </size>
  3381. </property>
  3382. <property name="maximumSize">
  3383. <size>
  3384. <width>135</width>
  3385. <height>16777215</height>
  3386. </size>
  3387. </property>
  3388. <property name="palette">
  3389. <palette>
  3390. <active>
  3391. <colorrole role="Base">
  3392. <brush brushstyle="SolidPattern">
  3393. <color alpha="255">
  3394. <red>247</red>
  3395. <green>247</green>
  3396. <blue>247</blue>
  3397. </color>
  3398. </brush>
  3399. </colorrole>
  3400. <colorrole role="Highlight">
  3401. <brush brushstyle="SolidPattern">
  3402. <color alpha="150">
  3403. <red>255</red>
  3404. <green>170</green>
  3405. <blue>0</blue>
  3406. </color>
  3407. </brush>
  3408. </colorrole>
  3409. <colorrole role="HighlightedText">
  3410. <brush brushstyle="SolidPattern">
  3411. <color alpha="255">
  3412. <red>255</red>
  3413. <green>255</green>
  3414. <blue>255</blue>
  3415. </color>
  3416. </brush>
  3417. </colorrole>
  3418. </active>
  3419. <inactive>
  3420. <colorrole role="Base">
  3421. <brush brushstyle="SolidPattern">
  3422. <color alpha="255">
  3423. <red>247</red>
  3424. <green>247</green>
  3425. <blue>247</blue>
  3426. </color>
  3427. </brush>
  3428. </colorrole>
  3429. <colorrole role="Highlight">
  3430. <brush brushstyle="SolidPattern">
  3431. <color alpha="150">
  3432. <red>255</red>
  3433. <green>170</green>
  3434. <blue>0</blue>
  3435. </color>
  3436. </brush>
  3437. </colorrole>
  3438. <colorrole role="HighlightedText">
  3439. <brush brushstyle="SolidPattern">
  3440. <color alpha="255">
  3441. <red>255</red>
  3442. <green>255</green>
  3443. <blue>255</blue>
  3444. </color>
  3445. </brush>
  3446. </colorrole>
  3447. </inactive>
  3448. <disabled>
  3449. <colorrole role="Base">
  3450. <brush brushstyle="SolidPattern">
  3451. <color alpha="255">
  3452. <red>240</red>
  3453. <green>240</green>
  3454. <blue>240</blue>
  3455. </color>
  3456. </brush>
  3457. </colorrole>
  3458. <colorrole role="Highlight">
  3459. <brush brushstyle="SolidPattern">
  3460. <color alpha="255">
  3461. <red>51</red>
  3462. <green>153</green>
  3463. <blue>255</blue>
  3464. </color>
  3465. </brush>
  3466. </colorrole>
  3467. <colorrole role="HighlightedText">
  3468. <brush brushstyle="SolidPattern">
  3469. <color alpha="255">
  3470. <red>255</red>
  3471. <green>255</green>
  3472. <blue>255</blue>
  3473. </color>
  3474. </brush>
  3475. </colorrole>
  3476. </disabled>
  3477. </palette>
  3478. </property>
  3479. <property name="frameShape">
  3480. <enum>QFrame::Box</enum>
  3481. </property>
  3482. <property name="horizontalScrollBarPolicy">
  3483. <enum>Qt::ScrollBarAlwaysOff</enum>
  3484. </property>
  3485. <property name="editTriggers">
  3486. <set>QAbstractItemView::NoEditTriggers</set>
  3487. </property>
  3488. <property name="alternatingRowColors">
  3489. <bool>true</bool>
  3490. </property>
  3491. <property name="selectionMode">
  3492. <enum>QAbstractItemView::SingleSelection</enum>
  3493. </property>
  3494. <property name="selectionBehavior">
  3495. <enum>QAbstractItemView::SelectRows</enum>
  3496. </property>
  3497. <property name="textElideMode">
  3498. <enum>Qt::ElideMiddle</enum>
  3499. </property>
  3500. <property name="showGrid">
  3501. <bool>false</bool>
  3502. </property>
  3503. <attribute name="horizontalHeaderVisible">
  3504. <bool>false</bool>
  3505. </attribute>
  3506. <attribute name="horizontalHeaderDefaultSectionSize">
  3507. <number>50</number>
  3508. </attribute>
  3509. <attribute name="verticalHeaderVisible">
  3510. <bool>false</bool>
  3511. </attribute>
  3512. <column>
  3513. <property name="text">
  3514. <string>numAttaque</string>
  3515. </property>
  3516. </column>
  3517. <column>
  3518. <property name="text">
  3519. <string>typeAttaque</string>
  3520. </property>
  3521. </column>
  3522. <column>
  3523. <property name="text">
  3524. <string>nomAttaque</string>
  3525. </property>
  3526. </column>
  3527. </widget>
  3528. </widget>
  3529. <widget class="QWidget" name="pi_afficherInventaire">
  3530. <attribute name="icon">
  3531. <iconset resource="ressource.qrc">
  3532. <normaloff>:/interface/16/ressource/sac_16.png</normaloff>:/interface/16/ressource/sac_16.png</iconset>
  3533. </attribute>
  3534. <attribute name="title">
  3535. <string/>
  3536. </attribute>
  3537. </widget>
  3538. <widget class="QWidget" name="pi_afficherNotes">
  3539. <attribute name="icon">
  3540. <iconset resource="ressource.qrc">
  3541. <normaloff>:/interface/32/ressource/note_32.png</normaloff>:/interface/32/ressource/note_32.png</iconset>
  3542. </attribute>
  3543. <attribute name="title">
  3544. <string/>
  3545. </attribute>
  3546. <layout class="QVBoxLayout" name="verticalLayout_8">
  3547. <item>
  3548. <widget class="DmTextEdit" name="pi_notes">
  3549. <property name="documentTitle">
  3550. <string/>
  3551. </property>
  3552. </widget>
  3553. </item>
  3554. </layout>
  3555. </widget>
  3556. </widget>
  3557. </item>
  3558. </layout>
  3559. </widget>
  3560. </widget>
  3561. <widget class="QWidget" name="cbt_panneauDroite3">
  3562. <widget class="DmTableWidget" name="pc_listePJ">
  3563. <property name="geometry">
  3564. <rect>
  3565. <x>10</x>
  3566. <y>300</y>
  3567. <width>151</width>
  3568. <height>171</height>
  3569. </rect>
  3570. </property>
  3571. <property name="palette">
  3572. <palette>
  3573. <active>
  3574. <colorrole role="Base">
  3575. <brush brushstyle="SolidPattern">
  3576. <color alpha="255">
  3577. <red>248</red>
  3578. <green>248</green>
  3579. <blue>248</blue>
  3580. </color>
  3581. </brush>
  3582. </colorrole>
  3583. </active>
  3584. <inactive>
  3585. <colorrole role="Base">
  3586. <brush brushstyle="SolidPattern">
  3587. <color alpha="255">
  3588. <red>248</red>
  3589. <green>248</green>
  3590. <blue>248</blue>
  3591. </color>
  3592. </brush>
  3593. </colorrole>
  3594. </inactive>
  3595. <disabled>
  3596. <colorrole role="Base">
  3597. <brush brushstyle="SolidPattern">
  3598. <color alpha="255">
  3599. <red>240</red>
  3600. <green>240</green>
  3601. <blue>240</blue>
  3602. </color>
  3603. </brush>
  3604. </colorrole>
  3605. </disabled>
  3606. </palette>
  3607. </property>
  3608. <property name="frameShape">
  3609. <enum>QFrame::WinPanel</enum>
  3610. </property>
  3611. <property name="horizontalScrollBarPolicy">
  3612. <enum>Qt::ScrollBarAlwaysOff</enum>
  3613. </property>
  3614. <property name="editTriggers">
  3615. <set>QAbstractItemView::EditKeyPressed</set>
  3616. </property>
  3617. <property name="showDropIndicator" stdset="0">
  3618. <bool>false</bool>
  3619. </property>
  3620. <property name="selectionMode">
  3621. <enum>QAbstractItemView::SingleSelection</enum>
  3622. </property>
  3623. <property name="selectionBehavior">
  3624. <enum>QAbstractItemView::SelectRows</enum>
  3625. </property>
  3626. <property name="iconSize">
  3627. <size>
  3628. <width>32</width>
  3629. <height>32</height>
  3630. </size>
  3631. </property>
  3632. <property name="gridStyle">
  3633. <enum>Qt::NoPen</enum>
  3634. </property>
  3635. <attribute name="horizontalHeaderVisible">
  3636. <bool>false</bool>
  3637. </attribute>
  3638. <attribute name="horizontalHeaderStretchLastSection">
  3639. <bool>true</bool>
  3640. </attribute>
  3641. <attribute name="verticalHeaderVisible">
  3642. <bool>false</bool>
  3643. </attribute>
  3644. <attribute name="verticalHeaderDefaultSectionSize">
  3645. <number>35</number>
  3646. </attribute>
  3647. <column>
  3648. <property name="text">
  3649. <string>idPj</string>
  3650. </property>
  3651. </column>
  3652. <column>
  3653. <property name="text">
  3654. <string>img</string>
  3655. </property>
  3656. </column>
  3657. <column>
  3658. <property name="text">
  3659. <string>nom</string>
  3660. </property>
  3661. </column>
  3662. </widget>
  3663. <widget class="QLabel" name="cbt_presentation">
  3664. <property name="geometry">
  3665. <rect>
  3666. <x>10</x>
  3667. <y>20</y>
  3668. <width>151</width>
  3669. <height>91</height>
  3670. </rect>
  3671. </property>
  3672. <property name="frameShape">
  3673. <enum>QFrame::NoFrame</enum>
  3674. </property>
  3675. <property name="text">
  3676. <string>Texte de présentation...</string>
  3677. </property>
  3678. <property name="alignment">
  3679. <set>Qt::AlignJustify|Qt::AlignTop</set>
  3680. </property>
  3681. </widget>
  3682. <widget class="QLabel" name="label_4">
  3683. <property name="geometry">
  3684. <rect>
  3685. <x>10</x>
  3686. <y>120</y>
  3687. <width>151</width>
  3688. <height>71</height>
  3689. </rect>
  3690. </property>
  3691. <property name="frameShape">
  3692. <enum>QFrame::StyledPanel</enum>
  3693. </property>
  3694. <property name="text">
  3695. <string>Joueurs sur le plateau</string>
  3696. </property>
  3697. </widget>
  3698. </widget>
  3699. </widget>
  3700. </item>
  3701. <item>
  3702. <widget class="QPushButton" name="cbt_etapeSuivante">
  3703. <property name="minimumSize">
  3704. <size>
  3705. <width>0</width>
  3706. <height>50</height>
  3707. </size>
  3708. </property>
  3709. <property name="maximumSize">
  3710. <size>
  3711. <width>1000</width>
  3712. <height>50</height>
  3713. </size>
  3714. </property>
  3715. <property name="font">
  3716. <font>
  3717. <weight>75</weight>
  3718. <bold>true</bold>
  3719. </font>
  3720. </property>
  3721. <property name="text">
  3722. <string>Publier
  3723. le plateau</string>
  3724. </property>
  3725. </widget>
  3726. </item>
  3727. </layout>
  3728. </item>
  3729. </layout>
  3730. </item>
  3731. </layout>
  3732. </item>
  3733. </layout>
  3734. </widget>
  3735. </widget>
  3736. </item>
  3737. </layout>
  3738. </widget>
  3739. <widget class="QWidget" name="Monde_tab">
  3740. <attribute name="title">
  3741. <string>Monde</string>
  3742. </attribute>
  3743. </widget>
  3744. <widget class="QWidget" name="Groupe_tab">
  3745. <attribute name="title">
  3746. <string>Groupe</string>
  3747. </attribute>
  3748. <layout class="QHBoxLayout" name="horizontalLayout_2">
  3749. <item>
  3750. <widget class="QScrollArea" name="grp_deroulement">
  3751. <property name="palette">
  3752. <palette>
  3753. <active>
  3754. <colorrole role="Base">
  3755. <brush brushstyle="SolidPattern">
  3756. <color alpha="255">
  3757. <red>255</red>
  3758. <green>255</green>
  3759. <blue>255</blue>
  3760. </color>
  3761. </brush>
  3762. </colorrole>
  3763. <colorrole role="Window">
  3764. <brush brushstyle="SolidPattern">
  3765. <color alpha="0">
  3766. <red>240</red>
  3767. <green>240</green>
  3768. <blue>240</blue>
  3769. </color>
  3770. </brush>
  3771. </colorrole>
  3772. </active>
  3773. <inactive>
  3774. <colorrole role="Base">
  3775. <brush brushstyle="SolidPattern">
  3776. <color alpha="255">
  3777. <red>255</red>
  3778. <green>255</green>
  3779. <blue>255</blue>
  3780. </color>
  3781. </brush>
  3782. </colorrole>
  3783. <colorrole role="Window">
  3784. <brush brushstyle="SolidPattern">
  3785. <color alpha="0">
  3786. <red>240</red>
  3787. <green>240</green>
  3788. <blue>240</blue>
  3789. </color>
  3790. </brush>
  3791. </colorrole>
  3792. </inactive>
  3793. <disabled>
  3794. <colorrole role="Base">
  3795. <brush brushstyle="SolidPattern">
  3796. <color alpha="0">
  3797. <red>240</red>
  3798. <green>240</green>
  3799. <blue>240</blue>
  3800. </color>
  3801. </brush>
  3802. </colorrole>
  3803. <colorrole role="Window">
  3804. <brush brushstyle="SolidPattern">
  3805. <color alpha="0">
  3806. <red>240</red>
  3807. <green>240</green>
  3808. <blue>240</blue>
  3809. </color>
  3810. </brush>
  3811. </colorrole>
  3812. </disabled>
  3813. </palette>
  3814. </property>
  3815. <property name="font">
  3816. <font>
  3817. <family>Verdana</family>
  3818. </font>
  3819. </property>
  3820. <property name="autoFillBackground">
  3821. <bool>true</bool>
  3822. </property>
  3823. <property name="frameShape">
  3824. <enum>QFrame::NoFrame</enum>
  3825. </property>
  3826. <property name="horizontalScrollBarPolicy">
  3827. <enum>Qt::ScrollBarAlwaysOff</enum>
  3828. </property>
  3829. <property name="widgetResizable">
  3830. <bool>true</bool>
  3831. </property>
  3832. <widget class="QWidget" name="grp_deroulement_contenu">
  3833. <property name="geometry">
  3834. <rect>
  3835. <x>0</x>
  3836. <y>0</y>
  3837. <width>756</width>
  3838. <height>588</height>
  3839. </rect>
  3840. </property>
  3841. <property name="palette">
  3842. <palette>
  3843. <active>
  3844. <colorrole role="WindowText">
  3845. <brush brushstyle="SolidPattern">
  3846. <color alpha="255">
  3847. <red>0</red>
  3848. <green>0</green>
  3849. <blue>0</blue>
  3850. </color>
  3851. </brush>
  3852. </colorrole>
  3853. <colorrole role="Button">
  3854. <brush brushstyle="SolidPattern">
  3855. <color alpha="0">
  3856. <red>0</red>
  3857. <green>0</green>
  3858. <blue>0</blue>
  3859. </color>
  3860. </brush>
  3861. </colorrole>
  3862. <colorrole role="Midlight">
  3863. <brush brushstyle="SolidPattern">
  3864. <color alpha="0">
  3865. <red>227</red>
  3866. <green>227</green>
  3867. <blue>227</blue>
  3868. </color>
  3869. </brush>
  3870. </colorrole>
  3871. <colorrole role="Dark">
  3872. <brush brushstyle="SolidPattern">
  3873. <color alpha="0">
  3874. <red>160</red>
  3875. <green>160</green>
  3876. <blue>160</blue>
  3877. </color>
  3878. </brush>
  3879. </colorrole>
  3880. <colorrole role="Mid">
  3881. <brush brushstyle="SolidPattern">
  3882. <color alpha="0">
  3883. <red>160</red>
  3884. <green>160</green>
  3885. <blue>160</blue>
  3886. </color>
  3887. </brush>
  3888. </colorrole>
  3889. <colorrole role="Text">
  3890. <brush brushstyle="SolidPattern">
  3891. <color alpha="255">
  3892. <red>0</red>
  3893. <green>0</green>
  3894. <blue>0</blue>
  3895. </color>
  3896. </brush>
  3897. </colorrole>
  3898. <colorrole role="ButtonText">
  3899. <brush brushstyle="SolidPattern">
  3900. <color alpha="255">
  3901. <red>0</red>
  3902. <green>0</green>
  3903. <blue>0</blue>
  3904. </color>
  3905. </brush>
  3906. </colorrole>
  3907. <colorrole role="Base">
  3908. <brush brushstyle="SolidPattern">
  3909. <color alpha="0">
  3910. <red>0</red>
  3911. <green>0</green>
  3912. <blue>0</blue>
  3913. </color>
  3914. </brush>
  3915. </colorrole>
  3916. <colorrole role="Window">
  3917. <brush brushstyle="SolidPattern">
  3918. <color alpha="0">
  3919. <red>0</red>
  3920. <green>0</green>
  3921. <blue>0</blue>
  3922. </color>
  3923. </brush>
  3924. </colorrole>
  3925. </active>
  3926. <inactive>
  3927. <colorrole role="WindowText">
  3928. <brush brushstyle="SolidPattern">
  3929. <color alpha="255">
  3930. <red>0</red>
  3931. <green>0</green>
  3932. <blue>0</blue>
  3933. </color>
  3934. </brush>
  3935. </colorrole>
  3936. <colorrole role="Button">
  3937. <brush brushstyle="SolidPattern">
  3938. <color alpha="0">
  3939. <red>0</red>
  3940. <green>0</green>
  3941. <blue>0</blue>
  3942. </color>
  3943. </brush>
  3944. </colorrole>
  3945. <colorrole role="Midlight">
  3946. <brush brushstyle="SolidPattern">
  3947. <color alpha="0">
  3948. <red>227</red>
  3949. <green>227</green>
  3950. <blue>227</blue>
  3951. </color>
  3952. </brush>
  3953. </colorrole>
  3954. <colorrole role="Dark">
  3955. <brush brushstyle="SolidPattern">
  3956. <color alpha="0">
  3957. <red>160</red>
  3958. <green>160</green>
  3959. <blue>160</blue>
  3960. </color>
  3961. </brush>
  3962. </colorrole>
  3963. <colorrole role="Mid">
  3964. <brush brushstyle="SolidPattern">
  3965. <color alpha="0">
  3966. <red>160</red>
  3967. <green>160</green>
  3968. <blue>160</blue>
  3969. </color>
  3970. </brush>
  3971. </colorrole>
  3972. <colorrole role="Text">
  3973. <brush brushstyle="SolidPattern">
  3974. <color alpha="255">
  3975. <red>0</red>
  3976. <green>0</green>
  3977. <blue>0</blue>
  3978. </color>
  3979. </brush>
  3980. </colorrole>
  3981. <colorrole role="ButtonText">
  3982. <brush brushstyle="SolidPattern">
  3983. <color alpha="255">
  3984. <red>0</red>
  3985. <green>0</green>
  3986. <blue>0</blue>
  3987. </color>
  3988. </brush>
  3989. </colorrole>
  3990. <colorrole role="Base">
  3991. <brush brushstyle="SolidPattern">
  3992. <color alpha="0">
  3993. <red>0</red>
  3994. <green>0</green>
  3995. <blue>0</blue>
  3996. </color>
  3997. </brush>
  3998. </colorrole>
  3999. <colorrole role="Window">
  4000. <brush brushstyle="SolidPattern">
  4001. <color alpha="0">
  4002. <red>0</red>
  4003. <green>0</green>
  4004. <blue>0</blue>
  4005. </color>
  4006. </brush>
  4007. </colorrole>
  4008. </inactive>
  4009. <disabled>
  4010. <colorrole role="WindowText">
  4011. <brush brushstyle="SolidPattern">
  4012. <color alpha="0">
  4013. <red>160</red>
  4014. <green>160</green>
  4015. <blue>160</blue>
  4016. </color>
  4017. </brush>
  4018. </colorrole>
  4019. <colorrole role="Button">
  4020. <brush brushstyle="SolidPattern">
  4021. <color alpha="0">
  4022. <red>0</red>
  4023. <green>0</green>
  4024. <blue>0</blue>
  4025. </color>
  4026. </brush>
  4027. </colorrole>
  4028. <colorrole role="Midlight">
  4029. <brush brushstyle="SolidPattern">
  4030. <color alpha="0">
  4031. <red>227</red>
  4032. <green>227</green>
  4033. <blue>227</blue>
  4034. </color>
  4035. </brush>
  4036. </colorrole>
  4037. <colorrole role="Dark">
  4038. <brush brushstyle="SolidPattern">
  4039. <color alpha="0">
  4040. <red>160</red>
  4041. <green>160</green>
  4042. <blue>160</blue>
  4043. </color>
  4044. </brush>
  4045. </colorrole>
  4046. <colorrole role="Mid">
  4047. <brush brushstyle="SolidPattern">
  4048. <color alpha="0">
  4049. <red>160</red>
  4050. <green>160</green>
  4051. <blue>160</blue>
  4052. </color>
  4053. </brush>
  4054. </colorrole>
  4055. <colorrole role="Text">
  4056. <brush brushstyle="SolidPattern">
  4057. <color alpha="0">
  4058. <red>160</red>
  4059. <green>160</green>
  4060. <blue>160</blue>
  4061. </color>
  4062. </brush>
  4063. </colorrole>
  4064. <colorrole role="ButtonText">
  4065. <brush brushstyle="SolidPattern">
  4066. <color alpha="0">
  4067. <red>160</red>
  4068. <green>160</green>
  4069. <blue>160</blue>
  4070. </color>
  4071. </brush>
  4072. </colorrole>
  4073. <colorrole role="Base">
  4074. <brush brushstyle="SolidPattern">
  4075. <color alpha="0">
  4076. <red>0</red>
  4077. <green>0</green>
  4078. <blue>0</blue>
  4079. </color>
  4080. </brush>
  4081. </colorrole>
  4082. <colorrole role="Window">
  4083. <brush brushstyle="SolidPattern">
  4084. <color alpha="0">
  4085. <red>0</red>
  4086. <green>0</green>
  4087. <blue>0</blue>
  4088. </color>
  4089. </brush>
  4090. </colorrole>
  4091. </disabled>
  4092. </palette>
  4093. </property>
  4094. <layout class="QGridLayout" name="grp_deroulement_layout">
  4095. <property name="sizeConstraint">
  4096. <enum>QLayout::SetMaximumSize</enum>
  4097. </property>
  4098. <property name="leftMargin">
  4099. <number>5</number>
  4100. </property>
  4101. <property name="topMargin">
  4102. <number>2</number>
  4103. </property>
  4104. <property name="rightMargin">
  4105. <number>2</number>
  4106. </property>
  4107. <property name="bottomMargin">
  4108. <number>2</number>
  4109. </property>
  4110. </layout>
  4111. </widget>
  4112. </widget>
  4113. </item>
  4114. <item>
  4115. <widget class="QFrame" name="grp_panneauCommande">
  4116. <property name="minimumSize">
  4117. <size>
  4118. <width>50</width>
  4119. <height>50</height>
  4120. </size>
  4121. </property>
  4122. <property name="frameShape">
  4123. <enum>QFrame::StyledPanel</enum>
  4124. </property>
  4125. <property name="frameShadow">
  4126. <enum>QFrame::Raised</enum>
  4127. </property>
  4128. <layout class="QVBoxLayout" name="verticalLayout_12">
  4129. <property name="leftMargin">
  4130. <number>2</number>
  4131. </property>
  4132. <property name="topMargin">
  4133. <number>2</number>
  4134. </property>
  4135. <property name="rightMargin">
  4136. <number>2</number>
  4137. </property>
  4138. <property name="bottomMargin">
  4139. <number>2</number>
  4140. </property>
  4141. <item>
  4142. <spacer name="verticalSpacer">
  4143. <property name="orientation">
  4144. <enum>Qt::Vertical</enum>
  4145. </property>
  4146. <property name="sizeHint" stdset="0">
  4147. <size>
  4148. <width>20</width>
  4149. <height>40</height>
  4150. </size>
  4151. </property>
  4152. </spacer>
  4153. </item>
  4154. <item>
  4155. <widget class="QPushButton" name="grp_nouveauPj">
  4156. <property name="minimumSize">
  4157. <size>
  4158. <width>50</width>
  4159. <height>50</height>
  4160. </size>
  4161. </property>
  4162. <property name="maximumSize">
  4163. <size>
  4164. <width>50</width>
  4165. <height>50</height>
  4166. </size>
  4167. </property>
  4168. <property name="text">
  4169. <string/>
  4170. </property>
  4171. <property name="icon">
  4172. <iconset resource="ressource.qrc">
  4173. <normaloff>:/interface/32/ressource/nouveauJoueur_32.png</normaloff>:/interface/32/ressource/nouveauJoueur_32.png</iconset>
  4174. </property>
  4175. <property name="iconSize">
  4176. <size>
  4177. <width>24</width>
  4178. <height>24</height>
  4179. </size>
  4180. </property>
  4181. </widget>
  4182. </item>
  4183. </layout>
  4184. </widget>
  4185. </item>
  4186. </layout>
  4187. </widget>
  4188. </widget>
  4189. </item>
  4190. <item>
  4191. <widget class="QFrame" name="dm_panneauDroite">
  4192. <property name="minimumSize">
  4193. <size>
  4194. <width>230</width>
  4195. <height>0</height>
  4196. </size>
  4197. </property>
  4198. <property name="maximumSize">
  4199. <size>
  4200. <width>287</width>
  4201. <height>16777215</height>
  4202. </size>
  4203. </property>
  4204. <property name="frameShape">
  4205. <enum>QFrame::StyledPanel</enum>
  4206. </property>
  4207. <property name="frameShadow">
  4208. <enum>QFrame::Raised</enum>
  4209. </property>
  4210. <layout class="QVBoxLayout" name="verticalLayout_11">
  4211. <item>
  4212. <layout class="QVBoxLayout" name="layoutPanneauDroite" stretch="0,0,0,1,10,1,1">
  4213. <property name="sizeConstraint">
  4214. <enum>QLayout::SetFixedSize</enum>
  4215. </property>
  4216. <item>
  4217. <widget class="QLabel" name="label">
  4218. <property name="minimumSize">
  4219. <size>
  4220. <width>199</width>
  4221. <height>13</height>
  4222. </size>
  4223. </property>
  4224. <property name="maximumSize">
  4225. <size>
  4226. <width>259</width>
  4227. <height>16777215</height>
  4228. </size>
  4229. </property>
  4230. <property name="font">
  4231. <font>
  4232. <weight>75</weight>
  4233. <bold>true</bold>
  4234. </font>
  4235. </property>
  4236. <property name="text">
  4237. <string>Evenements</string>
  4238. </property>
  4239. </widget>
  4240. </item>
  4241. <item>
  4242. <widget class="QListWidget" name="listEvenement">
  4243. <property name="sizePolicy">
  4244. <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
  4245. <horstretch>20</horstretch>
  4246. <verstretch>20</verstretch>
  4247. </sizepolicy>
  4248. </property>
  4249. <property name="minimumSize">
  4250. <size>
  4251. <width>199</width>
  4252. <height>73</height>
  4253. </size>
  4254. </property>
  4255. <property name="maximumSize">
  4256. <size>
  4257. <width>259</width>
  4258. <height>16777215</height>
  4259. </size>
  4260. </property>
  4261. </widget>
  4262. </item>
  4263. <item>
  4264. <layout class="QHBoxLayout" name="layoutDes" stretch="1,1,3">
  4265. <property name="spacing">
  4266. <number>3</number>
  4267. </property>
  4268. <property name="sizeConstraint">
  4269. <enum>QLayout::SetMinimumSize</enum>
  4270. </property>
  4271. <property name="leftMargin">
  4272. <number>0</number>
  4273. </property>
  4274. <item>
  4275. <widget class="QPushButton" name="d20">
  4276. <property name="sizePolicy">
  4277. <sizepolicy hsizetype="Ignored" vsizetype="Fixed">
  4278. <horstretch>0</horstretch>
  4279. <verstretch>0</verstretch>
  4280. </sizepolicy>
  4281. </property>
  4282. <property name="minimumSize">
  4283. <size>
  4284. <width>53</width>
  4285. <height>23</height>
  4286. </size>
  4287. </property>
  4288. <property name="maximumSize">
  4289. <size>
  4290. <width>53</width>
  4291. <height>16777215</height>
  4292. </size>
  4293. </property>
  4294. <property name="text">
  4295. <string>D20</string>
  4296. </property>
  4297. <property name="autoDefault">
  4298. <bool>false</bool>
  4299. </property>
  4300. </widget>
  4301. </item>
  4302. <item>
  4303. <widget class="QPushButton" name="d100">
  4304. <property name="sizePolicy">
  4305. <sizepolicy hsizetype="Ignored" vsizetype="Fixed">
  4306. <horstretch>0</horstretch>
  4307. <verstretch>0</verstretch>
  4308. </sizepolicy>
  4309. </property>
  4310. <property name="minimumSize">
  4311. <size>
  4312. <width>52</width>
  4313. <height>23</height>
  4314. </size>
  4315. </property>
  4316. <property name="maximumSize">
  4317. <size>
  4318. <width>52</width>
  4319. <height>16777215</height>
  4320. </size>
  4321. </property>
  4322. <property name="text">
  4323. <string>D100</string>
  4324. </property>
  4325. </widget>
  4326. </item>
  4327. <item>
  4328. <widget class="QLineEdit" name="inJetDes">
  4329. <property name="minimumSize">
  4330. <size>
  4331. <width>86</width>
  4332. <height>20</height>
  4333. </size>
  4334. </property>
  4335. <property name="maximumSize">
  4336. <size>
  4337. <width>146</width>
  4338. <height>16777215</height>
  4339. </size>
  4340. </property>
  4341. <property name="whatsThis">
  4342. <string/>
  4343. </property>
  4344. <property name="inputMask">
  4345. <string/>
  4346. </property>
  4347. <property name="placeholderText">
  4348. <string>Autre lancer (ex: 1d4+6d6)</string>
  4349. </property>
  4350. </widget>
  4351. </item>
  4352. </layout>
  4353. </item>
  4354. <item>
  4355. <layout class="QHBoxLayout" name="layoutEnTeteChat" stretch="1,2">
  4356. <property name="spacing">
  4357. <number>6</number>
  4358. </property>
  4359. <property name="sizeConstraint">
  4360. <enum>QLayout::SetMinimumSize</enum>
  4361. </property>
  4362. <item>
  4363. <widget class="QLabel" name="label_3">
  4364. <property name="minimumSize">
  4365. <size>
  4366. <width>10</width>
  4367. <height>23</height>
  4368. </size>
  4369. </property>
  4370. <property name="maximumSize">
  4371. <size>
  4372. <width>161</width>
  4373. <height>16777215</height>
  4374. </size>
  4375. </property>
  4376. <property name="font">
  4377. <font>
  4378. <weight>75</weight>
  4379. <bold>true</bold>
  4380. </font>
  4381. </property>
  4382. <property name="text">
  4383. <string>Chat</string>
  4384. </property>
  4385. </widget>
  4386. </item>
  4387. <item>
  4388. <widget class="QPushButton" name="chatVoc">
  4389. <property name="sizePolicy">
  4390. <sizepolicy hsizetype="Ignored" vsizetype="Fixed">
  4391. <horstretch>0</horstretch>
  4392. <verstretch>0</verstretch>
  4393. </sizepolicy>
  4394. </property>
  4395. <property name="minimumSize">
  4396. <size>
  4397. <width>64</width>
  4398. <height>23</height>
  4399. </size>
  4400. </property>
  4401. <property name="maximumSize">
  4402. <size>
  4403. <width>90</width>
  4404. <height>16777215</height>
  4405. </size>
  4406. </property>
  4407. <property name="text">
  4408. <string>Chat vocal</string>
  4409. </property>
  4410. </widget>
  4411. </item>
  4412. </layout>
  4413. </item>
  4414. <item>
  4415. <widget class="QListWidget" name="listAffichage">
  4416. <property name="minimumSize">
  4417. <size>
  4418. <width>199</width>
  4419. <height>96</height>
  4420. </size>
  4421. </property>
  4422. <property name="maximumSize">
  4423. <size>
  4424. <width>259</width>
  4425. <height>16777215</height>
  4426. </size>
  4427. </property>
  4428. </widget>
  4429. </item>
  4430. <item>
  4431. <widget class="QLineEdit" name="inChat">
  4432. <property name="minimumSize">
  4433. <size>
  4434. <width>199</width>
  4435. <height>20</height>
  4436. </size>
  4437. </property>
  4438. <property name="maximumSize">
  4439. <size>
  4440. <width>259</width>
  4441. <height>16777215</height>
  4442. </size>
  4443. </property>
  4444. <property name="placeholderText">
  4445. <string>Entrez votre message...</string>
  4446. </property>
  4447. </widget>
  4448. </item>
  4449. <item>
  4450. <widget class="QTabWidget" name="tabStatutAppli">
  4451. <property name="minimumSize">
  4452. <size>
  4453. <width>201</width>
  4454. <height>151</height>
  4455. </size>
  4456. </property>
  4457. <property name="maximumSize">
  4458. <size>
  4459. <width>259</width>
  4460. <height>16777215</height>
  4461. </size>
  4462. </property>
  4463. <property name="currentIndex">
  4464. <number>2</number>
  4465. </property>
  4466. <widget class="QWidget" name="tabConnexion">
  4467. <attribute name="title">
  4468. <string>Connexion</string>
  4469. </attribute>
  4470. <layout class="QVBoxLayout" name="verticalLayout_2">
  4471. <item>
  4472. <widget class="QLabel" name="txtStatutCoPseudo">
  4473. <property name="minimumSize">
  4474. <size>
  4475. <width>179</width>
  4476. <height>13</height>
  4477. </size>
  4478. </property>
  4479. <property name="maximumSize">
  4480. <size>
  4481. <width>230</width>
  4482. <height>18</height>
  4483. </size>
  4484. </property>
  4485. <property name="text">
  4486. <string>Pseudo : </string>
  4487. </property>
  4488. </widget>
  4489. </item>
  4490. <item>
  4491. <widget class="QLabel" name="txtStatutCoServeur">
  4492. <property name="minimumSize">
  4493. <size>
  4494. <width>179</width>
  4495. <height>13</height>
  4496. </size>
  4497. </property>
  4498. <property name="maximumSize">
  4499. <size>
  4500. <width>230</width>
  4501. <height>18</height>
  4502. </size>
  4503. </property>
  4504. <property name="text">
  4505. <string>Serveur : Aucun serveur</string>
  4506. </property>
  4507. </widget>
  4508. </item>
  4509. <item>
  4510. <widget class="QLabel" name="txtStatutCoServeurVoc">
  4511. <property name="minimumSize">
  4512. <size>
  4513. <width>179</width>
  4514. <height>13</height>
  4515. </size>
  4516. </property>
  4517. <property name="maximumSize">
  4518. <size>
  4519. <width>230</width>
  4520. <height>17</height>
  4521. </size>
  4522. </property>
  4523. <property name="text">
  4524. <string>Serveur vocal : Aucun serveur vocal</string>
  4525. </property>
  4526. </widget>
  4527. </item>
  4528. <item>
  4529. <widget class="QLabel" name="txtStatutCoDebits">
  4530. <property name="minimumSize">
  4531. <size>
  4532. <width>179</width>
  4533. <height>0</height>
  4534. </size>
  4535. </property>
  4536. <property name="maximumSize">
  4537. <size>
  4538. <width>230</width>
  4539. <height>18</height>
  4540. </size>
  4541. </property>
  4542. <property name="text">
  4543. <string>Débits : E 0 ko/s - R 0 ko/s</string>
  4544. </property>
  4545. </widget>
  4546. </item>
  4547. <item>
  4548. <widget class="QPushButton" name="txtStatutCoEcranCo">
  4549. <property name="minimumSize">
  4550. <size>
  4551. <width>179</width>
  4552. <height>23</height>
  4553. </size>
  4554. </property>
  4555. <property name="maximumSize">
  4556. <size>
  4557. <width>345</width>
  4558. <height>23</height>
  4559. </size>
  4560. </property>
  4561. <property name="text">
  4562. <string>Ecran de connexion</string>
  4563. </property>
  4564. </widget>
  4565. </item>
  4566. </layout>
  4567. </widget>
  4568. <widget class="QWidget" name="tabJoueurs">
  4569. <attribute name="title">
  4570. <string>Joueurs</string>
  4571. </attribute>
  4572. <layout class="QVBoxLayout" name="verticalLayout">
  4573. <item>
  4574. <widget class="QListWidget" name="lstStatutJoueurs">
  4575. <property name="minimumSize">
  4576. <size>
  4577. <width>177</width>
  4578. <height>0</height>
  4579. </size>
  4580. </property>
  4581. <property name="maximumSize">
  4582. <size>
  4583. <width>230</width>
  4584. <height>16777215</height>
  4585. </size>
  4586. </property>
  4587. <property name="font">
  4588. <font>
  4589. <family>Segoe UI Semibold</family>
  4590. <pointsize>10</pointsize>
  4591. <weight>50</weight>
  4592. <bold>false</bold>
  4593. </font>
  4594. </property>
  4595. <property name="frameShape">
  4596. <enum>QFrame::WinPanel</enum>
  4597. </property>
  4598. </widget>
  4599. </item>
  4600. <item>
  4601. <widget class="QLabel" name="label_2">
  4602. <property name="maximumSize">
  4603. <size>
  4604. <width>230</width>
  4605. <height>16777215</height>
  4606. </size>
  4607. </property>
  4608. <property name="font">
  4609. <font>
  4610. <italic>true</italic>
  4611. </font>
  4612. </property>
  4613. <property name="text">
  4614. <string>Double-cliquer pour ouvrir un chat privé</string>
  4615. </property>
  4616. <property name="wordWrap">
  4617. <bool>false</bool>
  4618. </property>
  4619. </widget>
  4620. </item>
  4621. </layout>
  4622. </widget>
  4623. <widget class="QWidget" name="tabFichiers">
  4624. <attribute name="title">
  4625. <string>Fichiers</string>
  4626. </attribute>
  4627. <layout class="QGridLayout" name="gridLayout">
  4628. <item row="1" column="0">
  4629. <widget class="QPushButton" name="repReceptionFichiers">
  4630. <property name="minimumSize">
  4631. <size>
  4632. <width>85</width>
  4633. <height>23</height>
  4634. </size>
  4635. </property>
  4636. <property name="maximumSize">
  4637. <size>
  4638. <width>114</width>
  4639. <height>16777215</height>
  4640. </size>
  4641. </property>
  4642. <property name="text">
  4643. <string>Rep. recept.</string>
  4644. </property>
  4645. </widget>
  4646. </item>
  4647. <item row="1" column="1">
  4648. <widget class="QPushButton" name="envoiFichier">
  4649. <property name="minimumSize">
  4650. <size>
  4651. <width>86</width>
  4652. <height>23</height>
  4653. </size>
  4654. </property>
  4655. <property name="maximumSize">
  4656. <size>
  4657. <width>115</width>
  4658. <height>16777215</height>
  4659. </size>
  4660. </property>
  4661. <property name="text">
  4662. <string>Envoi fichier</string>
  4663. </property>
  4664. </widget>
  4665. </item>
  4666. <item row="0" column="0" colspan="2">
  4667. <widget class="QTreeWidget" name="listFichiers">
  4668. <property name="minimumSize">
  4669. <size>
  4670. <width>177</width>
  4671. <height>78</height>
  4672. </size>
  4673. </property>
  4674. <property name="maximumSize">
  4675. <size>
  4676. <width>235</width>
  4677. <height>16777215</height>
  4678. </size>
  4679. </property>
  4680. <property name="baseSize">
  4681. <size>
  4682. <width>0</width>
  4683. <height>0</height>
  4684. </size>
  4685. </property>
  4686. <property name="frameShape">
  4687. <enum>QFrame::WinPanel</enum>
  4688. </property>
  4689. <property name="indentation">
  4690. <number>2</number>
  4691. </property>
  4692. <property name="columnCount">
  4693. <number>3</number>
  4694. </property>
  4695. <attribute name="headerDefaultSectionSize">
  4696. <number>28</number>
  4697. </attribute>
  4698. <attribute name="headerMinimumSectionSize">
  4699. <number>27</number>
  4700. </attribute>
  4701. <column>
  4702. <property name="text">
  4703. <string>E/R</string>
  4704. </property>
  4705. </column>
  4706. <column>
  4707. <property name="text">
  4708. <string>%</string>
  4709. </property>
  4710. </column>
  4711. <column>
  4712. <property name="text">
  4713. <string>Fichier</string>
  4714. </property>
  4715. </column>
  4716. </widget>
  4717. </item>
  4718. </layout>
  4719. </widget>
  4720. </widget>
  4721. </item>
  4722. </layout>
  4723. </item>
  4724. </layout>
  4725. </widget>
  4726. </item>
  4727. </layout>
  4728. </widget>
  4729. <widget class="QMenuBar" name="menubar">
  4730. <property name="geometry">
  4731. <rect>
  4732. <x>0</x>
  4733. <y>0</y>
  4734. <width>1153</width>
  4735. <height>21</height>
  4736. </rect>
  4737. </property>
  4738. <widget class="QMenu" name="menuFichier">
  4739. <property name="title">
  4740. <string>Fichier</string>
  4741. </property>
  4742. <addaction name="actionOuvrir"/>
  4743. <addaction name="actionEnregistrer"/>
  4744. <addaction name="separator"/>
  4745. <addaction name="actionQuitter"/>
  4746. </widget>
  4747. <widget class="QMenu" name="menuEditer">
  4748. <property name="title">
  4749. <string>Editer</string>
  4750. </property>
  4751. <addaction name="actionParam_tres"/>
  4752. </widget>
  4753. <widget class="QMenu" name="menuAide">
  4754. <property name="title">
  4755. <string>Aide</string>
  4756. </property>
  4757. <addaction name="actionA_propos_de_D_Monde"/>
  4758. <addaction name="actionLexique"/>
  4759. </widget>
  4760. <addaction name="menuFichier"/>
  4761. <addaction name="menuEditer"/>
  4762. <addaction name="menuAide"/>
  4763. </widget>
  4764. <widget class="QStatusBar" name="statusbar"/>
  4765. <action name="actionOuvrir">
  4766. <property name="text">
  4767. <string>Ouvrir</string>
  4768. </property>
  4769. </action>
  4770. <action name="actionEnregistrer">
  4771. <property name="text">
  4772. <string>Enregistrer</string>
  4773. </property>
  4774. </action>
  4775. <action name="actionQuitter">
  4776. <property name="text">
  4777. <string>Quitter</string>
  4778. </property>
  4779. </action>
  4780. <action name="actionA_propos_de_D_Monde">
  4781. <property name="text">
  4782. <string>A propos de DéMonde...</string>
  4783. </property>
  4784. </action>
  4785. <action name="actionParam_tres">
  4786. <property name="text">
  4787. <string>Paramètres</string>
  4788. </property>
  4789. </action>
  4790. <action name="actionLexique">
  4791. <property name="text">
  4792. <string>Lexique</string>
  4793. </property>
  4794. </action>
  4795. </widget>
  4796. <customwidgets>
  4797. <customwidget>
  4798. <class>DmLabel</class>
  4799. <extends>QLabel</extends>
  4800. <header location="global">dm.h</header>
  4801. </customwidget>
  4802. <customwidget>
  4803. <class>DmTextEdit</class>
  4804. <extends>QTextEdit</extends>
  4805. <header location="global">dm.h</header>
  4806. </customwidget>
  4807. <customwidget>
  4808. <class>DmTableWidget</class>
  4809. <extends>QTableWidget</extends>
  4810. <header>dm.h</header>
  4811. </customwidget>
  4812. <customwidget>
  4813. <class>DmGraphicsView</class>
  4814. <extends>QGraphicsView</extends>
  4815. <header location="global">dm.h</header>
  4816. </customwidget>
  4817. <customwidget>
  4818. <class>DmTableMat</class>
  4819. <extends>QTableWidget</extends>
  4820. <header location="global">dm.h</header>
  4821. </customwidget>
  4822. <customwidget>
  4823. <class>DmFrameInf_Combattant</class>
  4824. <extends>QGroupBox</extends>
  4825. <header location="global">dm.h</header>
  4826. <container>1</container>
  4827. </customwidget>
  4828. <customwidget>
  4829. <class>DmFrameInf_Decor</class>
  4830. <extends>QGroupBox</extends>
  4831. <header location="global">dm.h</header>
  4832. <container>1</container>
  4833. </customwidget>
  4834. <customwidget>
  4835. <class>DmFrameInf_Case</class>
  4836. <extends>QGroupBox</extends>
  4837. <header location="global">dm.h</header>
  4838. <container>1</container>
  4839. </customwidget>
  4840. </customwidgets>
  4841. <resources>
  4842. <include location="ressource.qrc"/>
  4843. </resources>
  4844. <connections/>
  4845. </ui>