mainwindow.ui 189 KB

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