mainwindow.ui 162 KB

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