mainwindow.ui 138 KB

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