mainwindow.ui 144 KB

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