mainwindow.ui 43 KB

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