mainwindow.ui 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815
  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>611</width>
  10. <height>350</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>210</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>210</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>210</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>210</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>210</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>210</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>421</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. </widget>
  1026. </widget>
  1027. <widget class="QGroupBox" name="aboutbox">
  1028. <property name="geometry">
  1029. <rect>
  1030. <x>430</x>
  1031. <y>470</y>
  1032. <width>441</width>
  1033. <height>231</height>
  1034. </rect>
  1035. </property>
  1036. <property name="title">
  1037. <string/>
  1038. </property>
  1039. <property name="flat">
  1040. <bool>false</bool>
  1041. </property>
  1042. <widget class="QLabel" name="helperslist">
  1043. <property name="geometry">
  1044. <rect>
  1045. <x>10</x>
  1046. <y>162</y>
  1047. <width>371</width>
  1048. <height>31</height>
  1049. </rect>
  1050. </property>
  1051. <property name="text">
  1052. <string>TextLabel</string>
  1053. </property>
  1054. <property name="alignment">
  1055. <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
  1056. </property>
  1057. <property name="wordWrap">
  1058. <bool>true</bool>
  1059. </property>
  1060. </widget>
  1061. <widget class="QLabel" name="designers">
  1062. <property name="geometry">
  1063. <rect>
  1064. <x>10</x>
  1065. <y>40</y>
  1066. <width>361</width>
  1067. <height>21</height>
  1068. </rect>
  1069. </property>
  1070. <property name="text">
  1071. <string>Дизайн и работа с графикой</string>
  1072. </property>
  1073. </widget>
  1074. <widget class="QLabel" name="translatorslist">
  1075. <property name="geometry">
  1076. <rect>
  1077. <x>10</x>
  1078. <y>106</y>
  1079. <width>371</width>
  1080. <height>31</height>
  1081. </rect>
  1082. </property>
  1083. <property name="text">
  1084. <string>TextLabel</string>
  1085. </property>
  1086. <property name="alignment">
  1087. <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
  1088. </property>
  1089. <property name="wordWrap">
  1090. <bool>true</bool>
  1091. </property>
  1092. </widget>
  1093. <widget class="QLabel" name="programmerslist">
  1094. <property name="geometry">
  1095. <rect>
  1096. <x>10</x>
  1097. <y>19</y>
  1098. <width>361</width>
  1099. <height>16</height>
  1100. </rect>
  1101. </property>
  1102. <property name="text">
  1103. <string>TextLabel</string>
  1104. </property>
  1105. <property name="alignment">
  1106. <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
  1107. </property>
  1108. </widget>
  1109. <widget class="QLabel" name="programmers">
  1110. <property name="geometry">
  1111. <rect>
  1112. <x>10</x>
  1113. <y>0</y>
  1114. <width>361</width>
  1115. <height>21</height>
  1116. </rect>
  1117. </property>
  1118. <property name="text">
  1119. <string>Техническая и программная часть</string>
  1120. </property>
  1121. </widget>
  1122. <widget class="QLabel" name="helpers">
  1123. <property name="geometry">
  1124. <rect>
  1125. <x>10</x>
  1126. <y>145</y>
  1127. <width>366</width>
  1128. <height>21</height>
  1129. </rect>
  1130. </property>
  1131. <property name="text">
  1132. <string>Помогали словом и делом</string>
  1133. </property>
  1134. </widget>
  1135. <widget class="QLabel" name="designerslist">
  1136. <property name="geometry">
  1137. <rect>
  1138. <x>10</x>
  1139. <y>59</y>
  1140. <width>361</width>
  1141. <height>16</height>
  1142. </rect>
  1143. </property>
  1144. <property name="text">
  1145. <string>TextLabel</string>
  1146. </property>
  1147. <property name="alignment">
  1148. <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
  1149. </property>
  1150. </widget>
  1151. <widget class="QLabel" name="translators">
  1152. <property name="geometry">
  1153. <rect>
  1154. <x>10</x>
  1155. <y>85</y>
  1156. <width>361</width>
  1157. <height>21</height>
  1158. </rect>
  1159. </property>
  1160. <property name="text">
  1161. <string>Принимают участие в переводе:</string>
  1162. </property>
  1163. </widget>
  1164. </widget>
  1165. <widget class="QLabel" name="helpboxImage">
  1166. <property name="geometry">
  1167. <rect>
  1168. <x>20</x>
  1169. <y>330</y>
  1170. <width>47</width>
  1171. <height>21</height>
  1172. </rect>
  1173. </property>
  1174. <property name="text">
  1175. <string/>
  1176. </property>
  1177. </widget>
  1178. <widget class="QLabel" name="aboutboxImage">
  1179. <property name="geometry">
  1180. <rect>
  1181. <x>20</x>
  1182. <y>360</y>
  1183. <width>47</width>
  1184. <height>21</height>
  1185. </rect>
  1186. </property>
  1187. <property name="text">
  1188. <string/>
  1189. </property>
  1190. </widget>
  1191. <widget class="QPushButton" name="minimizeButton">
  1192. <property name="geometry">
  1193. <rect>
  1194. <x>10</x>
  1195. <y>360</y>
  1196. <width>21</width>
  1197. <height>23</height>
  1198. </rect>
  1199. </property>
  1200. <property name="cursor">
  1201. <cursorShape>PointingHandCursor</cursorShape>
  1202. </property>
  1203. <property name="text">
  1204. <string/>
  1205. </property>
  1206. </widget>
  1207. <widget class="QPushButton" name="closeButton">
  1208. <property name="geometry">
  1209. <rect>
  1210. <x>40</x>
  1211. <y>360</y>
  1212. <width>21</width>
  1213. <height>23</height>
  1214. </rect>
  1215. </property>
  1216. <property name="cursor">
  1217. <cursorShape>PointingHandCursor</cursorShape>
  1218. </property>
  1219. <property name="text">
  1220. <string/>
  1221. </property>
  1222. </widget>
  1223. <widget class="QGroupBox" name="dialogbox">
  1224. <property name="geometry">
  1225. <rect>
  1226. <x>90</x>
  1227. <y>470</y>
  1228. <width>211</width>
  1229. <height>81</height>
  1230. </rect>
  1231. </property>
  1232. <property name="title">
  1233. <string/>
  1234. </property>
  1235. <widget class="QGroupBox" name="dialog">
  1236. <property name="geometry">
  1237. <rect>
  1238. <x>0</x>
  1239. <y>0</y>
  1240. <width>201</width>
  1241. <height>81</height>
  1242. </rect>
  1243. </property>
  1244. <property name="title">
  1245. <string/>
  1246. </property>
  1247. <widget class="QPushButton" name="okButton">
  1248. <property name="geometry">
  1249. <rect>
  1250. <x>20</x>
  1251. <y>50</y>
  1252. <width>75</width>
  1253. <height>23</height>
  1254. </rect>
  1255. </property>
  1256. <property name="cursor">
  1257. <cursorShape>PointingHandCursor</cursorShape>
  1258. </property>
  1259. <property name="text">
  1260. <string>OK</string>
  1261. </property>
  1262. </widget>
  1263. <widget class="QPushButton" name="cancelButton">
  1264. <property name="geometry">
  1265. <rect>
  1266. <x>110</x>
  1267. <y>50</y>
  1268. <width>75</width>
  1269. <height>23</height>
  1270. </rect>
  1271. </property>
  1272. <property name="cursor">
  1273. <cursorShape>PointingHandCursor</cursorShape>
  1274. </property>
  1275. <property name="text">
  1276. <string>Отмена</string>
  1277. </property>
  1278. </widget>
  1279. <widget class="QLabel" name="dialogHeader">
  1280. <property name="geometry">
  1281. <rect>
  1282. <x>10</x>
  1283. <y>10</y>
  1284. <width>47</width>
  1285. <height>13</height>
  1286. </rect>
  1287. </property>
  1288. <property name="text">
  1289. <string>TextLabel</string>
  1290. </property>
  1291. </widget>
  1292. <widget class="QLabel" name="dialogImage">
  1293. <property name="geometry">
  1294. <rect>
  1295. <x>10</x>
  1296. <y>30</y>
  1297. <width>47</width>
  1298. <height>13</height>
  1299. </rect>
  1300. </property>
  1301. <property name="text">
  1302. <string>TextLabel</string>
  1303. </property>
  1304. </widget>
  1305. <widget class="QLabel" name="dialogInfo">
  1306. <property name="geometry">
  1307. <rect>
  1308. <x>80</x>
  1309. <y>30</y>
  1310. <width>111</width>
  1311. <height>21</height>
  1312. </rect>
  1313. </property>
  1314. <property name="text">
  1315. <string>TextLabel</string>
  1316. </property>
  1317. <property name="wordWrap">
  1318. <bool>true</bool>
  1319. </property>
  1320. </widget>
  1321. <widget class="QListWidget" name="dialogList">
  1322. <property name="geometry">
  1323. <rect>
  1324. <x>80</x>
  1325. <y>10</y>
  1326. <width>91</width>
  1327. <height>12</height>
  1328. </rect>
  1329. </property>
  1330. <property name="font">
  1331. <font>
  1332. <pointsize>8</pointsize>
  1333. </font>
  1334. </property>
  1335. <property name="cursor" stdset="0">
  1336. <cursorShape>PointingHandCursor</cursorShape>
  1337. </property>
  1338. </widget>
  1339. </widget>
  1340. </widget>
  1341. <widget class="QGroupBox" name="serversbox">
  1342. <property name="geometry">
  1343. <rect>
  1344. <x>10</x>
  1345. <y>730</y>
  1346. <width>871</width>
  1347. <height>51</height>
  1348. </rect>
  1349. </property>
  1350. <property name="title">
  1351. <string/>
  1352. </property>
  1353. <widget class="QLabel" name="Arkenstone">
  1354. <property name="geometry">
  1355. <rect>
  1356. <x>10</x>
  1357. <y>10</y>
  1358. <width>68</width>
  1359. <height>16</height>
  1360. </rect>
  1361. </property>
  1362. <property name="text">
  1363. <string>Arkenstone</string>
  1364. </property>
  1365. <property name="alignment">
  1366. <set>Qt::AlignCenter</set>
  1367. </property>
  1368. </widget>
  1369. <widget class="QLabel" name="Belegaer">
  1370. <property name="geometry">
  1371. <rect>
  1372. <x>76</x>
  1373. <y>10</y>
  1374. <width>68</width>
  1375. <height>16</height>
  1376. </rect>
  1377. </property>
  1378. <property name="text">
  1379. <string>Belegaer</string>
  1380. </property>
  1381. <property name="alignment">
  1382. <set>Qt::AlignCenter</set>
  1383. </property>
  1384. </widget>
  1385. <widget class="QLabel" name="Brandywine">
  1386. <property name="geometry">
  1387. <rect>
  1388. <x>142</x>
  1389. <y>10</y>
  1390. <width>68</width>
  1391. <height>16</height>
  1392. </rect>
  1393. </property>
  1394. <property name="text">
  1395. <string>Brandywine</string>
  1396. </property>
  1397. <property name="alignment">
  1398. <set>Qt::AlignCenter</set>
  1399. </property>
  1400. </widget>
  1401. <widget class="QLabel" name="Crickhollow">
  1402. <property name="geometry">
  1403. <rect>
  1404. <x>208</x>
  1405. <y>10</y>
  1406. <width>68</width>
  1407. <height>16</height>
  1408. </rect>
  1409. </property>
  1410. <property name="text">
  1411. <string>Crickhollow</string>
  1412. </property>
  1413. <property name="alignment">
  1414. <set>Qt::AlignCenter</set>
  1415. </property>
  1416. </widget>
  1417. <widget class="QLabel" name="Evernight">
  1418. <property name="geometry">
  1419. <rect>
  1420. <x>276</x>
  1421. <y>10</y>
  1422. <width>68</width>
  1423. <height>16</height>
  1424. </rect>
  1425. </property>
  1426. <property name="text">
  1427. <string>Evernight</string>
  1428. </property>
  1429. <property name="alignment">
  1430. <set>Qt::AlignCenter</set>
  1431. </property>
  1432. </widget>
  1433. <widget class="QLabel" name="Gladden">
  1434. <property name="geometry">
  1435. <rect>
  1436. <x>340</x>
  1437. <y>10</y>
  1438. <width>68</width>
  1439. <height>16</height>
  1440. </rect>
  1441. </property>
  1442. <property name="text">
  1443. <string>Gladden</string>
  1444. </property>
  1445. <property name="alignment">
  1446. <set>Qt::AlignCenter</set>
  1447. </property>
  1448. </widget>
  1449. <widget class="QLabel" name="Gwaihir">
  1450. <property name="geometry">
  1451. <rect>
  1452. <x>406</x>
  1453. <y>10</y>
  1454. <width>68</width>
  1455. <height>16</height>
  1456. </rect>
  1457. </property>
  1458. <property name="text">
  1459. <string>Gwaihir</string>
  1460. </property>
  1461. <property name="alignment">
  1462. <set>Qt::AlignCenter</set>
  1463. </property>
  1464. </widget>
  1465. <widget class="QLabel" name="Bullroarer">
  1466. <property name="geometry">
  1467. <rect>
  1468. <x>670</x>
  1469. <y>10</y>
  1470. <width>68</width>
  1471. <height>16</height>
  1472. </rect>
  1473. </property>
  1474. <property name="text">
  1475. <string>Bullroarer</string>
  1476. </property>
  1477. <property name="alignment">
  1478. <set>Qt::AlignCenter</set>
  1479. </property>
  1480. </widget>
  1481. <widget class="QLabel" name="Landroval">
  1482. <property name="geometry">
  1483. <rect>
  1484. <x>472</x>
  1485. <y>10</y>
  1486. <width>68</width>
  1487. <height>16</height>
  1488. </rect>
  1489. </property>
  1490. <property name="text">
  1491. <string>Landroval</string>
  1492. </property>
  1493. <property name="alignment">
  1494. <set>Qt::AlignCenter</set>
  1495. </property>
  1496. </widget>
  1497. <widget class="QLabel" name="Laurelin">
  1498. <property name="geometry">
  1499. <rect>
  1500. <x>538</x>
  1501. <y>10</y>
  1502. <width>68</width>
  1503. <height>16</height>
  1504. </rect>
  1505. </property>
  1506. <property name="text">
  1507. <string>Laurelin</string>
  1508. </property>
  1509. <property name="alignment">
  1510. <set>Qt::AlignCenter</set>
  1511. </property>
  1512. </widget>
  1513. <widget class="QLabel" name="Sirannon">
  1514. <property name="geometry">
  1515. <rect>
  1516. <x>604</x>
  1517. <y>10</y>
  1518. <width>68</width>
  1519. <height>16</height>
  1520. </rect>
  1521. </property>
  1522. <property name="text">
  1523. <string>Sirannon</string>
  1524. </property>
  1525. <property name="alignment">
  1526. <set>Qt::AlignCenter</set>
  1527. </property>
  1528. </widget>
  1529. </widget>
  1530. <widget class="QPushButton" name="couponButton">
  1531. <property name="geometry">
  1532. <rect>
  1533. <x>10</x>
  1534. <y>390</y>
  1535. <width>75</width>
  1536. <height>23</height>
  1537. </rect>
  1538. </property>
  1539. <property name="cursor">
  1540. <cursorShape>PointingHandCursor</cursorShape>
  1541. </property>
  1542. <property name="text">
  1543. <string>COUPON</string>
  1544. </property>
  1545. </widget>
  1546. <widget class="QLabel" name="couponTitle">
  1547. <property name="geometry">
  1548. <rect>
  1549. <x>10</x>
  1550. <y>420</y>
  1551. <width>101</width>
  1552. <height>16</height>
  1553. </rect>
  1554. </property>
  1555. <property name="text">
  1556. <string>Подарок недели:</string>
  1557. </property>
  1558. <property name="alignment">
  1559. <set>Qt::AlignCenter</set>
  1560. </property>
  1561. </widget>
  1562. <widget class="QLabel" name="footRed">
  1563. <property name="geometry">
  1564. <rect>
  1565. <x>30</x>
  1566. <y>760</y>
  1567. <width>711</width>
  1568. <height>16</height>
  1569. </rect>
  1570. </property>
  1571. <property name="text">
  1572. <string/>
  1573. </property>
  1574. </widget>
  1575. <widget class="QLabel" name="footYellow">
  1576. <property name="geometry">
  1577. <rect>
  1578. <x>50</x>
  1579. <y>760</y>
  1580. <width>701</width>
  1581. <height>16</height>
  1582. </rect>
  1583. </property>
  1584. <property name="text">
  1585. <string/>
  1586. </property>
  1587. </widget>
  1588. <widget class="QLabel" name="loader">
  1589. <property name="geometry">
  1590. <rect>
  1591. <x>20</x>
  1592. <y>440</y>
  1593. <width>47</width>
  1594. <height>51</height>
  1595. </rect>
  1596. </property>
  1597. <property name="text">
  1598. <string/>
  1599. </property>
  1600. </widget>
  1601. <widget class="QGroupBox" name="startbox">
  1602. <property name="geometry">
  1603. <rect>
  1604. <x>90</x>
  1605. <y>560</y>
  1606. <width>341</width>
  1607. <height>161</height>
  1608. </rect>
  1609. </property>
  1610. <property name="title">
  1611. <string/>
  1612. </property>
  1613. <widget class="QGroupBox" name="startframe">
  1614. <property name="geometry">
  1615. <rect>
  1616. <x>0</x>
  1617. <y>0</y>
  1618. <width>331</width>
  1619. <height>161</height>
  1620. </rect>
  1621. </property>
  1622. <property name="title">
  1623. <string/>
  1624. </property>
  1625. <widget class="QPushButton" name="goOriginal">
  1626. <property name="geometry">
  1627. <rect>
  1628. <x>20</x>
  1629. <y>31</y>
  1630. <width>91</width>
  1631. <height>91</height>
  1632. </rect>
  1633. </property>
  1634. <property name="cursor">
  1635. <cursorShape>PointingHandCursor</cursorShape>
  1636. </property>
  1637. <property name="text">
  1638. <string/>
  1639. </property>
  1640. </widget>
  1641. <widget class="QPushButton" name="goLocal">
  1642. <property name="geometry">
  1643. <rect>
  1644. <x>120</x>
  1645. <y>31</y>
  1646. <width>91</width>
  1647. <height>91</height>
  1648. </rect>
  1649. </property>
  1650. <property name="cursor">
  1651. <cursorShape>PointingHandCursor</cursorShape>
  1652. </property>
  1653. <property name="text">
  1654. <string/>
  1655. </property>
  1656. </widget>
  1657. <widget class="QPushButton" name="goCancel">
  1658. <property name="geometry">
  1659. <rect>
  1660. <x>220</x>
  1661. <y>31</y>
  1662. <width>91</width>
  1663. <height>91</height>
  1664. </rect>
  1665. </property>
  1666. <property name="cursor">
  1667. <cursorShape>PointingHandCursor</cursorShape>
  1668. </property>
  1669. <property name="text">
  1670. <string/>
  1671. </property>
  1672. </widget>
  1673. <widget class="QLabel" name="goTitle">
  1674. <property name="geometry">
  1675. <rect>
  1676. <x>20</x>
  1677. <y>125</y>
  1678. <width>291</width>
  1679. <height>21</height>
  1680. </rect>
  1681. </property>
  1682. <property name="text">
  1683. <string>Во что будем играть сегодня?</string>
  1684. </property>
  1685. <property name="alignment">
  1686. <set>Qt::AlignCenter</set>
  1687. </property>
  1688. </widget>
  1689. <widget class="QLabel" name="goHeader">
  1690. <property name="geometry">
  1691. <rect>
  1692. <x>0</x>
  1693. <y>0</y>
  1694. <width>331</width>
  1695. <height>34</height>
  1696. </rect>
  1697. </property>
  1698. <property name="text">
  1699. <string>Запуск игры</string>
  1700. </property>
  1701. </widget>
  1702. <widget class="QProgressBar" name="goProgress">
  1703. <property name="geometry">
  1704. <rect>
  1705. <x>20</x>
  1706. <y>130</y>
  1707. <width>291</width>
  1708. <height>23</height>
  1709. </rect>
  1710. </property>
  1711. <property name="maximum">
  1712. <number>0</number>
  1713. </property>
  1714. <property name="value">
  1715. <number>-1</number>
  1716. </property>
  1717. <property name="textVisible">
  1718. <bool>false</bool>
  1719. </property>
  1720. </widget>
  1721. <widget class="QLabel" name="goHint">
  1722. <property name="geometry">
  1723. <rect>
  1724. <x>60</x>
  1725. <y>113</y>
  1726. <width>201</width>
  1727. <height>16</height>
  1728. </rect>
  1729. </property>
  1730. <property name="text">
  1731. <string>Подготовка файлов локализации ...</string>
  1732. </property>
  1733. <property name="alignment">
  1734. <set>Qt::AlignCenter</set>
  1735. </property>
  1736. </widget>
  1737. </widget>
  1738. </widget>
  1739. <widget class="QLabel" name="labelVersion">
  1740. <property name="geometry">
  1741. <rect>
  1742. <x>10</x>
  1743. <y>440</y>
  1744. <width>81</width>
  1745. <height>16</height>
  1746. </rect>
  1747. </property>
  1748. <property name="text">
  1749. <string>Наследие: v2.0.0</string>
  1750. </property>
  1751. </widget>
  1752. <widget class="QPushButton" name="designButton">
  1753. <property name="geometry">
  1754. <rect>
  1755. <x>820</x>
  1756. <y>710</y>
  1757. <width>71</width>
  1758. <height>23</height>
  1759. </rect>
  1760. </property>
  1761. <property name="text">
  1762. <string>Обновить</string>
  1763. </property>
  1764. </widget>
  1765. <widget class="QLabel" name="mainTitle">
  1766. <property name="geometry">
  1767. <rect>
  1768. <x>20</x>
  1769. <y>710</y>
  1770. <width>47</width>
  1771. <height>13</height>
  1772. </rect>
  1773. </property>
  1774. <property name="text">
  1775. <string>Властелин колец Онлайн: Наследие</string>
  1776. </property>
  1777. </widget>
  1778. <zorder>newsboxImage</zorder>
  1779. <zorder>optboxImage</zorder>
  1780. <zorder>mainboxImage</zorder>
  1781. <zorder>mainButton</zorder>
  1782. <zorder>optButton</zorder>
  1783. <zorder>newsButton</zorder>
  1784. <zorder>helpButton</zorder>
  1785. <zorder>aboutButton</zorder>
  1786. <zorder>enterButton</zorder>
  1787. <zorder>titleLabel</zorder>
  1788. <zorder>hintLabel</zorder>
  1789. <zorder>exthintLabel</zorder>
  1790. <zorder>mainbox</zorder>
  1791. <zorder>optbox</zorder>
  1792. <zorder>newsbox</zorder>
  1793. <zorder>helpbox</zorder>
  1794. <zorder>aboutbox</zorder>
  1795. <zorder>helpboxImage</zorder>
  1796. <zorder>aboutboxImage</zorder>
  1797. <zorder>minimizeButton</zorder>
  1798. <zorder>closeButton</zorder>
  1799. <zorder>serversbox</zorder>
  1800. <zorder>couponButton</zorder>
  1801. <zorder>couponTitle</zorder>
  1802. <zorder>footRed</zorder>
  1803. <zorder>footYellow</zorder>
  1804. <zorder>loader</zorder>
  1805. <zorder>startbox</zorder>
  1806. <zorder>labelVersion</zorder>
  1807. <zorder>dialogbox</zorder>
  1808. <zorder>designButton</zorder>
  1809. <zorder>mainTitle</zorder>
  1810. </widget>
  1811. </widget>
  1812. <layoutdefault spacing="6" margin="11"/>
  1813. <resources/>
  1814. <connections/>
  1815. </ui>