statuswidget.ui 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3. <class>StatusWidget</class>
  4. <widget class="QWidget" name="StatusWidget">
  5. <property name="geometry">
  6. <rect>
  7. <x>0</x>
  8. <y>0</y>
  9. <width>1000</width>
  10. <height>530</height>
  11. </rect>
  12. </property>
  13. <property name="sizePolicy">
  14. <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
  15. <horstretch>0</horstretch>
  16. <verstretch>0</verstretch>
  17. </sizepolicy>
  18. </property>
  19. <property name="windowTitle">
  20. <string>Form</string>
  21. </property>
  22. <property name="styleSheet">
  23. <string notr="true">QLabel {
  24. color: white;
  25. }</string>
  26. </property>
  27. <widget class="QLabel" name="news_label">
  28. <property name="geometry">
  29. <rect>
  30. <x>45</x>
  31. <y>33</y>
  32. <width>180</width>
  33. <height>21</height>
  34. </rect>
  35. </property>
  36. <property name="font">
  37. <font>
  38. <family>Trajan Pro 3</family>
  39. <pointsize>10</pointsize>
  40. <kerning>false</kerning>
  41. </font>
  42. </property>
  43. <property name="text">
  44. <string>новости проекта</string>
  45. </property>
  46. </widget>
  47. <widget class="QScrollArea" name="news_scroll_area">
  48. <property name="geometry">
  49. <rect>
  50. <x>45</x>
  51. <y>75</y>
  52. <width>240</width>
  53. <height>453</height>
  54. </rect>
  55. </property>
  56. <property name="styleSheet">
  57. <string notr="true">QScrollArea{
  58. background: transparent;
  59. }
  60. QScrollArea &gt; QWidget &gt; QWidget { background: transparent; }
  61. QScrollBar:vertical {
  62. border: 0px solid grey;
  63. background: transparent;
  64. width: 10px;
  65. margin: 10px 0 10px 0;
  66. }
  67. QScrollBar::handle:vertical {
  68. min-height: 10px;
  69. background-color:rgba(0,0,0,80);
  70. border-radius: 5px;
  71. border: 1px solid #6d6867;
  72. }
  73. QScrollBar::add-line:vertical {
  74. border: 0px solid grey;
  75. background: transparent;
  76. height: 1px;
  77. subcontrol-position: bottom;
  78. subcontrol-origin: margin;
  79. }
  80. QScrollBar::sub-line:vertical {
  81. border: 0px solid grey;
  82. background: transparent;
  83. height: 1px;
  84. subcontrol-position: top;
  85. subcontrol-origin: margin;
  86. }
  87. QScrollBar::up-arrow:vertical, QScrollBar::down-arrow:vertical {
  88. border: 0px;
  89. width: 0px;
  90. height: 0px;
  91. background: transparent;
  92. }
  93. QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical {
  94. background: none;
  95. }</string>
  96. </property>
  97. <property name="frameShape">
  98. <enum>QFrame::NoFrame</enum>
  99. </property>
  100. <property name="widgetResizable">
  101. <bool>true</bool>
  102. </property>
  103. <widget class="NewsListWidget" name="news_list">
  104. <property name="geometry">
  105. <rect>
  106. <x>0</x>
  107. <y>0</y>
  108. <width>240</width>
  109. <height>453</height>
  110. </rect>
  111. </property>
  112. </widget>
  113. </widget>
  114. <widget class="ServerStatusWidget" name="server_status_widget" native="true">
  115. <property name="geometry">
  116. <rect>
  117. <x>820</x>
  118. <y>120</y>
  119. <width>155</width>
  120. <height>320</height>
  121. </rect>
  122. </property>
  123. </widget>
  124. <widget class="WeeklyCodeWidget" name="weekly_code_widget" native="true">
  125. <property name="geometry">
  126. <rect>
  127. <x>800</x>
  128. <y>10</y>
  129. <width>181</width>
  130. <height>61</height>
  131. </rect>
  132. </property>
  133. <property name="autoFillBackground">
  134. <bool>false</bool>
  135. </property>
  136. <property name="styleSheet">
  137. <string notr="true"/>
  138. </property>
  139. </widget>
  140. <widget class="QPushButton" name="game_button">
  141. <property name="geometry">
  142. <rect>
  143. <x>819</x>
  144. <y>460</y>
  145. <width>151</width>
  146. <height>51</height>
  147. </rect>
  148. </property>
  149. <property name="sizePolicy">
  150. <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
  151. <horstretch>0</horstretch>
  152. <verstretch>0</verstretch>
  153. </sizepolicy>
  154. </property>
  155. <property name="font">
  156. <font>
  157. <family>Trajan Pro 3</family>
  158. <pointsize>11</pointsize>
  159. <weight>50</weight>
  160. <bold>false</bold>
  161. <kerning>false</kerning>
  162. </font>
  163. </property>
  164. <property name="autoFillBackground">
  165. <bool>false</bool>
  166. </property>
  167. <property name="styleSheet">
  168. <string notr="true">QPushButton#game_button {
  169. color: white;
  170. border-image: url(:/buttons/button_big_normal.png);
  171. }
  172. QPushButton#game_button:hover {
  173. color: white;
  174. border-image: url(:/buttons/button_big_over.png);
  175. }
  176. QPushButton#game_button:pressed {
  177. color: white;
  178. border-image: url(:/buttons/button_big_pressed.png);
  179. }
  180. QPushButton#game_button:disabled {
  181. color: white;
  182. border-image: url(:/buttons/button_big_disabled.png);
  183. }
  184. </string>
  185. </property>
  186. <property name="text">
  187. <string notr="true"> ИГРАТЬ </string>
  188. </property>
  189. <property name="iconSize">
  190. <size>
  191. <width>0</width>
  192. <height>0</height>
  193. </size>
  194. </property>
  195. <property name="default">
  196. <bool>false</bool>
  197. </property>
  198. <property name="flat">
  199. <bool>true</bool>
  200. </property>
  201. </widget>
  202. <widget class="QWidget" name="widget" native="true">
  203. <property name="geometry">
  204. <rect>
  205. <x>290</x>
  206. <y>480</y>
  207. <width>521</width>
  208. <height>24</height>
  209. </rect>
  210. </property>
  211. <property name="minimumSize">
  212. <size>
  213. <width>26</width>
  214. <height>24</height>
  215. </size>
  216. </property>
  217. <property name="maximumSize">
  218. <size>
  219. <width>16777215</width>
  220. <height>24</height>
  221. </size>
  222. </property>
  223. <property name="styleSheet">
  224. <string notr="true">border-image: url(:/buttons/progressbar.png) 0 0 0 0 stretch stretch;</string>
  225. </property>
  226. </widget>
  227. <widget class="QLabel" name="galadriel_tooltip_example">
  228. <property name="enabled">
  229. <bool>false</bool>
  230. </property>
  231. <property name="geometry">
  232. <rect>
  233. <x>310</x>
  234. <y>420</y>
  235. <width>491</width>
  236. <height>51</height>
  237. </rect>
  238. </property>
  239. <property name="font">
  240. <font>
  241. <family>EB Garamond</family>
  242. <pointsize>12</pointsize>
  243. <italic>false</italic>
  244. </font>
  245. </property>
  246. <property name="styleSheet">
  247. <string notr="true"/>
  248. </property>
  249. <property name="text">
  250. <string>TEST TOOLTIP USED FOR STYLE DESC</string>
  251. </property>
  252. <property name="alignment">
  253. <set>Qt::AlignCenter</set>
  254. </property>
  255. <property name="wordWrap">
  256. <bool>true</bool>
  257. </property>
  258. </widget>
  259. <widget class="QWidget" name="sub_entry_1" native="true">
  260. <property name="geometry">
  261. <rect>
  262. <x>310</x>
  263. <y>10</y>
  264. <width>471</width>
  265. <height>131</height>
  266. </rect>
  267. </property>
  268. <property name="sizePolicy">
  269. <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
  270. <horstretch>0</horstretch>
  271. <verstretch>0</verstretch>
  272. </sizepolicy>
  273. </property>
  274. <property name="styleSheet">
  275. <string notr="true">QWidget#sub_entry_1{
  276. background-color: rgba(31, 19, 7, 155);
  277. border-radius: 5px;
  278. border: 1px solid rgba(149, 149, 149, 155);
  279. background-attachment: fixed;
  280. }</string>
  281. </property>
  282. <layout class="QGridLayout" name="gridLayout">
  283. <property name="verticalSpacing">
  284. <number>10</number>
  285. </property>
  286. <item row="1" column="0">
  287. <widget class="QWidget" name="widget_2" native="true">
  288. <layout class="QHBoxLayout" name="horizontalLayout">
  289. <property name="leftMargin">
  290. <number>0</number>
  291. </property>
  292. <property name="topMargin">
  293. <number>0</number>
  294. </property>
  295. <property name="rightMargin">
  296. <number>0</number>
  297. </property>
  298. <property name="bottomMargin">
  299. <number>0</number>
  300. </property>
  301. <item>
  302. <widget class="QLabel" name="game_folder_label">
  303. <property name="font">
  304. <font>
  305. <family>Crimson Text</family>
  306. <pointsize>11</pointsize>
  307. </font>
  308. </property>
  309. <property name="styleSheet">
  310. <string notr="true">
  311. background-color: none;</string>
  312. </property>
  313. <property name="text">
  314. <string>Папка с игрой:</string>
  315. </property>
  316. </widget>
  317. </item>
  318. <item>
  319. <widget class="QLabel" name="game_folder_path">
  320. <property name="sizePolicy">
  321. <sizepolicy hsizetype="Expanding" vsizetype="Preferred">
  322. <horstretch>0</horstretch>
  323. <verstretch>0</verstretch>
  324. </sizepolicy>
  325. </property>
  326. <property name="font">
  327. <font>
  328. <family>Crimson Text</family>
  329. <pointsize>11</pointsize>
  330. </font>
  331. </property>
  332. <property name="styleSheet">
  333. <string notr="true">
  334. background-color: none;</string>
  335. </property>
  336. <property name="text">
  337. <string>(не выбрано)</string>
  338. </property>
  339. </widget>
  340. </item>
  341. <item>
  342. <widget class="QPushButton" name="change_folder_button">
  343. <property name="sizePolicy">
  344. <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
  345. <horstretch>0</horstretch>
  346. <verstretch>0</verstretch>
  347. </sizepolicy>
  348. </property>
  349. <property name="minimumSize">
  350. <size>
  351. <width>36</width>
  352. <height>32</height>
  353. </size>
  354. </property>
  355. <property name="cursor">
  356. <cursorShape>PointingHandCursor</cursorShape>
  357. </property>
  358. <property name="focusPolicy">
  359. <enum>Qt::NoFocus</enum>
  360. </property>
  361. <property name="styleSheet">
  362. <string notr="true">border-image: url(:/buttons/folder.png);
  363. background-color: none;</string>
  364. </property>
  365. <property name="text">
  366. <string/>
  367. </property>
  368. </widget>
  369. </item>
  370. </layout>
  371. </widget>
  372. </item>
  373. <item row="0" column="0">
  374. <widget class="QLabel" name="sub_entry_1_title">
  375. <property name="sizePolicy">
  376. <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
  377. <horstretch>0</horstretch>
  378. <verstretch>0</verstretch>
  379. </sizepolicy>
  380. </property>
  381. <property name="font">
  382. <font>
  383. <family>EB Garamond</family>
  384. <pointsize>11</pointsize>
  385. </font>
  386. </property>
  387. <property name="text">
  388. <string>● Параметры игры ●</string>
  389. </property>
  390. <property name="alignment">
  391. <set>Qt::AlignCenter</set>
  392. </property>
  393. <property name="wordWrap">
  394. <bool>false</bool>
  395. </property>
  396. </widget>
  397. </item>
  398. <item row="2" column="0">
  399. <widget class="QWidget" name="widget_5" native="true">
  400. <property name="sizePolicy">
  401. <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
  402. <horstretch>0</horstretch>
  403. <verstretch>0</verstretch>
  404. </sizepolicy>
  405. </property>
  406. <property name="minimumSize">
  407. <size>
  408. <width>0</width>
  409. <height>30</height>
  410. </size>
  411. </property>
  412. <property name="font">
  413. <font>
  414. <pointsize>8</pointsize>
  415. </font>
  416. </property>
  417. <layout class="QHBoxLayout" name="horizontalLayout_2">
  418. <property name="leftMargin">
  419. <number>0</number>
  420. </property>
  421. <property name="topMargin">
  422. <number>0</number>
  423. </property>
  424. <property name="rightMargin">
  425. <number>0</number>
  426. </property>
  427. <property name="bottomMargin">
  428. <number>0</number>
  429. </property>
  430. <item>
  431. <widget class="QLabel" name="lotro_base_language_label">
  432. <property name="font">
  433. <font>
  434. <family>Crimson Text</family>
  435. <pointsize>11</pointsize>
  436. </font>
  437. </property>
  438. <property name="text">
  439. <string>Версия игры для перевода?</string>
  440. </property>
  441. </widget>
  442. </item>
  443. <item>
  444. <widget class="QComboBox" name="lotro_base_language_combobox">
  445. <property name="sizePolicy">
  446. <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
  447. <horstretch>0</horstretch>
  448. <verstretch>0</verstretch>
  449. </sizepolicy>
  450. </property>
  451. <property name="minimumSize">
  452. <size>
  453. <width>130</width>
  454. <height>0</height>
  455. </size>
  456. </property>
  457. <property name="font">
  458. <font>
  459. <family>Crimson Text</family>
  460. <pointsize>11</pointsize>
  461. </font>
  462. </property>
  463. <property name="focusPolicy">
  464. <enum>Qt::ClickFocus</enum>
  465. </property>
  466. <property name="styleSheet">
  467. <string notr="true">background: silver;
  468. color: black;
  469. border-radius: 3px;</string>
  470. </property>
  471. <property name="currentText">
  472. <string>Английская</string>
  473. </property>
  474. <property name="sizeAdjustPolicy">
  475. <enum>QComboBox::AdjustToContentsOnFirstShow</enum>
  476. </property>
  477. <property name="frame">
  478. <bool>true</bool>
  479. </property>
  480. <item>
  481. <property name="text">
  482. <string>Английская</string>
  483. </property>
  484. </item>
  485. <item>
  486. <property name="text">
  487. <string>Немецкая</string>
  488. </property>
  489. </item>
  490. <item>
  491. <property name="text">
  492. <string>Французская</string>
  493. </property>
  494. </item>
  495. </widget>
  496. </item>
  497. <item>
  498. <spacer name="horizontalSpacer_4">
  499. <property name="orientation">
  500. <enum>Qt::Horizontal</enum>
  501. </property>
  502. <property name="sizeHint" stdset="0">
  503. <size>
  504. <width>40</width>
  505. <height>20</height>
  506. </size>
  507. </property>
  508. </spacer>
  509. </item>
  510. </layout>
  511. </widget>
  512. </item>
  513. </layout>
  514. </widget>
  515. <widget class="QWidget" name="sub_entry_3" native="true">
  516. <property name="geometry">
  517. <rect>
  518. <x>310</x>
  519. <y>150</y>
  520. <width>471</width>
  521. <height>251</height>
  522. </rect>
  523. </property>
  524. <property name="styleSheet">
  525. <string notr="true">QWidget#sub_entry_3 {
  526. background-color: rgba(31, 19, 7, 155);
  527. border-radius: 5px;
  528. border: 1px solid rgba(149, 149, 149, 155);
  529. background-attachment: fixed;
  530. }</string>
  531. </property>
  532. <layout class="QVBoxLayout" name="verticalLayout_2">
  533. <property name="spacing">
  534. <number>12</number>
  535. </property>
  536. <item>
  537. <widget class="QLabel" name="sub_entry_3_title">
  538. <property name="sizePolicy">
  539. <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
  540. <horstretch>0</horstretch>
  541. <verstretch>0</verstretch>
  542. </sizepolicy>
  543. </property>
  544. <property name="font">
  545. <font>
  546. <family>EB Garamond</family>
  547. <pointsize>11</pointsize>
  548. </font>
  549. </property>
  550. <property name="text">
  551. <string>● Компоненты перевода ●</string>
  552. </property>
  553. <property name="alignment">
  554. <set>Qt::AlignCenter</set>
  555. </property>
  556. <property name="wordWrap">
  557. <bool>false</bool>
  558. </property>
  559. </widget>
  560. </item>
  561. <item>
  562. <widget class="QWidget" name="a_texts_block" native="true">
  563. <layout class="QHBoxLayout" name="horizontalLayout_3">
  564. <property name="spacing">
  565. <number>3</number>
  566. </property>
  567. <property name="topMargin">
  568. <number>0</number>
  569. </property>
  570. <property name="rightMargin">
  571. <number>0</number>
  572. </property>
  573. <property name="bottomMargin">
  574. <number>0</number>
  575. </property>
  576. <item>
  577. <widget class="TooltipButton" name="texts_block_label">
  578. <property name="font">
  579. <font>
  580. <family>Crimson Text</family>
  581. <pointsize>12</pointsize>
  582. </font>
  583. </property>
  584. <property name="autoFillBackground">
  585. <bool>false</bool>
  586. </property>
  587. <property name="styleSheet">
  588. <string notr="true">border-bottom: 3px dotted #fff;
  589. </string>
  590. </property>
  591. <property name="frameShape">
  592. <enum>QFrame::NoFrame</enum>
  593. </property>
  594. <property name="text">
  595. <string>Тексты</string>
  596. </property>
  597. <property name="alignment">
  598. <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
  599. </property>
  600. </widget>
  601. </item>
  602. <item>
  603. <spacer name="horizontalSpacer">
  604. <property name="orientation">
  605. <enum>Qt::Horizontal</enum>
  606. </property>
  607. <property name="sizeHint" stdset="0">
  608. <size>
  609. <width>40</width>
  610. <height>20</height>
  611. </size>
  612. </property>
  613. </spacer>
  614. </item>
  615. <item>
  616. <widget class="SwitchButton" name="texts_block_switch" native="true">
  617. <property name="minimumSize">
  618. <size>
  619. <width>110</width>
  620. <height>0</height>
  621. </size>
  622. </property>
  623. <property name="cursor">
  624. <cursorShape>PointingHandCursor</cursorShape>
  625. </property>
  626. <property name="focusPolicy">
  627. <enum>Qt::NoFocus</enum>
  628. </property>
  629. </widget>
  630. </item>
  631. </layout>
  632. </widget>
  633. </item>
  634. <item>
  635. <widget class="QWidget" name="b_graphics_block" native="true">
  636. <layout class="QHBoxLayout" name="horizontalLayout_4">
  637. <property name="spacing">
  638. <number>3</number>
  639. </property>
  640. <property name="topMargin">
  641. <number>0</number>
  642. </property>
  643. <property name="rightMargin">
  644. <number>0</number>
  645. </property>
  646. <property name="bottomMargin">
  647. <number>0</number>
  648. </property>
  649. <item>
  650. <widget class="TooltipButton" name="graphics_block_label">
  651. <property name="font">
  652. <font>
  653. <family>Crimson Text</family>
  654. <pointsize>12</pointsize>
  655. </font>
  656. </property>
  657. <property name="autoFillBackground">
  658. <bool>false</bool>
  659. </property>
  660. <property name="styleSheet">
  661. <string notr="true">border-bottom: 3px dotted #fff;
  662. </string>
  663. </property>
  664. <property name="frameShape">
  665. <enum>QFrame::NoFrame</enum>
  666. </property>
  667. <property name="text">
  668. <string>Изображения</string>
  669. </property>
  670. <property name="alignment">
  671. <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
  672. </property>
  673. </widget>
  674. </item>
  675. <item>
  676. <spacer name="horizontalSpacer_2">
  677. <property name="orientation">
  678. <enum>Qt::Horizontal</enum>
  679. </property>
  680. <property name="sizeHint" stdset="0">
  681. <size>
  682. <width>40</width>
  683. <height>20</height>
  684. </size>
  685. </property>
  686. </spacer>
  687. </item>
  688. <item>
  689. <widget class="SwitchButton" name="graphics_block_switch" native="true">
  690. <property name="minimumSize">
  691. <size>
  692. <width>110</width>
  693. <height>0</height>
  694. </size>
  695. </property>
  696. <property name="cursor">
  697. <cursorShape>PointingHandCursor</cursorShape>
  698. </property>
  699. <property name="focusPolicy">
  700. <enum>Qt::NoFocus</enum>
  701. </property>
  702. </widget>
  703. </item>
  704. </layout>
  705. </widget>
  706. </item>
  707. <item>
  708. <widget class="QWidget" name="c_video_block" native="true">
  709. <layout class="QHBoxLayout" name="horizontalLayout_5">
  710. <property name="spacing">
  711. <number>3</number>
  712. </property>
  713. <property name="topMargin">
  714. <number>0</number>
  715. </property>
  716. <property name="rightMargin">
  717. <number>0</number>
  718. </property>
  719. <property name="bottomMargin">
  720. <number>0</number>
  721. </property>
  722. <item>
  723. <widget class="TooltipButton" name="video_block_label">
  724. <property name="font">
  725. <font>
  726. <family>Crimson Text</family>
  727. <pointsize>12</pointsize>
  728. </font>
  729. </property>
  730. <property name="autoFillBackground">
  731. <bool>false</bool>
  732. </property>
  733. <property name="styleSheet">
  734. <string notr="true">border-bottom: 3px dotted #fff;
  735. </string>
  736. </property>
  737. <property name="frameShape">
  738. <enum>QFrame::NoFrame</enum>
  739. </property>
  740. <property name="text">
  741. <string>Видеоролики</string>
  742. </property>
  743. <property name="alignment">
  744. <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
  745. </property>
  746. </widget>
  747. </item>
  748. <item>
  749. <spacer name="horizontalSpacer_3">
  750. <property name="orientation">
  751. <enum>Qt::Horizontal</enum>
  752. </property>
  753. <property name="sizeHint" stdset="0">
  754. <size>
  755. <width>40</width>
  756. <height>20</height>
  757. </size>
  758. </property>
  759. </spacer>
  760. </item>
  761. <item>
  762. <widget class="SwitchButton" name="video_block_switch" native="true">
  763. <property name="minimumSize">
  764. <size>
  765. <width>110</width>
  766. <height>0</height>
  767. </size>
  768. </property>
  769. <property name="cursor">
  770. <cursorShape>PointingHandCursor</cursorShape>
  771. </property>
  772. <property name="focusPolicy">
  773. <enum>Qt::NoFocus</enum>
  774. </property>
  775. </widget>
  776. </item>
  777. </layout>
  778. </widget>
  779. </item>
  780. <item>
  781. <widget class="QWidget" name="d_audio_block" native="true">
  782. <layout class="QHBoxLayout" name="horizontalLayout_6">
  783. <property name="spacing">
  784. <number>3</number>
  785. </property>
  786. <property name="topMargin">
  787. <number>0</number>
  788. </property>
  789. <property name="rightMargin">
  790. <number>0</number>
  791. </property>
  792. <property name="bottomMargin">
  793. <number>0</number>
  794. </property>
  795. <item>
  796. <widget class="TooltipButton" name="audio_block_label">
  797. <property name="font">
  798. <font>
  799. <family>Crimson Text</family>
  800. <pointsize>12</pointsize>
  801. </font>
  802. </property>
  803. <property name="autoFillBackground">
  804. <bool>false</bool>
  805. </property>
  806. <property name="styleSheet">
  807. <string notr="true">border-bottom: 3px dotted #fff;
  808. </string>
  809. </property>
  810. <property name="frameShape">
  811. <enum>QFrame::NoFrame</enum>
  812. </property>
  813. <property name="text">
  814. <string>Озвучка персонажей</string>
  815. </property>
  816. <property name="alignment">
  817. <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
  818. </property>
  819. </widget>
  820. </item>
  821. <item>
  822. <spacer name="horizontalSpacer_5">
  823. <property name="orientation">
  824. <enum>Qt::Horizontal</enum>
  825. </property>
  826. <property name="sizeHint" stdset="0">
  827. <size>
  828. <width>40</width>
  829. <height>20</height>
  830. </size>
  831. </property>
  832. </spacer>
  833. </item>
  834. <item>
  835. <widget class="SwitchButton" name="audio_block_switch" native="true">
  836. <property name="minimumSize">
  837. <size>
  838. <width>110</width>
  839. <height>0</height>
  840. </size>
  841. </property>
  842. <property name="cursor">
  843. <cursorShape>PointingHandCursor</cursorShape>
  844. </property>
  845. <property name="focusPolicy">
  846. <enum>Qt::NoFocus</enum>
  847. </property>
  848. </widget>
  849. </item>
  850. </layout>
  851. </widget>
  852. </item>
  853. <item>
  854. <widget class="QWidget" name="e_loadscreens_block" native="true">
  855. <layout class="QHBoxLayout" name="horizontalLayout_7">
  856. <property name="spacing">
  857. <number>3</number>
  858. </property>
  859. <property name="topMargin">
  860. <number>0</number>
  861. </property>
  862. <property name="rightMargin">
  863. <number>0</number>
  864. </property>
  865. <property name="bottomMargin">
  866. <number>0</number>
  867. </property>
  868. <item>
  869. <widget class="TooltipButton" name="loadscreens_block_label">
  870. <property name="font">
  871. <font>
  872. <family>Crimson Text</family>
  873. <pointsize>12</pointsize>
  874. </font>
  875. </property>
  876. <property name="autoFillBackground">
  877. <bool>false</bool>
  878. </property>
  879. <property name="styleSheet">
  880. <string notr="true">border-bottom: 3px dotted #fff;
  881. </string>
  882. </property>
  883. <property name="frameShape">
  884. <enum>QFrame::NoFrame</enum>
  885. </property>
  886. <property name="text">
  887. <string>Загрузочные экраны</string>
  888. </property>
  889. <property name="alignment">
  890. <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
  891. </property>
  892. </widget>
  893. </item>
  894. <item>
  895. <spacer name="horizontalSpacer_6">
  896. <property name="orientation">
  897. <enum>Qt::Horizontal</enum>
  898. </property>
  899. <property name="sizeHint" stdset="0">
  900. <size>
  901. <width>40</width>
  902. <height>20</height>
  903. </size>
  904. </property>
  905. </spacer>
  906. </item>
  907. <item>
  908. <widget class="SwitchButton" name="loadscreens_block_switch" native="true">
  909. <property name="minimumSize">
  910. <size>
  911. <width>110</width>
  912. <height>0</height>
  913. </size>
  914. </property>
  915. <property name="cursor">
  916. <cursorShape>PointingHandCursor</cursorShape>
  917. </property>
  918. <property name="focusPolicy">
  919. <enum>Qt::NoFocus</enum>
  920. </property>
  921. </widget>
  922. </item>
  923. </layout>
  924. </widget>
  925. </item>
  926. </layout>
  927. </widget>
  928. <zorder>news_label</zorder>
  929. <zorder>news_scroll_area</zorder>
  930. <zorder>game_button</zorder>
  931. <zorder>server_status_widget</zorder>
  932. <zorder>weekly_code_widget</zorder>
  933. <zorder>widget</zorder>
  934. <zorder>galadriel_tooltip_example</zorder>
  935. <zorder>sub_entry_1</zorder>
  936. <zorder>sub_entry_3</zorder>
  937. </widget>
  938. <customwidgets>
  939. <customwidget>
  940. <class>ServerStatusWidget</class>
  941. <extends>QWidget</extends>
  942. <header>widgets/serverstatuswidget.h</header>
  943. <container>1</container>
  944. </customwidget>
  945. <customwidget>
  946. <class>NewsListWidget</class>
  947. <extends>QWidget</extends>
  948. <header>widgets/newslistwidget.h</header>
  949. <container>1</container>
  950. </customwidget>
  951. <customwidget>
  952. <class>WeeklyCodeWidget</class>
  953. <extends>QWidget</extends>
  954. <header>widgets/weeklycodewidget.h</header>
  955. <container>1</container>
  956. </customwidget>
  957. <customwidget>
  958. <class>SwitchButton</class>
  959. <extends>QWidget</extends>
  960. <header>widgets/switchbutton.h</header>
  961. <container>1</container>
  962. </customwidget>
  963. <customwidget>
  964. <class>TooltipButton</class>
  965. <extends>QLabel</extends>
  966. <header>widgets/tooltipbutton.h</header>
  967. </customwidget>
  968. </customwidgets>
  969. <resources/>
  970. <connections/>
  971. </ui>