mainwindow.ui 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3. <class>MainWindow</class>
  4. <widget class="QMainWindow" name="MainWindow">
  5. <property name="geometry">
  6. <rect>
  7. <x>0</x>
  8. <y>0</y>
  9. <width>613</width>
  10. <height>528</height>
  11. </rect>
  12. </property>
  13. <property name="windowTitle">
  14. <string>MainWindow</string>
  15. </property>
  16. <property name="windowOpacity">
  17. <double>1.000000000000000</double>
  18. </property>
  19. <property name="styleSheet">
  20. <string notr="true"/>
  21. </property>
  22. <widget class="QWidget" name="centralWidget">
  23. <widget class="QPushButton" name="mainButton">
  24. <property name="geometry">
  25. <rect>
  26. <x>10</x>
  27. <y>10</y>
  28. <width>75</width>
  29. <height>23</height>
  30. </rect>
  31. </property>
  32. <property name="cursor">
  33. <cursorShape>PointingHandCursor</cursorShape>
  34. </property>
  35. <property name="text">
  36. <string>Патчи</string>
  37. </property>
  38. </widget>
  39. <widget class="QPushButton" name="optButton">
  40. <property name="geometry">
  41. <rect>
  42. <x>10</x>
  43. <y>40</y>
  44. <width>75</width>
  45. <height>23</height>
  46. </rect>
  47. </property>
  48. <property name="cursor">
  49. <cursorShape>PointingHandCursor</cursorShape>
  50. </property>
  51. <property name="text">
  52. <string>Настройки</string>
  53. </property>
  54. </widget>
  55. <widget class="QPushButton" name="newsButton">
  56. <property name="geometry">
  57. <rect>
  58. <x>10</x>
  59. <y>70</y>
  60. <width>75</width>
  61. <height>23</height>
  62. </rect>
  63. </property>
  64. <property name="cursor">
  65. <cursorShape>PointingHandCursor</cursorShape>
  66. </property>
  67. <property name="text">
  68. <string>Новости</string>
  69. </property>
  70. </widget>
  71. <widget class="QPushButton" name="helpButton">
  72. <property name="geometry">
  73. <rect>
  74. <x>10</x>
  75. <y>100</y>
  76. <width>75</width>
  77. <height>23</height>
  78. </rect>
  79. </property>
  80. <property name="cursor">
  81. <cursorShape>PointingHandCursor</cursorShape>
  82. </property>
  83. <property name="text">
  84. <string>Справка</string>
  85. </property>
  86. </widget>
  87. <widget class="QPushButton" name="aboutButton">
  88. <property name="geometry">
  89. <rect>
  90. <x>10</x>
  91. <y>130</y>
  92. <width>75</width>
  93. <height>23</height>
  94. </rect>
  95. </property>
  96. <property name="cursor">
  97. <cursorShape>PointingHandCursor</cursorShape>
  98. </property>
  99. <property name="text">
  100. <string>О нас</string>
  101. </property>
  102. </widget>
  103. <widget class="QPushButton" name="enterButton">
  104. <property name="geometry">
  105. <rect>
  106. <x>10</x>
  107. <y>160</y>
  108. <width>75</width>
  109. <height>23</height>
  110. </rect>
  111. </property>
  112. <property name="cursor">
  113. <cursorShape>PointingHandCursor</cursorShape>
  114. </property>
  115. <property name="text">
  116. <string/>
  117. </property>
  118. </widget>
  119. <widget class="QLabel" name="titleLabel">
  120. <property name="geometry">
  121. <rect>
  122. <x>20</x>
  123. <y>190</y>
  124. <width>61</width>
  125. <height>16</height>
  126. </rect>
  127. </property>
  128. <property name="text">
  129. <string>Патчи</string>
  130. </property>
  131. <property name="alignment">
  132. <set>Qt::AlignCenter</set>
  133. </property>
  134. </widget>
  135. <widget class="QLabel" name="hintLabel">
  136. <property name="geometry">
  137. <rect>
  138. <x>20</x>
  139. <y>210</y>
  140. <width>47</width>
  141. <height>13</height>
  142. </rect>
  143. </property>
  144. <property name="text">
  145. <string>Подсказка</string>
  146. </property>
  147. </widget>
  148. <widget class="QLabel" name="exthintLabel">
  149. <property name="geometry">
  150. <rect>
  151. <x>20</x>
  152. <y>230</y>
  153. <width>47</width>
  154. <height>13</height>
  155. </rect>
  156. </property>
  157. <property name="text">
  158. <string>Расширенная подсказка</string>
  159. </property>
  160. </widget>
  161. <widget class="QGroupBox" name="mainbox">
  162. <property name="geometry">
  163. <rect>
  164. <x>90</x>
  165. <y>0</y>
  166. <width>341</width>
  167. <height>231</height>
  168. </rect>
  169. </property>
  170. <property name="title">
  171. <string/>
  172. </property>
  173. <widget class="QLabel" name="textsTitle">
  174. <property name="geometry">
  175. <rect>
  176. <x>10</x>
  177. <y>5</y>
  178. <width>101</width>
  179. <height>21</height>
  180. </rect>
  181. </property>
  182. <property name="text">
  183. <string>Тексты</string>
  184. </property>
  185. </widget>
  186. <widget class="QLabel" name="soundsTitle">
  187. <property name="geometry">
  188. <rect>
  189. <x>10</x>
  190. <y>40</y>
  191. <width>111</width>
  192. <height>21</height>
  193. </rect>
  194. </property>
  195. <property name="text">
  196. <string>Звуки</string>
  197. </property>
  198. </widget>
  199. <widget class="QLabel" name="imagesTitle">
  200. <property name="geometry">
  201. <rect>
  202. <x>10</x>
  203. <y>75</y>
  204. <width>111</width>
  205. <height>21</height>
  206. </rect>
  207. </property>
  208. <property name="text">
  209. <string>Карты</string>
  210. </property>
  211. </widget>
  212. <widget class="QLabel" name="fontsTitle">
  213. <property name="geometry">
  214. <rect>
  215. <x>10</x>
  216. <y>145</y>
  217. <width>111</width>
  218. <height>21</height>
  219. </rect>
  220. </property>
  221. <property name="text">
  222. <string>Шрифты</string>
  223. </property>
  224. </widget>
  225. <widget class="QLabel" name="loadscreensTitle">
  226. <property name="geometry">
  227. <rect>
  228. <x>10</x>
  229. <y>110</y>
  230. <width>111</width>
  231. <height>21</height>
  232. </rect>
  233. </property>
  234. <property name="styleSheet">
  235. <string notr="true"/>
  236. </property>
  237. <property name="text">
  238. <string>Заставки</string>
  239. </property>
  240. </widget>
  241. <widget class="QLabel" name="videosTitle">
  242. <property name="geometry">
  243. <rect>
  244. <x>10</x>
  245. <y>180</y>
  246. <width>111</width>
  247. <height>21</height>
  248. </rect>
  249. </property>
  250. <property name="text">
  251. <string>Видеоролики</string>
  252. </property>
  253. </widget>
  254. <widget class="QLabel" name="textsStatus">
  255. <property name="geometry">
  256. <rect>
  257. <x>200</x>
  258. <y>5</y>
  259. <width>131</width>
  260. <height>35</height>
  261. </rect>
  262. </property>
  263. <property name="text">
  264. <string>Оригинал</string>
  265. </property>
  266. </widget>
  267. <widget class="QLabel" name="soundsStatus">
  268. <property name="geometry">
  269. <rect>
  270. <x>200</x>
  271. <y>40</y>
  272. <width>131</width>
  273. <height>35</height>
  274. </rect>
  275. </property>
  276. <property name="text">
  277. <string>Оригинал</string>
  278. </property>
  279. </widget>
  280. <widget class="QLabel" name="imagesStatus">
  281. <property name="geometry">
  282. <rect>
  283. <x>200</x>
  284. <y>75</y>
  285. <width>131</width>
  286. <height>35</height>
  287. </rect>
  288. </property>
  289. <property name="text">
  290. <string>Оригинал</string>
  291. </property>
  292. </widget>
  293. <widget class="QLabel" name="loadscreensStatus">
  294. <property name="geometry">
  295. <rect>
  296. <x>200</x>
  297. <y>110</y>
  298. <width>131</width>
  299. <height>35</height>
  300. </rect>
  301. </property>
  302. <property name="text">
  303. <string>Оригинал</string>
  304. </property>
  305. </widget>
  306. <widget class="QLabel" name="fontsStatus">
  307. <property name="geometry">
  308. <rect>
  309. <x>200</x>
  310. <y>145</y>
  311. <width>131</width>
  312. <height>35</height>
  313. </rect>
  314. </property>
  315. <property name="text">
  316. <string>Оригинал</string>
  317. </property>
  318. </widget>
  319. <widget class="QLabel" name="videosStatus">
  320. <property name="geometry">
  321. <rect>
  322. <x>200</x>
  323. <y>180</y>
  324. <width>121</width>
  325. <height>35</height>
  326. </rect>
  327. </property>
  328. <property name="text">
  329. <string>Скоро появится</string>
  330. </property>
  331. </widget>
  332. <widget class="QLabel" name="label_3">
  333. <property name="geometry">
  334. <rect>
  335. <x>10</x>
  336. <y>23</y>
  337. <width>221</width>
  338. <height>16</height>
  339. </rect>
  340. </property>
  341. <property name="text">
  342. <string>Русификация текстов</string>
  343. </property>
  344. </widget>
  345. <widget class="QLabel" name="label">
  346. <property name="geometry">
  347. <rect>
  348. <x>10</x>
  349. <y>58</y>
  350. <width>221</width>
  351. <height>16</height>
  352. </rect>
  353. </property>
  354. <property name="text">
  355. <string>Русификация озвучки</string>
  356. </property>
  357. </widget>
  358. <widget class="QLabel" name="label_4">
  359. <property name="geometry">
  360. <rect>
  361. <x>10</x>
  362. <y>93</y>
  363. <width>231</width>
  364. <height>16</height>
  365. </rect>
  366. </property>
  367. <property name="text">
  368. <string>Русификация карт</string>
  369. </property>
  370. </widget>
  371. <widget class="QLabel" name="label_8">
  372. <property name="geometry">
  373. <rect>
  374. <x>10</x>
  375. <y>128</y>
  376. <width>221</width>
  377. <height>16</height>
  378. </rect>
  379. </property>
  380. <property name="text">
  381. <string>Пакет загрузочных экранов</string>
  382. </property>
  383. </widget>
  384. <widget class="QLabel" name="label_6">
  385. <property name="geometry">
  386. <rect>
  387. <x>10</x>
  388. <y>163</y>
  389. <width>221</width>
  390. <height>16</height>
  391. </rect>
  392. </property>
  393. <property name="text">
  394. <string>Специальный пакет шрифтов</string>
  395. </property>
  396. </widget>
  397. <widget class="QLabel" name="label_7">
  398. <property name="geometry">
  399. <rect>
  400. <x>10</x>
  401. <y>198</y>
  402. <width>201</width>
  403. <height>16</height>
  404. </rect>
  405. </property>
  406. <property name="text">
  407. <string>Пакет русских видеороликов</string>
  408. </property>
  409. </widget>
  410. </widget>
  411. <widget class="QGroupBox" name="optbox">
  412. <property name="enabled">
  413. <bool>true</bool>
  414. </property>
  415. <property name="geometry">
  416. <rect>
  417. <x>90</x>
  418. <y>240</y>
  419. <width>341</width>
  420. <height>231</height>
  421. </rect>
  422. </property>
  423. <property name="title">
  424. <string/>
  425. </property>
  426. <widget class="QGroupBox" name="lotrofolderbox">
  427. <property name="geometry">
  428. <rect>
  429. <x>10</x>
  430. <y>10</y>
  431. <width>321</width>
  432. <height>71</height>
  433. </rect>
  434. </property>
  435. <property name="styleSheet">
  436. <string notr="true"/>
  437. </property>
  438. <property name="title">
  439. <string>Основные настройки</string>
  440. </property>
  441. <widget class="QLabel" name="lotropathLabel">
  442. <property name="geometry">
  443. <rect>
  444. <x>10</x>
  445. <y>19</y>
  446. <width>281</width>
  447. <height>20</height>
  448. </rect>
  449. </property>
  450. <property name="font">
  451. <font>
  452. <family>MS Shell Dlg 2</family>
  453. <pointsize>8</pointsize>
  454. <weight>50</weight>
  455. <italic>false</italic>
  456. <bold>false</bold>
  457. </font>
  458. </property>
  459. <property name="styleSheet">
  460. <string notr="true"/>
  461. </property>
  462. <property name="text">
  463. <string>Выберите путь к папке</string>
  464. </property>
  465. </widget>
  466. <widget class="QPushButton" name="lotropathButton">
  467. <property name="geometry">
  468. <rect>
  469. <x>292</x>
  470. <y>16</y>
  471. <width>27</width>
  472. <height>27</height>
  473. </rect>
  474. </property>
  475. <property name="cursor">
  476. <cursorShape>PointingHandCursor</cursorShape>
  477. </property>
  478. <property name="styleSheet">
  479. <string notr="true"/>
  480. </property>
  481. <property name="text">
  482. <string/>
  483. </property>
  484. </widget>
  485. <widget class="QLabel" name="localeLabel">
  486. <property name="geometry">
  487. <rect>
  488. <x>10</x>
  489. <y>43</y>
  490. <width>191</width>
  491. <height>21</height>
  492. </rect>
  493. </property>
  494. <property name="text">
  495. <string>Какую версию игры локализовать?</string>
  496. </property>
  497. </widget>
  498. <widget class="QPushButton" name="enButton">
  499. <property name="geometry">
  500. <rect>
  501. <x>210</x>
  502. <y>43</y>
  503. <width>24</width>
  504. <height>20</height>
  505. </rect>
  506. </property>
  507. <property name="cursor">
  508. <cursorShape>PointingHandCursor</cursorShape>
  509. </property>
  510. <property name="text">
  511. <string/>
  512. </property>
  513. <property name="flat">
  514. <bool>false</bool>
  515. </property>
  516. </widget>
  517. <widget class="QPushButton" name="deButton">
  518. <property name="geometry">
  519. <rect>
  520. <x>240</x>
  521. <y>43</y>
  522. <width>24</width>
  523. <height>20</height>
  524. </rect>
  525. </property>
  526. <property name="cursor">
  527. <cursorShape>PointingHandCursor</cursorShape>
  528. </property>
  529. <property name="text">
  530. <string/>
  531. </property>
  532. </widget>
  533. <widget class="QPushButton" name="frButton">
  534. <property name="geometry">
  535. <rect>
  536. <x>270</x>
  537. <y>43</y>
  538. <width>24</width>
  539. <height>20</height>
  540. </rect>
  541. </property>
  542. <property name="cursor">
  543. <cursorShape>PointingHandCursor</cursorShape>
  544. </property>
  545. <property name="text">
  546. <string/>
  547. </property>
  548. </widget>
  549. </widget>
  550. <widget class="QGroupBox" name="patchsbox">
  551. <property name="geometry">
  552. <rect>
  553. <x>10</x>
  554. <y>80</y>
  555. <width>331</width>
  556. <height>111</height>
  557. </rect>
  558. </property>
  559. <property name="styleSheet">
  560. <string notr="true"/>
  561. </property>
  562. <property name="title">
  563. <string>Применение патчей</string>
  564. </property>
  565. <widget class="QCheckBox" name="checkFonts">
  566. <property name="enabled">
  567. <bool>false</bool>
  568. </property>
  569. <property name="geometry">
  570. <rect>
  571. <x>10</x>
  572. <y>20</y>
  573. <width>81</width>
  574. <height>17</height>
  575. </rect>
  576. </property>
  577. <property name="font">
  578. <font>
  579. <family>MS Shell Dlg 2</family>
  580. <pointsize>8</pointsize>
  581. <weight>50</weight>
  582. <italic>false</italic>
  583. <bold>false</bold>
  584. </font>
  585. </property>
  586. <property name="styleSheet">
  587. <string notr="true"/>
  588. </property>
  589. <property name="text">
  590. <string>Шрифты</string>
  591. </property>
  592. <property name="checked">
  593. <bool>true</bool>
  594. </property>
  595. </widget>
  596. <widget class="QCheckBox" name="checkTexts">
  597. <property name="geometry">
  598. <rect>
  599. <x>10</x>
  600. <y>40</y>
  601. <width>81</width>
  602. <height>17</height>
  603. </rect>
  604. </property>
  605. <property name="font">
  606. <font>
  607. <family>MS Shell Dlg 2</family>
  608. <pointsize>8</pointsize>
  609. <weight>50</weight>
  610. <italic>false</italic>
  611. <bold>false</bold>
  612. </font>
  613. </property>
  614. <property name="styleSheet">
  615. <string notr="true"/>
  616. </property>
  617. <property name="text">
  618. <string>Тексты</string>
  619. </property>
  620. </widget>
  621. <widget class="QCheckBox" name="checkSounds">
  622. <property name="geometry">
  623. <rect>
  624. <x>100</x>
  625. <y>40</y>
  626. <width>81</width>
  627. <height>17</height>
  628. </rect>
  629. </property>
  630. <property name="font">
  631. <font>
  632. <family>MS Shell Dlg 2</family>
  633. <pointsize>8</pointsize>
  634. <weight>50</weight>
  635. <italic>false</italic>
  636. <bold>false</bold>
  637. </font>
  638. </property>
  639. <property name="styleSheet">
  640. <string notr="true"/>
  641. </property>
  642. <property name="text">
  643. <string>Звуки</string>
  644. </property>
  645. </widget>
  646. <widget class="QCheckBox" name="checkMaps">
  647. <property name="geometry">
  648. <rect>
  649. <x>100</x>
  650. <y>20</y>
  651. <width>81</width>
  652. <height>17</height>
  653. </rect>
  654. </property>
  655. <property name="font">
  656. <font>
  657. <family>MS Shell Dlg 2</family>
  658. <pointsize>8</pointsize>
  659. <weight>50</weight>
  660. <italic>false</italic>
  661. <bold>false</bold>
  662. </font>
  663. </property>
  664. <property name="styleSheet">
  665. <string notr="true"/>
  666. </property>
  667. <property name="text">
  668. <string>Карты</string>
  669. </property>
  670. </widget>
  671. <widget class="QCheckBox" name="checkScreens">
  672. <property name="geometry">
  673. <rect>
  674. <x>200</x>
  675. <y>20</y>
  676. <width>81</width>
  677. <height>17</height>
  678. </rect>
  679. </property>
  680. <property name="font">
  681. <font>
  682. <family>MS Shell Dlg 2</family>
  683. <pointsize>8</pointsize>
  684. <weight>50</weight>
  685. <italic>false</italic>
  686. <bold>false</bold>
  687. </font>
  688. </property>
  689. <property name="styleSheet">
  690. <string notr="true"/>
  691. </property>
  692. <property name="text">
  693. <string>Заставки</string>
  694. </property>
  695. </widget>
  696. <widget class="QCheckBox" name="checkVideos">
  697. <property name="enabled">
  698. <bool>false</bool>
  699. </property>
  700. <property name="geometry">
  701. <rect>
  702. <x>200</x>
  703. <y>40</y>
  704. <width>141</width>
  705. <height>17</height>
  706. </rect>
  707. </property>
  708. <property name="font">
  709. <font>
  710. <family>MS Shell Dlg 2</family>
  711. <pointsize>8</pointsize>
  712. <weight>50</weight>
  713. <italic>false</italic>
  714. <bold>false</bold>
  715. </font>
  716. </property>
  717. <property name="styleSheet">
  718. <string notr="true"/>
  719. </property>
  720. <property name="text">
  721. <string>Видеоролики</string>
  722. </property>
  723. </widget>
  724. <widget class="QCheckBox" name="checkMicro">
  725. <property name="geometry">
  726. <rect>
  727. <x>10</x>
  728. <y>60</y>
  729. <width>321</width>
  730. <height>17</height>
  731. </rect>
  732. </property>
  733. <property name="text">
  734. <string>Загружать микрообновления при каждом запуске</string>
  735. </property>
  736. </widget>
  737. <widget class="QPushButton" name="repairButton">
  738. <property name="geometry">
  739. <rect>
  740. <x>10</x>
  741. <y>80</y>
  742. <width>321</width>
  743. <height>28</height>
  744. </rect>
  745. </property>
  746. <property name="cursor">
  747. <cursorShape>PointingHandCursor</cursorShape>
  748. </property>
  749. <property name="text">
  750. <string>Применить патчи заново</string>
  751. </property>
  752. </widget>
  753. </widget>
  754. <widget class="QComboBox" name="skinSelect">
  755. <property name="geometry">
  756. <rect>
  757. <x>210</x>
  758. <y>200</y>
  759. <width>121</width>
  760. <height>22</height>
  761. </rect>
  762. </property>
  763. <property name="frame">
  764. <bool>true</bool>
  765. </property>
  766. </widget>
  767. <widget class="QLabel" name="skinLabel">
  768. <property name="geometry">
  769. <rect>
  770. <x>20</x>
  771. <y>200</y>
  772. <width>181</width>
  773. <height>21</height>
  774. </rect>
  775. </property>
  776. <property name="text">
  777. <string>Тема оформления</string>
  778. </property>
  779. </widget>
  780. </widget>
  781. <widget class="QLabel" name="optboxImage">
  782. <property name="geometry">
  783. <rect>
  784. <x>20</x>
  785. <y>270</y>
  786. <width>41</width>
  787. <height>21</height>
  788. </rect>
  789. </property>
  790. <property name="text">
  791. <string/>
  792. </property>
  793. </widget>
  794. <widget class="QLabel" name="mainboxImage">
  795. <property name="geometry">
  796. <rect>
  797. <x>20</x>
  798. <y>250</y>
  799. <width>41</width>
  800. <height>21</height>
  801. </rect>
  802. </property>
  803. <property name="text">
  804. <string/>
  805. </property>
  806. </widget>
  807. <widget class="QLabel" name="newsboxImage">
  808. <property name="geometry">
  809. <rect>
  810. <x>20</x>
  811. <y>300</y>
  812. <width>47</width>
  813. <height>21</height>
  814. </rect>
  815. </property>
  816. <property name="text">
  817. <string/>
  818. </property>
  819. </widget>
  820. <widget class="QGroupBox" name="newsbox">
  821. <property name="geometry">
  822. <rect>
  823. <x>430</x>
  824. <y>0</y>
  825. <width>451</width>
  826. <height>231</height>
  827. </rect>
  828. </property>
  829. <property name="title">
  830. <string/>
  831. </property>
  832. <widget class="QLabel" name="news1Image">
  833. <property name="geometry">
  834. <rect>
  835. <x>20</x>
  836. <y>10</y>
  837. <width>36</width>
  838. <height>36</height>
  839. </rect>
  840. </property>
  841. <property name="text">
  842. <string/>
  843. </property>
  844. </widget>
  845. <widget class="QLabel" name="news2Image">
  846. <property name="geometry">
  847. <rect>
  848. <x>20</x>
  849. <y>60</y>
  850. <width>36</width>
  851. <height>36</height>
  852. </rect>
  853. </property>
  854. <property name="text">
  855. <string/>
  856. </property>
  857. </widget>
  858. <widget class="QLabel" name="news3Image">
  859. <property name="geometry">
  860. <rect>
  861. <x>20</x>
  862. <y>110</y>
  863. <width>36</width>
  864. <height>36</height>
  865. </rect>
  866. </property>
  867. <property name="text">
  868. <string/>
  869. </property>
  870. </widget>
  871. <widget class="QLabel" name="news4Image">
  872. <property name="geometry">
  873. <rect>
  874. <x>20</x>
  875. <y>160</y>
  876. <width>36</width>
  877. <height>36</height>
  878. </rect>
  879. </property>
  880. <property name="text">
  881. <string/>
  882. </property>
  883. </widget>
  884. <widget class="QLabel" name="news1Title">
  885. <property name="geometry">
  886. <rect>
  887. <x>70</x>
  888. <y>10</y>
  889. <width>371</width>
  890. <height>21</height>
  891. </rect>
  892. </property>
  893. <property name="cursor">
  894. <cursorShape>PointingHandCursor</cursorShape>
  895. </property>
  896. <property name="text">
  897. <string>Новость загружается...</string>
  898. </property>
  899. <property name="openExternalLinks">
  900. <bool>true</bool>
  901. </property>
  902. </widget>
  903. <widget class="QLabel" name="news1Teaser">
  904. <property name="geometry">
  905. <rect>
  906. <x>70</x>
  907. <y>30</y>
  908. <width>351</width>
  909. <height>16</height>
  910. </rect>
  911. </property>
  912. <property name="text">
  913. <string/>
  914. </property>
  915. </widget>
  916. <widget class="QLabel" name="news2Teaser">
  917. <property name="geometry">
  918. <rect>
  919. <x>70</x>
  920. <y>80</y>
  921. <width>351</width>
  922. <height>16</height>
  923. </rect>
  924. </property>
  925. <property name="text">
  926. <string/>
  927. </property>
  928. </widget>
  929. <widget class="QLabel" name="news2Title">
  930. <property name="geometry">
  931. <rect>
  932. <x>70</x>
  933. <y>60</y>
  934. <width>381</width>
  935. <height>21</height>
  936. </rect>
  937. </property>
  938. <property name="cursor">
  939. <cursorShape>PointingHandCursor</cursorShape>
  940. </property>
  941. <property name="text">
  942. <string>Новость загружается...</string>
  943. </property>
  944. <property name="openExternalLinks">
  945. <bool>true</bool>
  946. </property>
  947. <property name="textInteractionFlags">
  948. <set>Qt::LinksAccessibleByMouse</set>
  949. </property>
  950. </widget>
  951. <widget class="QLabel" name="news3Teaser">
  952. <property name="geometry">
  953. <rect>
  954. <x>70</x>
  955. <y>130</y>
  956. <width>351</width>
  957. <height>16</height>
  958. </rect>
  959. </property>
  960. <property name="text">
  961. <string/>
  962. </property>
  963. </widget>
  964. <widget class="QLabel" name="news3Title">
  965. <property name="geometry">
  966. <rect>
  967. <x>70</x>
  968. <y>110</y>
  969. <width>371</width>
  970. <height>21</height>
  971. </rect>
  972. </property>
  973. <property name="cursor">
  974. <cursorShape>PointingHandCursor</cursorShape>
  975. </property>
  976. <property name="text">
  977. <string>Новость загружается...</string>
  978. </property>
  979. <property name="openExternalLinks">
  980. <bool>true</bool>
  981. </property>
  982. </widget>
  983. <widget class="QLabel" name="news4Teaser">
  984. <property name="geometry">
  985. <rect>
  986. <x>70</x>
  987. <y>180</y>
  988. <width>351</width>
  989. <height>16</height>
  990. </rect>
  991. </property>
  992. <property name="text">
  993. <string/>
  994. </property>
  995. </widget>
  996. <widget class="QLabel" name="news4Title">
  997. <property name="geometry">
  998. <rect>
  999. <x>70</x>
  1000. <y>160</y>
  1001. <width>371</width>
  1002. <height>21</height>
  1003. </rect>
  1004. </property>
  1005. <property name="text">
  1006. <string>Новость загружается...</string>
  1007. </property>
  1008. <property name="openExternalLinks">
  1009. <bool>true</bool>
  1010. </property>
  1011. </widget>
  1012. </widget>
  1013. <widget class="QGroupBox" name="helpbox">
  1014. <property name="geometry">
  1015. <rect>
  1016. <x>430</x>
  1017. <y>240</y>
  1018. <width>431</width>
  1019. <height>221</height>
  1020. </rect>
  1021. </property>
  1022. <property name="title">
  1023. <string/>
  1024. </property>
  1025. <widget class="QTextBrowser" name="textBrowser">
  1026. <property name="geometry">
  1027. <rect>
  1028. <x>10</x>
  1029. <y>0</y>
  1030. <width>411</width>
  1031. <height>221</height>
  1032. </rect>
  1033. </property>
  1034. <property name="openExternalLinks">
  1035. <bool>true</bool>
  1036. </property>
  1037. <property name="openLinks">
  1038. <bool>true</bool>
  1039. </property>
  1040. </widget>
  1041. </widget>
  1042. <widget class="QGroupBox" name="aboutbox">
  1043. <property name="geometry">
  1044. <rect>
  1045. <x>430</x>
  1046. <y>470</y>
  1047. <width>441</width>
  1048. <height>231</height>
  1049. </rect>
  1050. </property>
  1051. <property name="title">
  1052. <string/>
  1053. </property>
  1054. <property name="flat">
  1055. <bool>false</bool>
  1056. </property>
  1057. <widget class="QLabel" name="helperslist">
  1058. <property name="geometry">
  1059. <rect>
  1060. <x>10</x>
  1061. <y>182</y>
  1062. <width>371</width>
  1063. <height>31</height>
  1064. </rect>
  1065. </property>
  1066. <property name="text">
  1067. <string>TextLabel</string>
  1068. </property>
  1069. <property name="alignment">
  1070. <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
  1071. </property>
  1072. <property name="wordWrap">
  1073. <bool>true</bool>
  1074. </property>
  1075. </widget>
  1076. <widget class="QLabel" name="designers">
  1077. <property name="geometry">
  1078. <rect>
  1079. <x>10</x>
  1080. <y>40</y>
  1081. <width>361</width>
  1082. <height>21</height>
  1083. </rect>
  1084. </property>
  1085. <property name="text">
  1086. <string>Дизайн и работа с графикой:</string>
  1087. </property>
  1088. </widget>
  1089. <widget class="QLabel" name="translatorslist">
  1090. <property name="geometry">
  1091. <rect>
  1092. <x>10</x>
  1093. <y>100</y>
  1094. <width>371</width>
  1095. <height>65</height>
  1096. </rect>
  1097. </property>
  1098. <property name="text">
  1099. <string>TextLabel</string>
  1100. </property>
  1101. <property name="alignment">
  1102. <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
  1103. </property>
  1104. <property name="wordWrap">
  1105. <bool>true</bool>
  1106. </property>
  1107. </widget>
  1108. <widget class="QLabel" name="programmerslist">
  1109. <property name="geometry">
  1110. <rect>
  1111. <x>10</x>
  1112. <y>19</y>
  1113. <width>361</width>
  1114. <height>16</height>
  1115. </rect>
  1116. </property>
  1117. <property name="text">
  1118. <string>TextLabel</string>
  1119. </property>
  1120. <property name="alignment">
  1121. <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
  1122. </property>
  1123. </widget>
  1124. <widget class="QLabel" name="programmers">
  1125. <property name="geometry">
  1126. <rect>
  1127. <x>10</x>
  1128. <y>0</y>
  1129. <width>361</width>
  1130. <height>21</height>
  1131. </rect>
  1132. </property>
  1133. <property name="text">
  1134. <string>Техническая и программная часть:</string>
  1135. </property>
  1136. </widget>
  1137. <widget class="QLabel" name="helpers">
  1138. <property name="geometry">
  1139. <rect>
  1140. <x>10</x>
  1141. <y>165</y>
  1142. <width>366</width>
  1143. <height>21</height>
  1144. </rect>
  1145. </property>
  1146. <property name="text">
  1147. <string>Помогали словом и делом:</string>
  1148. </property>
  1149. </widget>
  1150. <widget class="QLabel" name="designerslist">
  1151. <property name="geometry">
  1152. <rect>
  1153. <x>10</x>
  1154. <y>59</y>
  1155. <width>361</width>
  1156. <height>16</height>
  1157. </rect>
  1158. </property>
  1159. <property name="text">
  1160. <string>TextLabel</string>
  1161. </property>
  1162. <property name="alignment">
  1163. <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
  1164. </property>
  1165. </widget>
  1166. <widget class="QLabel" name="translators">
  1167. <property name="geometry">
  1168. <rect>
  1169. <x>10</x>
  1170. <y>80</y>
  1171. <width>361</width>
  1172. <height>21</height>
  1173. </rect>
  1174. </property>
  1175. <property name="text">
  1176. <string>Принимают участие в переводе:</string>
  1177. </property>
  1178. </widget>
  1179. </widget>
  1180. <widget class="QLabel" name="helpboxImage">
  1181. <property name="geometry">
  1182. <rect>
  1183. <x>20</x>
  1184. <y>330</y>
  1185. <width>47</width>
  1186. <height>21</height>
  1187. </rect>
  1188. </property>
  1189. <property name="text">
  1190. <string/>
  1191. </property>
  1192. </widget>
  1193. <widget class="QLabel" name="aboutboxImage">
  1194. <property name="geometry">
  1195. <rect>
  1196. <x>20</x>
  1197. <y>360</y>
  1198. <width>47</width>
  1199. <height>21</height>
  1200. </rect>
  1201. </property>
  1202. <property name="text">
  1203. <string/>
  1204. </property>
  1205. </widget>
  1206. <widget class="QPushButton" name="minimizeButton">
  1207. <property name="geometry">
  1208. <rect>
  1209. <x>10</x>
  1210. <y>360</y>
  1211. <width>21</width>
  1212. <height>23</height>
  1213. </rect>
  1214. </property>
  1215. <property name="cursor">
  1216. <cursorShape>PointingHandCursor</cursorShape>
  1217. </property>
  1218. <property name="text">
  1219. <string/>
  1220. </property>
  1221. </widget>
  1222. <widget class="QPushButton" name="closeButton">
  1223. <property name="geometry">
  1224. <rect>
  1225. <x>40</x>
  1226. <y>360</y>
  1227. <width>21</width>
  1228. <height>23</height>
  1229. </rect>
  1230. </property>
  1231. <property name="cursor">
  1232. <cursorShape>PointingHandCursor</cursorShape>
  1233. </property>
  1234. <property name="text">
  1235. <string/>
  1236. </property>
  1237. </widget>
  1238. <widget class="QGroupBox" name="dialogbox">
  1239. <property name="geometry">
  1240. <rect>
  1241. <x>90</x>
  1242. <y>470</y>
  1243. <width>211</width>
  1244. <height>81</height>
  1245. </rect>
  1246. </property>
  1247. <property name="title">
  1248. <string/>
  1249. </property>
  1250. <widget class="QGroupBox" name="dialog">
  1251. <property name="geometry">
  1252. <rect>
  1253. <x>0</x>
  1254. <y>0</y>
  1255. <width>201</width>
  1256. <height>81</height>
  1257. </rect>
  1258. </property>
  1259. <property name="title">
  1260. <string/>
  1261. </property>
  1262. <widget class="QPushButton" name="okButton">
  1263. <property name="geometry">
  1264. <rect>
  1265. <x>20</x>
  1266. <y>50</y>
  1267. <width>75</width>
  1268. <height>23</height>
  1269. </rect>
  1270. </property>
  1271. <property name="cursor">
  1272. <cursorShape>PointingHandCursor</cursorShape>
  1273. </property>
  1274. <property name="text">
  1275. <string>OK</string>
  1276. </property>
  1277. </widget>
  1278. <widget class="QPushButton" name="cancelButton">
  1279. <property name="geometry">
  1280. <rect>
  1281. <x>110</x>
  1282. <y>50</y>
  1283. <width>75</width>
  1284. <height>23</height>
  1285. </rect>
  1286. </property>
  1287. <property name="cursor">
  1288. <cursorShape>PointingHandCursor</cursorShape>
  1289. </property>
  1290. <property name="text">
  1291. <string>Отмена</string>
  1292. </property>
  1293. </widget>
  1294. <widget class="QLabel" name="dialogHeader">
  1295. <property name="geometry">
  1296. <rect>
  1297. <x>10</x>
  1298. <y>10</y>
  1299. <width>47</width>
  1300. <height>13</height>
  1301. </rect>
  1302. </property>
  1303. <property name="text">
  1304. <string>TextLabel</string>
  1305. </property>
  1306. </widget>
  1307. <widget class="QLabel" name="dialogImage">
  1308. <property name="geometry">
  1309. <rect>
  1310. <x>10</x>
  1311. <y>30</y>
  1312. <width>47</width>
  1313. <height>13</height>
  1314. </rect>
  1315. </property>
  1316. <property name="text">
  1317. <string>TextLabel</string>
  1318. </property>
  1319. </widget>
  1320. <widget class="QLabel" name="dialogInfo">
  1321. <property name="geometry">
  1322. <rect>
  1323. <x>80</x>
  1324. <y>30</y>
  1325. <width>111</width>
  1326. <height>21</height>
  1327. </rect>
  1328. </property>
  1329. <property name="text">
  1330. <string>TextLabel</string>
  1331. </property>
  1332. <property name="wordWrap">
  1333. <bool>true</bool>
  1334. </property>
  1335. </widget>
  1336. <widget class="QListWidget" name="dialogList">
  1337. <property name="geometry">
  1338. <rect>
  1339. <x>80</x>
  1340. <y>10</y>
  1341. <width>91</width>
  1342. <height>12</height>
  1343. </rect>
  1344. </property>
  1345. <property name="font">
  1346. <font>
  1347. <pointsize>8</pointsize>
  1348. </font>
  1349. </property>
  1350. <property name="cursor" stdset="0">
  1351. <cursorShape>PointingHandCursor</cursorShape>
  1352. </property>
  1353. </widget>
  1354. </widget>
  1355. </widget>
  1356. <widget class="QGroupBox" name="serversbox">
  1357. <property name="geometry">
  1358. <rect>
  1359. <x>10</x>
  1360. <y>730</y>
  1361. <width>871</width>
  1362. <height>51</height>
  1363. </rect>
  1364. </property>
  1365. <property name="title">
  1366. <string/>
  1367. </property>
  1368. <widget class="QLabel" name="Arkenstone">
  1369. <property name="geometry">
  1370. <rect>
  1371. <x>10</x>
  1372. <y>10</y>
  1373. <width>68</width>
  1374. <height>16</height>
  1375. </rect>
  1376. </property>
  1377. <property name="text">
  1378. <string>Arkenstone</string>
  1379. </property>
  1380. <property name="alignment">
  1381. <set>Qt::AlignCenter</set>
  1382. </property>
  1383. </widget>
  1384. <widget class="QLabel" name="Belegaer">
  1385. <property name="geometry">
  1386. <rect>
  1387. <x>76</x>
  1388. <y>10</y>
  1389. <width>68</width>
  1390. <height>16</height>
  1391. </rect>
  1392. </property>
  1393. <property name="text">
  1394. <string>Belegaer</string>
  1395. </property>
  1396. <property name="alignment">
  1397. <set>Qt::AlignCenter</set>
  1398. </property>
  1399. </widget>
  1400. <widget class="QLabel" name="Brandywine">
  1401. <property name="geometry">
  1402. <rect>
  1403. <x>142</x>
  1404. <y>10</y>
  1405. <width>68</width>
  1406. <height>16</height>
  1407. </rect>
  1408. </property>
  1409. <property name="text">
  1410. <string>Brandywine</string>
  1411. </property>
  1412. <property name="alignment">
  1413. <set>Qt::AlignCenter</set>
  1414. </property>
  1415. </widget>
  1416. <widget class="QLabel" name="Crickhollow">
  1417. <property name="geometry">
  1418. <rect>
  1419. <x>208</x>
  1420. <y>10</y>
  1421. <width>68</width>
  1422. <height>16</height>
  1423. </rect>
  1424. </property>
  1425. <property name="text">
  1426. <string>Crickhollow</string>
  1427. </property>
  1428. <property name="alignment">
  1429. <set>Qt::AlignCenter</set>
  1430. </property>
  1431. </widget>
  1432. <widget class="QLabel" name="Evernight">
  1433. <property name="geometry">
  1434. <rect>
  1435. <x>276</x>
  1436. <y>10</y>
  1437. <width>68</width>
  1438. <height>16</height>
  1439. </rect>
  1440. </property>
  1441. <property name="text">
  1442. <string>Evernight</string>
  1443. </property>
  1444. <property name="alignment">
  1445. <set>Qt::AlignCenter</set>
  1446. </property>
  1447. </widget>
  1448. <widget class="QLabel" name="Gladden">
  1449. <property name="geometry">
  1450. <rect>
  1451. <x>340</x>
  1452. <y>10</y>
  1453. <width>68</width>
  1454. <height>16</height>
  1455. </rect>
  1456. </property>
  1457. <property name="text">
  1458. <string>Gladden</string>
  1459. </property>
  1460. <property name="alignment">
  1461. <set>Qt::AlignCenter</set>
  1462. </property>
  1463. </widget>
  1464. <widget class="QLabel" name="Gwaihir">
  1465. <property name="geometry">
  1466. <rect>
  1467. <x>406</x>
  1468. <y>10</y>
  1469. <width>68</width>
  1470. <height>16</height>
  1471. </rect>
  1472. </property>
  1473. <property name="text">
  1474. <string>Gwaihir</string>
  1475. </property>
  1476. <property name="alignment">
  1477. <set>Qt::AlignCenter</set>
  1478. </property>
  1479. </widget>
  1480. <widget class="QLabel" name="Bullroarer">
  1481. <property name="geometry">
  1482. <rect>
  1483. <x>670</x>
  1484. <y>10</y>
  1485. <width>68</width>
  1486. <height>16</height>
  1487. </rect>
  1488. </property>
  1489. <property name="text">
  1490. <string>Bullroarer</string>
  1491. </property>
  1492. <property name="alignment">
  1493. <set>Qt::AlignCenter</set>
  1494. </property>
  1495. </widget>
  1496. <widget class="QLabel" name="Landroval">
  1497. <property name="geometry">
  1498. <rect>
  1499. <x>472</x>
  1500. <y>10</y>
  1501. <width>68</width>
  1502. <height>16</height>
  1503. </rect>
  1504. </property>
  1505. <property name="text">
  1506. <string>Landroval</string>
  1507. </property>
  1508. <property name="alignment">
  1509. <set>Qt::AlignCenter</set>
  1510. </property>
  1511. </widget>
  1512. <widget class="QLabel" name="Laurelin">
  1513. <property name="geometry">
  1514. <rect>
  1515. <x>538</x>
  1516. <y>10</y>
  1517. <width>68</width>
  1518. <height>16</height>
  1519. </rect>
  1520. </property>
  1521. <property name="text">
  1522. <string>Laurelin</string>
  1523. </property>
  1524. <property name="alignment">
  1525. <set>Qt::AlignCenter</set>
  1526. </property>
  1527. </widget>
  1528. <widget class="QLabel" name="Sirannon">
  1529. <property name="geometry">
  1530. <rect>
  1531. <x>604</x>
  1532. <y>10</y>
  1533. <width>68</width>
  1534. <height>16</height>
  1535. </rect>
  1536. </property>
  1537. <property name="text">
  1538. <string>Sirannon</string>
  1539. </property>
  1540. <property name="alignment">
  1541. <set>Qt::AlignCenter</set>
  1542. </property>
  1543. </widget>
  1544. </widget>
  1545. <widget class="QPushButton" name="couponButton">
  1546. <property name="geometry">
  1547. <rect>
  1548. <x>10</x>
  1549. <y>390</y>
  1550. <width>75</width>
  1551. <height>23</height>
  1552. </rect>
  1553. </property>
  1554. <property name="cursor">
  1555. <cursorShape>PointingHandCursor</cursorShape>
  1556. </property>
  1557. <property name="text">
  1558. <string>COUPON</string>
  1559. </property>
  1560. </widget>
  1561. <widget class="QLabel" name="couponTitle">
  1562. <property name="geometry">
  1563. <rect>
  1564. <x>10</x>
  1565. <y>420</y>
  1566. <width>101</width>
  1567. <height>16</height>
  1568. </rect>
  1569. </property>
  1570. <property name="text">
  1571. <string>Подарок недели:</string>
  1572. </property>
  1573. <property name="alignment">
  1574. <set>Qt::AlignCenter</set>
  1575. </property>
  1576. </widget>
  1577. <widget class="QLabel" name="footRed">
  1578. <property name="geometry">
  1579. <rect>
  1580. <x>30</x>
  1581. <y>760</y>
  1582. <width>711</width>
  1583. <height>16</height>
  1584. </rect>
  1585. </property>
  1586. <property name="text">
  1587. <string/>
  1588. </property>
  1589. </widget>
  1590. <widget class="QLabel" name="footYellow">
  1591. <property name="geometry">
  1592. <rect>
  1593. <x>50</x>
  1594. <y>760</y>
  1595. <width>701</width>
  1596. <height>16</height>
  1597. </rect>
  1598. </property>
  1599. <property name="text">
  1600. <string/>
  1601. </property>
  1602. </widget>
  1603. <widget class="QLabel" name="loader">
  1604. <property name="geometry">
  1605. <rect>
  1606. <x>20</x>
  1607. <y>440</y>
  1608. <width>47</width>
  1609. <height>51</height>
  1610. </rect>
  1611. </property>
  1612. <property name="text">
  1613. <string/>
  1614. </property>
  1615. </widget>
  1616. <widget class="QGroupBox" name="startbox">
  1617. <property name="geometry">
  1618. <rect>
  1619. <x>90</x>
  1620. <y>560</y>
  1621. <width>341</width>
  1622. <height>161</height>
  1623. </rect>
  1624. </property>
  1625. <property name="title">
  1626. <string/>
  1627. </property>
  1628. <widget class="QGroupBox" name="startframe">
  1629. <property name="geometry">
  1630. <rect>
  1631. <x>0</x>
  1632. <y>0</y>
  1633. <width>331</width>
  1634. <height>161</height>
  1635. </rect>
  1636. </property>
  1637. <property name="title">
  1638. <string/>
  1639. </property>
  1640. <widget class="QPushButton" name="goOriginal">
  1641. <property name="geometry">
  1642. <rect>
  1643. <x>20</x>
  1644. <y>31</y>
  1645. <width>91</width>
  1646. <height>91</height>
  1647. </rect>
  1648. </property>
  1649. <property name="cursor">
  1650. <cursorShape>PointingHandCursor</cursorShape>
  1651. </property>
  1652. <property name="text">
  1653. <string/>
  1654. </property>
  1655. </widget>
  1656. <widget class="QPushButton" name="goLocal">
  1657. <property name="geometry">
  1658. <rect>
  1659. <x>120</x>
  1660. <y>31</y>
  1661. <width>91</width>
  1662. <height>91</height>
  1663. </rect>
  1664. </property>
  1665. <property name="cursor">
  1666. <cursorShape>PointingHandCursor</cursorShape>
  1667. </property>
  1668. <property name="text">
  1669. <string/>
  1670. </property>
  1671. </widget>
  1672. <widget class="QPushButton" name="goCancel">
  1673. <property name="geometry">
  1674. <rect>
  1675. <x>220</x>
  1676. <y>31</y>
  1677. <width>91</width>
  1678. <height>91</height>
  1679. </rect>
  1680. </property>
  1681. <property name="cursor">
  1682. <cursorShape>PointingHandCursor</cursorShape>
  1683. </property>
  1684. <property name="text">
  1685. <string/>
  1686. </property>
  1687. </widget>
  1688. <widget class="QLabel" name="goTitle">
  1689. <property name="geometry">
  1690. <rect>
  1691. <x>20</x>
  1692. <y>125</y>
  1693. <width>291</width>
  1694. <height>21</height>
  1695. </rect>
  1696. </property>
  1697. <property name="text">
  1698. <string>Во что будем играть сегодня?</string>
  1699. </property>
  1700. <property name="alignment">
  1701. <set>Qt::AlignCenter</set>
  1702. </property>
  1703. </widget>
  1704. <widget class="QLabel" name="goHeader">
  1705. <property name="geometry">
  1706. <rect>
  1707. <x>0</x>
  1708. <y>0</y>
  1709. <width>331</width>
  1710. <height>34</height>
  1711. </rect>
  1712. </property>
  1713. <property name="text">
  1714. <string>Запуск игры</string>
  1715. </property>
  1716. </widget>
  1717. <widget class="QProgressBar" name="goProgress">
  1718. <property name="geometry">
  1719. <rect>
  1720. <x>20</x>
  1721. <y>130</y>
  1722. <width>291</width>
  1723. <height>23</height>
  1724. </rect>
  1725. </property>
  1726. <property name="maximum">
  1727. <number>0</number>
  1728. </property>
  1729. <property name="value">
  1730. <number>-1</number>
  1731. </property>
  1732. <property name="textVisible">
  1733. <bool>false</bool>
  1734. </property>
  1735. </widget>
  1736. <widget class="QLabel" name="goHint">
  1737. <property name="geometry">
  1738. <rect>
  1739. <x>60</x>
  1740. <y>113</y>
  1741. <width>201</width>
  1742. <height>16</height>
  1743. </rect>
  1744. </property>
  1745. <property name="text">
  1746. <string>Подготовка файлов локализации ...</string>
  1747. </property>
  1748. <property name="alignment">
  1749. <set>Qt::AlignCenter</set>
  1750. </property>
  1751. </widget>
  1752. </widget>
  1753. </widget>
  1754. <widget class="QLabel" name="labelVersion">
  1755. <property name="geometry">
  1756. <rect>
  1757. <x>10</x>
  1758. <y>440</y>
  1759. <width>81</width>
  1760. <height>16</height>
  1761. </rect>
  1762. </property>
  1763. <property name="text">
  1764. <string>Наследие: v1.2.2</string>
  1765. </property>
  1766. </widget>
  1767. <widget class="QPushButton" name="designButton">
  1768. <property name="geometry">
  1769. <rect>
  1770. <x>820</x>
  1771. <y>710</y>
  1772. <width>71</width>
  1773. <height>23</height>
  1774. </rect>
  1775. </property>
  1776. <property name="text">
  1777. <string>Обновить</string>
  1778. </property>
  1779. </widget>
  1780. <widget class="QLabel" name="mainTitle">
  1781. <property name="geometry">
  1782. <rect>
  1783. <x>20</x>
  1784. <y>710</y>
  1785. <width>47</width>
  1786. <height>13</height>
  1787. </rect>
  1788. </property>
  1789. <property name="text">
  1790. <string>Властелин колец Онлайн: Наследие</string>
  1791. </property>
  1792. </widget>
  1793. <zorder>newsboxImage</zorder>
  1794. <zorder>optboxImage</zorder>
  1795. <zorder>mainboxImage</zorder>
  1796. <zorder>mainButton</zorder>
  1797. <zorder>optButton</zorder>
  1798. <zorder>newsButton</zorder>
  1799. <zorder>helpButton</zorder>
  1800. <zorder>aboutButton</zorder>
  1801. <zorder>enterButton</zorder>
  1802. <zorder>titleLabel</zorder>
  1803. <zorder>hintLabel</zorder>
  1804. <zorder>exthintLabel</zorder>
  1805. <zorder>mainbox</zorder>
  1806. <zorder>optbox</zorder>
  1807. <zorder>newsbox</zorder>
  1808. <zorder>helpbox</zorder>
  1809. <zorder>aboutbox</zorder>
  1810. <zorder>helpboxImage</zorder>
  1811. <zorder>aboutboxImage</zorder>
  1812. <zorder>minimizeButton</zorder>
  1813. <zorder>closeButton</zorder>
  1814. <zorder>serversbox</zorder>
  1815. <zorder>couponButton</zorder>
  1816. <zorder>couponTitle</zorder>
  1817. <zorder>footRed</zorder>
  1818. <zorder>footYellow</zorder>
  1819. <zorder>loader</zorder>
  1820. <zorder>startbox</zorder>
  1821. <zorder>labelVersion</zorder>
  1822. <zorder>dialogbox</zorder>
  1823. <zorder>designButton</zorder>
  1824. <zorder>mainTitle</zorder>
  1825. </widget>
  1826. </widget>
  1827. <layoutdefault spacing="6" margin="11"/>
  1828. <resources/>
  1829. <connections/>
  1830. </ui>