OBSBasic.ui 64 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3. <author>Jim</author>
  4. <class>OBSBasic</class>
  5. <widget class="QMainWindow" name="OBSBasic">
  6. <property name="geometry">
  7. <rect>
  8. <x>0</x>
  9. <y>0</y>
  10. <width>1079</width>
  11. <height>729</height>
  12. </rect>
  13. </property>
  14. <property name="sizePolicy">
  15. <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
  16. <horstretch>0</horstretch>
  17. <verstretch>0</verstretch>
  18. </sizepolicy>
  19. </property>
  20. <property name="minimumSize">
  21. <size>
  22. <width>0</width>
  23. <height>0</height>
  24. </size>
  25. </property>
  26. <property name="windowTitle">
  27. <string>.MainWindow</string>
  28. </property>
  29. <property name="windowIcon">
  30. <iconset resource="obs.qrc">
  31. <normaloff>:/res/images/obs.png</normaloff>:/res/images/obs.png</iconset>
  32. </property>
  33. <property name="styleSheet">
  34. <string notr="true"/>
  35. </property>
  36. <property name="dockOptions">
  37. <set>QMainWindow::AllowNestedDocks|QMainWindow::AllowTabbedDocks|QMainWindow::AnimatedDocks</set>
  38. </property>
  39. <widget class="QWidget" name="centralwidget">
  40. <layout class="QVBoxLayout" name="verticalLayout">
  41. <property name="spacing">
  42. <number>0</number>
  43. </property>
  44. <property name="leftMargin">
  45. <number>0</number>
  46. </property>
  47. <property name="topMargin">
  48. <number>0</number>
  49. </property>
  50. <property name="rightMargin">
  51. <number>0</number>
  52. </property>
  53. <property name="bottomMargin">
  54. <number>0</number>
  55. </property>
  56. <item>
  57. <layout class="QHBoxLayout" name="horizontalLayout_2">
  58. <item>
  59. <layout class="QHBoxLayout" name="previewLayout">
  60. <property name="spacing">
  61. <number>2</number>
  62. </property>
  63. <item>
  64. <widget class="QFrame" name="previewDisabledWidget">
  65. <property name="sizePolicy">
  66. <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
  67. <horstretch>0</horstretch>
  68. <verstretch>0</verstretch>
  69. </sizepolicy>
  70. </property>
  71. <layout class="QVBoxLayout" name="verticalLayout_7">
  72. <item>
  73. <spacer name="verticalSpacer_2">
  74. <property name="orientation">
  75. <enum>Qt::Vertical</enum>
  76. </property>
  77. <property name="sizeHint" stdset="0">
  78. <size>
  79. <width>20</width>
  80. <height>40</height>
  81. </size>
  82. </property>
  83. </spacer>
  84. </item>
  85. <item>
  86. <widget class="QLabel" name="label">
  87. <property name="sizePolicy">
  88. <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
  89. <horstretch>0</horstretch>
  90. <verstretch>0</verstretch>
  91. </sizepolicy>
  92. </property>
  93. <property name="text">
  94. <string>Basic.Main.PreviewDisabled</string>
  95. </property>
  96. <property name="alignment">
  97. <set>Qt::AlignCenter</set>
  98. </property>
  99. </widget>
  100. </item>
  101. <item>
  102. <layout class="QHBoxLayout" name="horizontalLayout">
  103. <item>
  104. <spacer name="horizontalSpacer_2">
  105. <property name="orientation">
  106. <enum>Qt::Horizontal</enum>
  107. </property>
  108. <property name="sizeHint" stdset="0">
  109. <size>
  110. <width>40</width>
  111. <height>20</height>
  112. </size>
  113. </property>
  114. </spacer>
  115. </item>
  116. <item>
  117. <widget class="QPushButton" name="enablePreviewButton">
  118. <property name="text">
  119. <string>Basic.Main.PreviewConextMenu.Enable</string>
  120. </property>
  121. </widget>
  122. </item>
  123. <item>
  124. <spacer name="horizontalSpacer_3">
  125. <property name="orientation">
  126. <enum>Qt::Horizontal</enum>
  127. </property>
  128. <property name="sizeHint" stdset="0">
  129. <size>
  130. <width>40</width>
  131. <height>20</height>
  132. </size>
  133. </property>
  134. </spacer>
  135. </item>
  136. </layout>
  137. </item>
  138. <item>
  139. <spacer name="verticalSpacer_3">
  140. <property name="orientation">
  141. <enum>Qt::Vertical</enum>
  142. </property>
  143. <property name="sizeHint" stdset="0">
  144. <size>
  145. <width>20</width>
  146. <height>40</height>
  147. </size>
  148. </property>
  149. </spacer>
  150. </item>
  151. </layout>
  152. </widget>
  153. </item>
  154. <item>
  155. <layout class="QVBoxLayout" name="previewTextLayout">
  156. <property name="spacing">
  157. <number>0</number>
  158. </property>
  159. <item>
  160. <widget class="QLabel" name="previewLabel">
  161. <property name="text">
  162. <string>StudioMode.Preview</string>
  163. </property>
  164. <property name="alignment">
  165. <set>Qt::AlignBottom|Qt::AlignHCenter</set>
  166. </property>
  167. </widget>
  168. </item>
  169. <item>
  170. <widget class="OBSBasicPreview" name="preview">
  171. <property name="sizePolicy">
  172. <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
  173. <horstretch>0</horstretch>
  174. <verstretch>0</verstretch>
  175. </sizepolicy>
  176. </property>
  177. <property name="minimumSize">
  178. <size>
  179. <width>32</width>
  180. <height>32</height>
  181. </size>
  182. </property>
  183. <property name="focusPolicy">
  184. <enum>Qt::ClickFocus</enum>
  185. </property>
  186. <property name="contextMenuPolicy">
  187. <enum>Qt::CustomContextMenu</enum>
  188. </property>
  189. <addaction name="actionRemoveSource"/>
  190. </widget>
  191. </item>
  192. </layout>
  193. </item>
  194. </layout>
  195. </item>
  196. </layout>
  197. </item>
  198. <item>
  199. <widget class="QFrame" name="contextContainer">
  200. <property name="sizePolicy">
  201. <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
  202. <horstretch>0</horstretch>
  203. <verstretch>0</verstretch>
  204. </sizepolicy>
  205. </property>
  206. <property name="minimumSize">
  207. <size>
  208. <width>0</width>
  209. <height>30</height>
  210. </size>
  211. </property>
  212. <layout class="QHBoxLayout" name="horizontalLayout9">
  213. <property name="spacing">
  214. <number>6</number>
  215. </property>
  216. <property name="sizeConstraint">
  217. <enum>QLayout::SetDefaultConstraint</enum>
  218. </property>
  219. <property name="leftMargin">
  220. <number>6</number>
  221. </property>
  222. <property name="topMargin">
  223. <number>4</number>
  224. </property>
  225. <property name="rightMargin">
  226. <number>6</number>
  227. </property>
  228. <property name="bottomMargin">
  229. <number>4</number>
  230. </property>
  231. <item>
  232. <widget class="QFrame" name="contextSubContainer">
  233. <property name="sizePolicy">
  234. <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
  235. <horstretch>0</horstretch>
  236. <verstretch>0</verstretch>
  237. </sizepolicy>
  238. </property>
  239. <property name="minimumSize">
  240. <size>
  241. <width>0</width>
  242. <height>0</height>
  243. </size>
  244. </property>
  245. <layout class="QHBoxLayout" name="horizontalLayout_5">
  246. <property name="spacing">
  247. <number>6</number>
  248. </property>
  249. <property name="leftMargin">
  250. <number>0</number>
  251. </property>
  252. <property name="topMargin">
  253. <number>0</number>
  254. </property>
  255. <property name="rightMargin">
  256. <number>0</number>
  257. </property>
  258. <property name="bottomMargin">
  259. <number>0</number>
  260. </property>
  261. <item>
  262. <widget class="QLabel" name="contextSourceIcon">
  263. <property name="sizePolicy">
  264. <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
  265. <horstretch>0</horstretch>
  266. <verstretch>0</verstretch>
  267. </sizepolicy>
  268. </property>
  269. <property name="minimumSize">
  270. <size>
  271. <width>22</width>
  272. <height>22</height>
  273. </size>
  274. </property>
  275. <property name="maximumSize">
  276. <size>
  277. <width>22</width>
  278. <height>22</height>
  279. </size>
  280. </property>
  281. <property name="text">
  282. <string/>
  283. </property>
  284. </widget>
  285. </item>
  286. <item>
  287. <widget class="QLabel" name="contextSourceLabel">
  288. <property name="sizePolicy">
  289. <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
  290. <horstretch>0</horstretch>
  291. <verstretch>0</verstretch>
  292. </sizepolicy>
  293. </property>
  294. <property name="minimumSize">
  295. <size>
  296. <width>250</width>
  297. <height>22</height>
  298. </size>
  299. </property>
  300. <property name="maximumSize">
  301. <size>
  302. <width>250</width>
  303. <height>22</height>
  304. </size>
  305. </property>
  306. <property name="text">
  307. <string>TextLabel</string>
  308. </property>
  309. </widget>
  310. </item>
  311. <item>
  312. <widget class="Line" name="line_3">
  313. <property name="orientation">
  314. <enum>Qt::Vertical</enum>
  315. </property>
  316. </widget>
  317. </item>
  318. <item>
  319. <widget class="QPushButton" name="sourcePropertiesButton">
  320. <property name="sizePolicy">
  321. <sizepolicy hsizetype="Minimum" vsizetype="Fixed">
  322. <horstretch>0</horstretch>
  323. <verstretch>0</verstretch>
  324. </sizepolicy>
  325. </property>
  326. <property name="minimumSize">
  327. <size>
  328. <width>0</width>
  329. <height>22</height>
  330. </size>
  331. </property>
  332. <property name="toolTip">
  333. <string>Properties</string>
  334. </property>
  335. <property name="text">
  336. <string>Properties</string>
  337. </property>
  338. <property name="icon">
  339. <iconset resource="obs.qrc">
  340. <normaloff>:/settings/images/settings/general.svg</normaloff>:/settings/images/settings/general.svg</iconset>
  341. </property>
  342. <property name="flat">
  343. <bool>true</bool>
  344. </property>
  345. <property name="themeID2" stdset="0">
  346. <string notr="true">contextBarButton</string>
  347. </property>
  348. </widget>
  349. </item>
  350. <item>
  351. <widget class="QPushButton" name="sourceFiltersButton">
  352. <property name="minimumSize">
  353. <size>
  354. <width>0</width>
  355. <height>22</height>
  356. </size>
  357. </property>
  358. <property name="toolTip">
  359. <string>Filters</string>
  360. </property>
  361. <property name="text">
  362. <string>Filters</string>
  363. </property>
  364. <property name="icon">
  365. <iconset resource="obs.qrc">
  366. <normaloff>:/res/images/filter.svg</normaloff>:/res/images/filter.svg</iconset>
  367. </property>
  368. <property name="flat">
  369. <bool>true</bool>
  370. </property>
  371. <property name="themeID2" stdset="0">
  372. <string notr="true">contextBarButton</string>
  373. </property>
  374. </widget>
  375. </item>
  376. <item>
  377. <widget class="QPushButton" name="sourceInteractButton">
  378. <property name="minimumSize">
  379. <size>
  380. <width>0</width>
  381. <height>22</height>
  382. </size>
  383. </property>
  384. <property name="text">
  385. <string>Interact</string>
  386. </property>
  387. <property name="icon">
  388. <iconset resource="obs.qrc">
  389. <normaloff>:/res/images/interact.svg</normaloff>:/res/images/interact.svg</iconset>
  390. </property>
  391. <property name="flat">
  392. <bool>true</bool>
  393. </property>
  394. <property name="themeID2" stdset="0">
  395. <string notr="true">contextBarButton</string>
  396. </property>
  397. </widget>
  398. </item>
  399. <item>
  400. <widget class="Line" name="line">
  401. <property name="orientation">
  402. <enum>Qt::Vertical</enum>
  403. </property>
  404. </widget>
  405. </item>
  406. </layout>
  407. </widget>
  408. </item>
  409. <item>
  410. <widget class="QFrame" name="emptySpace">
  411. <property name="sizePolicy">
  412. <sizepolicy hsizetype="Expanding" vsizetype="Minimum">
  413. <horstretch>0</horstretch>
  414. <verstretch>0</verstretch>
  415. </sizepolicy>
  416. </property>
  417. <property name="minimumSize">
  418. <size>
  419. <width>0</width>
  420. <height>22</height>
  421. </size>
  422. </property>
  423. <layout class="QHBoxLayout" name="horizontalLayout_6">
  424. <property name="spacing">
  425. <number>0</number>
  426. </property>
  427. <property name="leftMargin">
  428. <number>0</number>
  429. </property>
  430. <property name="topMargin">
  431. <number>0</number>
  432. </property>
  433. <property name="rightMargin">
  434. <number>0</number>
  435. </property>
  436. <property name="bottomMargin">
  437. <number>0</number>
  438. </property>
  439. </layout>
  440. </widget>
  441. </item>
  442. </layout>
  443. </widget>
  444. </item>
  445. </layout>
  446. </widget>
  447. <widget class="QMenuBar" name="menubar">
  448. <property name="geometry">
  449. <rect>
  450. <x>0</x>
  451. <y>0</y>
  452. <width>1079</width>
  453. <height>21</height>
  454. </rect>
  455. </property>
  456. <widget class="QMenu" name="menu_File">
  457. <property name="title">
  458. <string>Basic.MainMenu.File</string>
  459. </property>
  460. <addaction name="actionShow_Recordings"/>
  461. <addaction name="actionRemux"/>
  462. <addaction name="separator"/>
  463. <addaction name="action_Settings"/>
  464. <addaction name="actionShowSettingsFolder"/>
  465. <addaction name="actionShowProfileFolder"/>
  466. <addaction name="separator"/>
  467. <addaction name="actionAlwaysOnTop"/>
  468. <addaction name="separator"/>
  469. <addaction name="actionE_xit"/>
  470. </widget>
  471. <widget class="QMenu" name="menuBasic_MainMenu_Help">
  472. <property name="title">
  473. <string>Basic.MainMenu.Help</string>
  474. </property>
  475. <widget class="QMenu" name="menuLogFiles">
  476. <property name="title">
  477. <string>Basic.MainMenu.Help.Logs</string>
  478. </property>
  479. <addaction name="actionShowLogs"/>
  480. <addaction name="actionUploadCurrentLog"/>
  481. <addaction name="actionUploadLastLog"/>
  482. <addaction name="actionViewCurrentLog"/>
  483. </widget>
  484. <widget class="QMenu" name="menuCrashLogs">
  485. <property name="title">
  486. <string>Basic.MainMenu.Help.CrashLogs</string>
  487. </property>
  488. <addaction name="actionShowCrashLogs"/>
  489. <addaction name="actionUploadLastCrashLog"/>
  490. </widget>
  491. <addaction name="actionHelpPortal"/>
  492. <addaction name="actionWebsite"/>
  493. <addaction name="actionDiscord"/>
  494. <addaction name="separator"/>
  495. <addaction name="menuLogFiles"/>
  496. <addaction name="menuCrashLogs"/>
  497. <addaction name="separator"/>
  498. <addaction name="actionCheckForUpdates"/>
  499. <addaction name="actionShowAbout"/>
  500. <addaction name="separator"/>
  501. </widget>
  502. <widget class="QMenu" name="menuBasic_MainMenu_Edit">
  503. <property name="title">
  504. <string>Basic.MainMenu.Edit</string>
  505. </property>
  506. <widget class="QMenu" name="transformMenu">
  507. <property name="title">
  508. <string>Basic.MainMenu.Edit.Transform</string>
  509. </property>
  510. <addaction name="actionEditTransform"/>
  511. <addaction name="actionCopyTransform"/>
  512. <addaction name="actionPasteTransform"/>
  513. <addaction name="actionResetTransform"/>
  514. <addaction name="separator"/>
  515. <addaction name="actionRotate90CW"/>
  516. <addaction name="actionRotate90CCW"/>
  517. <addaction name="actionRotate180"/>
  518. <addaction name="separator"/>
  519. <addaction name="actionFlipHorizontal"/>
  520. <addaction name="actionFlipVertical"/>
  521. <addaction name="separator"/>
  522. <addaction name="actionFitToScreen"/>
  523. <addaction name="actionStretchToScreen"/>
  524. <addaction name="actionCenterToScreen"/>
  525. <addaction name="actionVerticalCenter"/>
  526. <addaction name="actionHorizontalCenter"/>
  527. </widget>
  528. <widget class="QMenu" name="orderMenu">
  529. <property name="title">
  530. <string>Basic.MainMenu.Edit.Order</string>
  531. </property>
  532. <addaction name="actionMoveUp"/>
  533. <addaction name="actionMoveDown"/>
  534. <addaction name="separator"/>
  535. <addaction name="actionMoveToTop"/>
  536. <addaction name="actionMoveToBottom"/>
  537. </widget>
  538. <widget class="QMenu" name="scalingMenu">
  539. <property name="title">
  540. <string>Basic.MainMenu.Edit.Scale</string>
  541. </property>
  542. <addaction name="actionScaleWindow"/>
  543. <addaction name="actionScaleCanvas"/>
  544. <addaction name="actionScaleOutput"/>
  545. </widget>
  546. <action name="actionCopySource">
  547. <property name="text">
  548. <string>Copy</string>
  549. </property>
  550. <property name="shortcut">
  551. <string>Ctrl+C</string>
  552. </property>
  553. </action>
  554. <action name="actionPasteRef">
  555. <property name="enabled">
  556. <bool>false</bool>
  557. </property>
  558. <property name="text">
  559. <string>PasteReference</string>
  560. </property>
  561. <property name="iconText">
  562. <string>PasteReference</string>
  563. </property>
  564. <property name="toolTip">
  565. <string>PasteReference</string>
  566. </property>
  567. <property name="shortcut">
  568. <string>Ctrl+V</string>
  569. </property>
  570. </action>
  571. <action name="actionCopyFilters">
  572. <property name="text">
  573. <string>Copy.Filters</string>
  574. </property>
  575. </action>
  576. <action name="actionPasteFilters">
  577. <property name="enabled">
  578. <bool>false</bool>
  579. </property>
  580. <property name="text">
  581. <string>Paste.Filters</string>
  582. </property>
  583. </action>
  584. <addaction name="actionMainUndo"/>
  585. <addaction name="actionMainRedo"/>
  586. <addaction name="separator"/>
  587. <addaction name="actionCopySource"/>
  588. <addaction name="actionPasteRef"/>
  589. <addaction name="actionPasteDup"/>
  590. <addaction name="separator"/>
  591. <addaction name="actionCopyFilters"/>
  592. <addaction name="actionPasteFilters"/>
  593. <addaction name="separator"/>
  594. <addaction name="transformMenu"/>
  595. <addaction name="orderMenu"/>
  596. <addaction name="scalingMenu"/>
  597. <addaction name="actionLockPreview"/>
  598. <addaction name="separator"/>
  599. <addaction name="actionAdvAudioProperties"/>
  600. <addaction name="separator"/>
  601. </widget>
  602. <widget class="QMenu" name="profileMenu">
  603. <property name="title">
  604. <string>Basic.MainMenu.Profile</string>
  605. </property>
  606. <addaction name="actionNewProfile"/>
  607. <addaction name="actionDupProfile"/>
  608. <addaction name="actionRenameProfile"/>
  609. <addaction name="actionRemoveProfile"/>
  610. <addaction name="actionImportProfile"/>
  611. <addaction name="actionExportProfile"/>
  612. <addaction name="separator"/>
  613. </widget>
  614. <widget class="QMenu" name="sceneCollectionMenu">
  615. <property name="title">
  616. <string>Basic.MainMenu.SceneCollection</string>
  617. </property>
  618. <addaction name="actionNewSceneCollection"/>
  619. <addaction name="actionDupSceneCollection"/>
  620. <addaction name="actionRenameSceneCollection"/>
  621. <addaction name="actionRemoveSceneCollection"/>
  622. <addaction name="actionImportSceneCollection"/>
  623. <addaction name="actionExportSceneCollection"/>
  624. <addaction name="separator"/>
  625. <addaction name="actionShowMissingFiles"/>
  626. <addaction name="separator"/>
  627. </widget>
  628. <widget class="QMenu" name="viewMenu">
  629. <property name="title">
  630. <string>Basic.MainMenu.View</string>
  631. </property>
  632. <widget class="QMenu" name="viewMenuDocks">
  633. <property name="title">
  634. <string>Basic.MainMenu.View.Docks</string>
  635. </property>
  636. <addaction name="resetUI"/>
  637. <addaction name="lockUI"/>
  638. <addaction name="separator"/>
  639. <addaction name="toggleScenes"/>
  640. <addaction name="toggleSources"/>
  641. <addaction name="toggleMixer"/>
  642. <addaction name="toggleTransitions"/>
  643. <addaction name="toggleControls"/>
  644. <addaction name="toggleStats"/>
  645. </widget>
  646. <action name="actionFullscreenInterface">
  647. <property name="text">
  648. <string>Basic.MainMenu.View.Fullscreen.Interface</string>
  649. </property>
  650. <property name="shortcut">
  651. <string>F11</string>
  652. </property>
  653. </action>
  654. <addaction name="actionFullscreenInterface"/>
  655. <addaction name="separator"/>
  656. <addaction name="viewMenuDocks"/>
  657. <addaction name="toggleListboxToolbars"/>
  658. <addaction name="toggleContextBar"/>
  659. <addaction name="toggleSourceIcons"/>
  660. <addaction name="toggleStatusBar"/>
  661. <addaction name="separator"/>
  662. <addaction name="stats"/>
  663. </widget>
  664. <widget class="QMenu" name="menuTools">
  665. <property name="title">
  666. <string>Basic.MainMenu.Tools</string>
  667. </property>
  668. <addaction name="autoConfigure"/>
  669. <addaction name="separator"/>
  670. </widget>
  671. <addaction name="menu_File"/>
  672. <addaction name="menuBasic_MainMenu_Edit"/>
  673. <addaction name="viewMenu"/>
  674. <addaction name="profileMenu"/>
  675. <addaction name="sceneCollectionMenu"/>
  676. <addaction name="menuTools"/>
  677. <addaction name="menuBasic_MainMenu_Help"/>
  678. </widget>
  679. <widget class="OBSBasicStatusBar" name="statusbar"/>
  680. <widget class="OBSDock" name="scenesDock">
  681. <property name="features">
  682. <set>QDockWidget::DockWidgetClosable|QDockWidget::DockWidgetMovable|QDockWidget::DockWidgetFloatable</set>
  683. </property>
  684. <property name="windowTitle">
  685. <string>Basic.Main.Scenes</string>
  686. </property>
  687. <attribute name="dockWidgetArea">
  688. <number>8</number>
  689. </attribute>
  690. <widget class="QWidget" name="dockWidgetContents_2">
  691. <layout class="QVBoxLayout" name="verticalLayout_6">
  692. <property name="spacing">
  693. <number>0</number>
  694. </property>
  695. <property name="leftMargin">
  696. <number>0</number>
  697. </property>
  698. <property name="topMargin">
  699. <number>0</number>
  700. </property>
  701. <property name="rightMargin">
  702. <number>0</number>
  703. </property>
  704. <property name="bottomMargin">
  705. <number>0</number>
  706. </property>
  707. <item>
  708. <widget class="QFrame" name="scenesFrame">
  709. <property name="sizePolicy">
  710. <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
  711. <horstretch>0</horstretch>
  712. <verstretch>0</verstretch>
  713. </sizepolicy>
  714. </property>
  715. <property name="minimumSize">
  716. <size>
  717. <width>160</width>
  718. <height>0</height>
  719. </size>
  720. </property>
  721. <property name="frameShape">
  722. <enum>QFrame::StyledPanel</enum>
  723. </property>
  724. <property name="frameShadow">
  725. <enum>QFrame::Sunken</enum>
  726. </property>
  727. <layout class="QVBoxLayout" name="verticalLayout_12">
  728. <property name="spacing">
  729. <number>0</number>
  730. </property>
  731. <property name="leftMargin">
  732. <number>0</number>
  733. </property>
  734. <property name="topMargin">
  735. <number>0</number>
  736. </property>
  737. <property name="rightMargin">
  738. <number>0</number>
  739. </property>
  740. <property name="bottomMargin">
  741. <number>0</number>
  742. </property>
  743. <item>
  744. <widget class="SceneTree" name="scenes">
  745. <property name="sizePolicy">
  746. <sizepolicy hsizetype="Preferred" vsizetype="Expanding">
  747. <horstretch>0</horstretch>
  748. <verstretch>0</verstretch>
  749. </sizepolicy>
  750. </property>
  751. <property name="contextMenuPolicy">
  752. <enum>Qt::CustomContextMenu</enum>
  753. </property>
  754. <property name="frameShape">
  755. <enum>QFrame::NoFrame</enum>
  756. </property>
  757. <property name="frameShadow">
  758. <enum>QFrame::Plain</enum>
  759. </property>
  760. <property name="showDropIndicator" stdset="0">
  761. <bool>true</bool>
  762. </property>
  763. <property name="dragEnabled">
  764. <bool>true</bool>
  765. </property>
  766. <property name="dragDropMode">
  767. <enum>QAbstractItemView::InternalMove</enum>
  768. </property>
  769. <property name="defaultDropAction">
  770. <enum>Qt::TargetMoveAction</enum>
  771. </property>
  772. <addaction name="actionRemoveScene"/>
  773. </widget>
  774. </item>
  775. <item>
  776. <widget class="QToolBar" name="scenesToolbar">
  777. <property name="iconSize">
  778. <size>
  779. <width>16</width>
  780. <height>16</height>
  781. </size>
  782. </property>
  783. <property name="floatable">
  784. <bool>false</bool>
  785. </property>
  786. <addaction name="actionAddScene"/>
  787. <addaction name="actionRemoveScene"/>
  788. <addaction name="separator"/>
  789. <addaction name="actionSceneUp"/>
  790. <addaction name="actionSceneDown"/>
  791. </widget>
  792. </item>
  793. <item>
  794. <spacer name="scenesFixedSizeHSpacer">
  795. <property name="orientation">
  796. <enum>Qt::Horizontal</enum>
  797. </property>
  798. <property name="sizeType">
  799. <enum>QSizePolicy::Fixed</enum>
  800. </property>
  801. <property name="sizeHint" stdset="0">
  802. <size>
  803. <width>150</width>
  804. <height>0</height>
  805. </size>
  806. </property>
  807. </spacer>
  808. </item>
  809. </layout>
  810. </widget>
  811. </item>
  812. </layout>
  813. </widget>
  814. </widget>
  815. <widget class="OBSDock" name="sourcesDock">
  816. <property name="features">
  817. <set>QDockWidget::DockWidgetClosable|QDockWidget::DockWidgetMovable|QDockWidget::DockWidgetFloatable</set>
  818. </property>
  819. <property name="windowTitle">
  820. <string>Basic.Main.Sources</string>
  821. </property>
  822. <attribute name="dockWidgetArea">
  823. <number>8</number>
  824. </attribute>
  825. <widget class="QWidget" name="dockWidgetContents_6">
  826. <layout class="QVBoxLayout" name="verticalLayout_5">
  827. <property name="spacing">
  828. <number>0</number>
  829. </property>
  830. <property name="leftMargin">
  831. <number>0</number>
  832. </property>
  833. <property name="topMargin">
  834. <number>0</number>
  835. </property>
  836. <property name="rightMargin">
  837. <number>0</number>
  838. </property>
  839. <property name="bottomMargin">
  840. <number>0</number>
  841. </property>
  842. <item>
  843. <widget class="QFrame" name="sourcesFrame">
  844. <property name="sizePolicy">
  845. <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
  846. <horstretch>0</horstretch>
  847. <verstretch>0</verstretch>
  848. </sizepolicy>
  849. </property>
  850. <property name="minimumSize">
  851. <size>
  852. <width>160</width>
  853. <height>0</height>
  854. </size>
  855. </property>
  856. <property name="frameShape">
  857. <enum>QFrame::StyledPanel</enum>
  858. </property>
  859. <property name="frameShadow">
  860. <enum>QFrame::Sunken</enum>
  861. </property>
  862. <layout class="QVBoxLayout" name="verticalLayout_17">
  863. <property name="spacing">
  864. <number>0</number>
  865. </property>
  866. <property name="leftMargin">
  867. <number>0</number>
  868. </property>
  869. <property name="topMargin">
  870. <number>0</number>
  871. </property>
  872. <property name="rightMargin">
  873. <number>0</number>
  874. </property>
  875. <property name="bottomMargin">
  876. <number>0</number>
  877. </property>
  878. <item>
  879. <widget class="SourceTree" name="sources">
  880. <property name="sizePolicy">
  881. <sizepolicy hsizetype="Preferred" vsizetype="Expanding">
  882. <horstretch>0</horstretch>
  883. <verstretch>0</verstretch>
  884. </sizepolicy>
  885. </property>
  886. <property name="contextMenuPolicy">
  887. <enum>Qt::CustomContextMenu</enum>
  888. </property>
  889. <property name="frameShape">
  890. <enum>QFrame::NoFrame</enum>
  891. </property>
  892. <property name="showDropIndicator" stdset="0">
  893. <bool>true</bool>
  894. </property>
  895. <property name="dragEnabled">
  896. <bool>true</bool>
  897. </property>
  898. <property name="dragDropMode">
  899. <enum>QAbstractItemView::InternalMove</enum>
  900. </property>
  901. <property name="defaultDropAction">
  902. <enum>Qt::TargetMoveAction</enum>
  903. </property>
  904. <property name="selectionMode">
  905. <enum>QAbstractItemView::ExtendedSelection</enum>
  906. </property>
  907. <addaction name="actionRemoveSource"/>
  908. </widget>
  909. </item>
  910. <item>
  911. <widget class="QToolBar" name="sourcesToolbar">
  912. <property name="iconSize">
  913. <size>
  914. <width>16</width>
  915. <height>16</height>
  916. </size>
  917. </property>
  918. <property name="floatable">
  919. <bool>false</bool>
  920. </property>
  921. <addaction name="actionAddSource"/>
  922. <addaction name="actionRemoveSource"/>
  923. <addaction name="actionSourceProperties"/>
  924. <addaction name="separator"/>
  925. <addaction name="actionSourceUp"/>
  926. <addaction name="actionSourceDown"/>
  927. </widget>
  928. </item>
  929. <item>
  930. <spacer name="sourcesFixedSizeHSpacer">
  931. <property name="orientation">
  932. <enum>Qt::Horizontal</enum>
  933. </property>
  934. <property name="sizeType">
  935. <enum>QSizePolicy::Fixed</enum>
  936. </property>
  937. <property name="sizeHint" stdset="0">
  938. <size>
  939. <width>150</width>
  940. <height>0</height>
  941. </size>
  942. </property>
  943. </spacer>
  944. </item>
  945. </layout>
  946. </widget>
  947. </item>
  948. </layout>
  949. </widget>
  950. </widget>
  951. <widget class="OBSDock" name="mixerDock">
  952. <property name="features">
  953. <set>QDockWidget::DockWidgetClosable|QDockWidget::DockWidgetMovable|QDockWidget::DockWidgetFloatable</set>
  954. </property>
  955. <property name="windowTitle">
  956. <string>Mixer</string>
  957. </property>
  958. <attribute name="dockWidgetArea">
  959. <number>8</number>
  960. </attribute>
  961. <widget class="QWidget" name="dockWidgetContents_7">
  962. <layout class="QVBoxLayout" name="verticalLayout_4">
  963. <property name="spacing">
  964. <number>0</number>
  965. </property>
  966. <property name="leftMargin">
  967. <number>0</number>
  968. </property>
  969. <property name="topMargin">
  970. <number>0</number>
  971. </property>
  972. <property name="rightMargin">
  973. <number>0</number>
  974. </property>
  975. <property name="bottomMargin">
  976. <number>0</number>
  977. </property>
  978. <item>
  979. <widget class="QStackedWidget" name="stackedMixerArea">
  980. <widget class="VScrollArea" name="hMixerScrollArea">
  981. <property name="contextMenuPolicy">
  982. <enum>Qt::CustomContextMenu</enum>
  983. </property>
  984. <property name="frameShape">
  985. <enum>QFrame::StyledPanel</enum>
  986. </property>
  987. <property name="frameShadow">
  988. <enum>QFrame::Sunken</enum>
  989. </property>
  990. <property name="verticalScrollBarPolicy">
  991. <enum>Qt::ScrollBarAlwaysOn</enum>
  992. </property>
  993. <property name="horizontalScrollBarPolicy">
  994. <enum>Qt::ScrollBarAlwaysOff</enum>
  995. </property>
  996. <property name="widgetResizable">
  997. <bool>true</bool>
  998. </property>
  999. <widget class="QWidget" name="hVolumeWidgets">
  1000. <property name="geometry">
  1001. <rect>
  1002. <x>0</x>
  1003. <y>0</y>
  1004. <width>94</width>
  1005. <height>16</height>
  1006. </rect>
  1007. </property>
  1008. <property name="sizePolicy">
  1009. <sizepolicy hsizetype="Preferred" vsizetype="Maximum">
  1010. <horstretch>0</horstretch>
  1011. <verstretch>0</verstretch>
  1012. </sizepolicy>
  1013. </property>
  1014. <layout class="QVBoxLayout" name="hVolControlLayout">
  1015. <property name="spacing">
  1016. <number>0</number>
  1017. </property>
  1018. <property name="leftMargin">
  1019. <number>0</number>
  1020. </property>
  1021. <property name="topMargin">
  1022. <number>0</number>
  1023. </property>
  1024. <property name="rightMargin">
  1025. <number>0</number>
  1026. </property>
  1027. <property name="bottomMargin">
  1028. <number>0</number>
  1029. </property>
  1030. </layout>
  1031. </widget>
  1032. </widget>
  1033. <widget class="HScrollArea" name="vMixerScrollArea">
  1034. <property name="contextMenuPolicy">
  1035. <enum>Qt::CustomContextMenu</enum>
  1036. </property>
  1037. <property name="frameShape">
  1038. <enum>QFrame::StyledPanel</enum>
  1039. </property>
  1040. <property name="frameShadow">
  1041. <enum>QFrame::Sunken</enum>
  1042. </property>
  1043. <property name="verticalScrollBarPolicy">
  1044. <enum>Qt::ScrollBarAlwaysOff</enum>
  1045. </property>
  1046. <property name="horizontalScrollBarPolicy">
  1047. <enum>Qt::ScrollBarAlwaysOn</enum>
  1048. </property>
  1049. <property name="widgetResizable">
  1050. <bool>true</bool>
  1051. </property>
  1052. <widget class="QWidget" name="vVolumeWidgets">
  1053. <property name="geometry">
  1054. <rect>
  1055. <x>0</x>
  1056. <y>0</y>
  1057. <width>16</width>
  1058. <height>28</height>
  1059. </rect>
  1060. </property>
  1061. <property name="sizePolicy">
  1062. <sizepolicy hsizetype="Maximum" vsizetype="Preferred">
  1063. <horstretch>0</horstretch>
  1064. <verstretch>0</verstretch>
  1065. </sizepolicy>
  1066. </property>
  1067. <layout class="QHBoxLayout" name="vVolControlLayout">
  1068. <property name="spacing">
  1069. <number>0</number>
  1070. </property>
  1071. <property name="leftMargin">
  1072. <number>0</number>
  1073. </property>
  1074. <property name="topMargin">
  1075. <number>0</number>
  1076. </property>
  1077. <property name="rightMargin">
  1078. <number>0</number>
  1079. </property>
  1080. <property name="bottomMargin">
  1081. <number>0</number>
  1082. </property>
  1083. </layout>
  1084. </widget>
  1085. </widget>
  1086. </widget>
  1087. </item>
  1088. </layout>
  1089. </widget>
  1090. </widget>
  1091. <widget class="OBSDock" name="transitionsDock">
  1092. <property name="features">
  1093. <set>QDockWidget::DockWidgetClosable|QDockWidget::DockWidgetMovable|QDockWidget::DockWidgetFloatable</set>
  1094. </property>
  1095. <property name="windowTitle">
  1096. <string>Basic.SceneTransitions</string>
  1097. </property>
  1098. <attribute name="dockWidgetArea">
  1099. <number>8</number>
  1100. </attribute>
  1101. <widget class="QWidget" name="dockWidgetContents_5">
  1102. <layout class="QVBoxLayout" name="verticalLayout_3">
  1103. <property name="leftMargin">
  1104. <number>4</number>
  1105. </property>
  1106. <property name="topMargin">
  1107. <number>4</number>
  1108. </property>
  1109. <property name="rightMargin">
  1110. <number>4</number>
  1111. </property>
  1112. <property name="bottomMargin">
  1113. <number>4</number>
  1114. </property>
  1115. <item>
  1116. <widget class="QFrame" name="transitionsContainer">
  1117. <layout class="QVBoxLayout" name="verticalLayout_2">
  1118. <property name="spacing">
  1119. <number>2</number>
  1120. </property>
  1121. <property name="leftMargin">
  1122. <number>0</number>
  1123. </property>
  1124. <property name="topMargin">
  1125. <number>0</number>
  1126. </property>
  1127. <property name="rightMargin">
  1128. <number>0</number>
  1129. </property>
  1130. <property name="bottomMargin">
  1131. <number>0</number>
  1132. </property>
  1133. <item>
  1134. <layout class="QHBoxLayout" name="horizontalLayout_4">
  1135. <property name="spacing">
  1136. <number>4</number>
  1137. </property>
  1138. <item>
  1139. <widget class="QComboBox" name="transitions">
  1140. <property name="minimumSize">
  1141. <size>
  1142. <width>120</width>
  1143. <height>0</height>
  1144. </size>
  1145. </property>
  1146. <property name="accessibleName">
  1147. <string>Transition</string>
  1148. </property>
  1149. </widget>
  1150. </item>
  1151. <item>
  1152. <widget class="QPushButton" name="transitionProps">
  1153. <property name="sizePolicy">
  1154. <sizepolicy hsizetype="Maximum" vsizetype="Maximum">
  1155. <horstretch>0</horstretch>
  1156. <verstretch>0</verstretch>
  1157. </sizepolicy>
  1158. </property>
  1159. <property name="maximumSize">
  1160. <size>
  1161. <width>22</width>
  1162. <height>22</height>
  1163. </size>
  1164. </property>
  1165. <property name="toolTip">
  1166. <string>Basic.TransitionProperties</string>
  1167. </property>
  1168. <property name="accessibleName">
  1169. <string>Basic.TransitionProperties</string>
  1170. </property>
  1171. <property name="text">
  1172. <string notr="true"/>
  1173. </property>
  1174. <property name="icon">
  1175. <iconset>
  1176. <normaloff>:/res/images/configuration21_16.png</normaloff>:/res/images/configuration21_16.png</iconset>
  1177. </property>
  1178. <property name="flat">
  1179. <bool>true</bool>
  1180. </property>
  1181. <property name="themeID" stdset="0">
  1182. <string notr="true">configIconSmall</string>
  1183. </property>
  1184. </widget>
  1185. </item>
  1186. </layout>
  1187. </item>
  1188. <item>
  1189. <layout class="QHBoxLayout" name="horizontalLayout_3">
  1190. <property name="spacing">
  1191. <number>4</number>
  1192. </property>
  1193. <item>
  1194. <widget class="QLabel" name="transitionDurationLabel">
  1195. <property name="sizePolicy">
  1196. <sizepolicy hsizetype="Maximum" vsizetype="Preferred">
  1197. <horstretch>0</horstretch>
  1198. <verstretch>0</verstretch>
  1199. </sizepolicy>
  1200. </property>
  1201. <property name="text">
  1202. <string>Basic.TransitionDuration</string>
  1203. </property>
  1204. <property name="buddy">
  1205. <cstring>transitionDuration</cstring>
  1206. </property>
  1207. </widget>
  1208. </item>
  1209. <item>
  1210. <widget class="QSpinBox" name="transitionDuration">
  1211. <property name="accessibleName">
  1212. <string>Basic.TransitionDuration</string>
  1213. </property>
  1214. <property name="suffix">
  1215. <string> ms</string>
  1216. </property>
  1217. <property name="minimum">
  1218. <number>50</number>
  1219. </property>
  1220. <property name="maximum">
  1221. <number>20000</number>
  1222. </property>
  1223. <property name="singleStep">
  1224. <number>50</number>
  1225. </property>
  1226. <property name="value">
  1227. <number>300</number>
  1228. </property>
  1229. </widget>
  1230. </item>
  1231. </layout>
  1232. </item>
  1233. <item>
  1234. <spacer name="verticalSpacer">
  1235. <property name="orientation">
  1236. <enum>Qt::Vertical</enum>
  1237. </property>
  1238. <property name="sizeHint" stdset="0">
  1239. <size>
  1240. <width>20</width>
  1241. <height>40</height>
  1242. </size>
  1243. </property>
  1244. </spacer>
  1245. </item>
  1246. </layout>
  1247. </widget>
  1248. </item>
  1249. </layout>
  1250. </widget>
  1251. </widget>
  1252. <widget class="OBSDock" name="controlsDock">
  1253. <property name="features">
  1254. <set>QDockWidget::DockWidgetClosable|QDockWidget::DockWidgetMovable|QDockWidget::DockWidgetFloatable</set>
  1255. </property>
  1256. <property name="windowTitle">
  1257. <string>Basic.Main.Controls</string>
  1258. </property>
  1259. <attribute name="dockWidgetArea">
  1260. <number>8</number>
  1261. </attribute>
  1262. <widget class="QWidget" name="controlsDockContents">
  1263. <layout class="QVBoxLayout" name="buttonsVLayout">
  1264. <property name="spacing">
  1265. <number>2</number>
  1266. </property>
  1267. <property name="leftMargin">
  1268. <number>4</number>
  1269. </property>
  1270. <property name="topMargin">
  1271. <number>4</number>
  1272. </property>
  1273. <property name="rightMargin">
  1274. <number>4</number>
  1275. </property>
  1276. <property name="bottomMargin">
  1277. <number>4</number>
  1278. </property>
  1279. <item>
  1280. <layout class="QHBoxLayout" name="horizontalLayout_7">
  1281. <item>
  1282. <widget class="QPushButton" name="streamButton">
  1283. <property name="enabled">
  1284. <bool>true</bool>
  1285. </property>
  1286. <property name="sizePolicy">
  1287. <sizepolicy hsizetype="Ignored" vsizetype="Fixed">
  1288. <horstretch>0</horstretch>
  1289. <verstretch>0</verstretch>
  1290. </sizepolicy>
  1291. </property>
  1292. <property name="minimumSize">
  1293. <size>
  1294. <width>150</width>
  1295. <height>0</height>
  1296. </size>
  1297. </property>
  1298. <property name="text">
  1299. <string>Basic.Main.StartStreaming</string>
  1300. </property>
  1301. <property name="checkable">
  1302. <bool>true</bool>
  1303. </property>
  1304. </widget>
  1305. </item>
  1306. <item>
  1307. <widget class="QPushButton" name="broadcastButton">
  1308. <property name="enabled">
  1309. <bool>true</bool>
  1310. </property>
  1311. <property name="sizePolicy">
  1312. <sizepolicy hsizetype="Ignored" vsizetype="Fixed">
  1313. <horstretch>0</horstretch>
  1314. <verstretch>0</verstretch>
  1315. </sizepolicy>
  1316. </property>
  1317. <property name="minimumSize">
  1318. <size>
  1319. <width>150</width>
  1320. <height>0</height>
  1321. </size>
  1322. </property>
  1323. <property name="text">
  1324. <string>Basic.Main.StartBroadcast</string>
  1325. </property>
  1326. <property name="checkable">
  1327. <bool>true</bool>
  1328. </property>
  1329. </widget>
  1330. </item>
  1331. </layout>
  1332. </item>
  1333. <item>
  1334. <layout class="QHBoxLayout" name="recordingLayout">
  1335. <property name="spacing">
  1336. <number>2</number>
  1337. </property>
  1338. <property name="leftMargin">
  1339. <number>0</number>
  1340. </property>
  1341. <property name="topMargin">
  1342. <number>0</number>
  1343. </property>
  1344. <property name="rightMargin">
  1345. <number>0</number>
  1346. </property>
  1347. <property name="bottomMargin">
  1348. <number>0</number>
  1349. </property>
  1350. <item>
  1351. <widget class="RecordButton" name="recordButton">
  1352. <property name="enabled">
  1353. <bool>true</bool>
  1354. </property>
  1355. <property name="sizePolicy">
  1356. <sizepolicy hsizetype="Ignored" vsizetype="Fixed">
  1357. <horstretch>0</horstretch>
  1358. <verstretch>0</verstretch>
  1359. </sizepolicy>
  1360. </property>
  1361. <property name="minimumSize">
  1362. <size>
  1363. <width>0</width>
  1364. <height>0</height>
  1365. </size>
  1366. </property>
  1367. <property name="text">
  1368. <string>Basic.Main.StartRecording</string>
  1369. </property>
  1370. <property name="checkable">
  1371. <bool>true</bool>
  1372. </property>
  1373. </widget>
  1374. </item>
  1375. </layout>
  1376. </item>
  1377. <item>
  1378. <widget class="QPushButton" name="modeSwitch">
  1379. <property name="sizePolicy">
  1380. <sizepolicy hsizetype="Ignored" vsizetype="Fixed">
  1381. <horstretch>0</horstretch>
  1382. <verstretch>0</verstretch>
  1383. </sizepolicy>
  1384. </property>
  1385. <property name="minimumSize">
  1386. <size>
  1387. <width>150</width>
  1388. <height>0</height>
  1389. </size>
  1390. </property>
  1391. <property name="text">
  1392. <string>Basic.TogglePreviewProgramMode</string>
  1393. </property>
  1394. <property name="checkable">
  1395. <bool>true</bool>
  1396. </property>
  1397. </widget>
  1398. </item>
  1399. <item>
  1400. <widget class="QPushButton" name="settingsButton">
  1401. <property name="sizePolicy">
  1402. <sizepolicy hsizetype="Ignored" vsizetype="Fixed">
  1403. <horstretch>0</horstretch>
  1404. <verstretch>0</verstretch>
  1405. </sizepolicy>
  1406. </property>
  1407. <property name="minimumSize">
  1408. <size>
  1409. <width>150</width>
  1410. <height>0</height>
  1411. </size>
  1412. </property>
  1413. <property name="text">
  1414. <string>Settings</string>
  1415. </property>
  1416. </widget>
  1417. </item>
  1418. <item>
  1419. <widget class="QPushButton" name="exitButton">
  1420. <property name="sizePolicy">
  1421. <sizepolicy hsizetype="Ignored" vsizetype="Fixed">
  1422. <horstretch>0</horstretch>
  1423. <verstretch>0</verstretch>
  1424. </sizepolicy>
  1425. </property>
  1426. <property name="minimumSize">
  1427. <size>
  1428. <width>150</width>
  1429. <height>0</height>
  1430. </size>
  1431. </property>
  1432. <property name="text">
  1433. <string>Exit</string>
  1434. </property>
  1435. </widget>
  1436. </item>
  1437. <item>
  1438. <spacer name="expVSpacer">
  1439. <property name="orientation">
  1440. <enum>Qt::Vertical</enum>
  1441. </property>
  1442. <property name="sizeHint" stdset="0">
  1443. <size>
  1444. <width>0</width>
  1445. <height>0</height>
  1446. </size>
  1447. </property>
  1448. </spacer>
  1449. </item>
  1450. </layout>
  1451. </widget>
  1452. </widget>
  1453. <action name="actionAddScene">
  1454. <property name="icon">
  1455. <iconset>
  1456. <normaloff>:/res/images/add.png</normaloff>:/res/images/add.png</iconset>
  1457. </property>
  1458. <property name="text">
  1459. <string>Add</string>
  1460. </property>
  1461. <property name="themeID" stdset="0">
  1462. <string notr="true">addIconSmall</string>
  1463. </property>
  1464. </action>
  1465. <action name="actionAddSource">
  1466. <property name="icon">
  1467. <iconset>
  1468. <normaloff>:/res/images/add.png</normaloff>:/res/images/add.png</iconset>
  1469. </property>
  1470. <property name="text">
  1471. <string>Add</string>
  1472. </property>
  1473. <property name="themeID" stdset="0">
  1474. <string notr="true">addIconSmall</string>
  1475. </property>
  1476. </action>
  1477. <action name="actionRemoveScene">
  1478. <property name="icon">
  1479. <iconset>
  1480. <normaloff>:/res/images/list_remove.png</normaloff>:/res/images/list_remove.png</iconset>
  1481. </property>
  1482. <property name="text">
  1483. <string>Remove</string>
  1484. </property>
  1485. <property name="shortcut">
  1486. <string>Del</string>
  1487. </property>
  1488. <property name="shortcutContext">
  1489. <enum>Qt::WidgetWithChildrenShortcut</enum>
  1490. </property>
  1491. <property name="themeID" stdset="0">
  1492. <string notr="true">removeIconSmall</string>
  1493. </property>
  1494. </action>
  1495. <action name="actionRemoveSource">
  1496. <property name="icon">
  1497. <iconset>
  1498. <normaloff>:/res/images/list_remove.png</normaloff>:/res/images/list_remove.png</iconset>
  1499. </property>
  1500. <property name="text">
  1501. <string>Remove</string>
  1502. </property>
  1503. <property name="shortcut">
  1504. <string>Del</string>
  1505. </property>
  1506. <property name="shortcutContext">
  1507. <enum>Qt::WidgetWithChildrenShortcut</enum>
  1508. </property>
  1509. <property name="themeID" stdset="0">
  1510. <string notr="true">removeIconSmall</string>
  1511. </property>
  1512. </action>
  1513. <action name="actionSourceProperties">
  1514. <property name="enabled">
  1515. <bool>true</bool>
  1516. </property>
  1517. <property name="icon">
  1518. <iconset>
  1519. <normaloff>:/res/images/properties.png</normaloff>:/res/images/properties.png</iconset>
  1520. </property>
  1521. <property name="text">
  1522. <string>Properties</string>
  1523. </property>
  1524. <property name="themeID" stdset="0">
  1525. <string notr="true">propertiesIconSmall</string>
  1526. </property>
  1527. </action>
  1528. <action name="actionSceneUp">
  1529. <property name="icon">
  1530. <iconset>
  1531. <normaloff>:/res/images/up.png</normaloff>:/res/images/up.png</iconset>
  1532. </property>
  1533. <property name="text">
  1534. <string>MoveUp</string>
  1535. </property>
  1536. <property name="themeID" stdset="0">
  1537. <string notr="true">upArrowIconSmall</string>
  1538. </property>
  1539. </action>
  1540. <action name="actionSourceUp">
  1541. <property name="enabled">
  1542. <bool>true</bool>
  1543. </property>
  1544. <property name="icon">
  1545. <iconset>
  1546. <normaloff>:/res/images/up.png</normaloff>:/res/images/up.png</iconset>
  1547. </property>
  1548. <property name="text">
  1549. <string>MoveUp</string>
  1550. </property>
  1551. <property name="themeID" stdset="0">
  1552. <string notr="true">upArrowIconSmall</string>
  1553. </property>
  1554. </action>
  1555. <action name="actionSceneDown">
  1556. <property name="icon">
  1557. <iconset>
  1558. <normaloff>:/res/images/down.png</normaloff>:/res/images/down.png</iconset>
  1559. </property>
  1560. <property name="text">
  1561. <string>MoveDown</string>
  1562. </property>
  1563. <property name="themeID" stdset="0">
  1564. <string notr="true">downArrowIconSmall</string>
  1565. </property>
  1566. </action>
  1567. <action name="actionSourceDown">
  1568. <property name="enabled">
  1569. <bool>true</bool>
  1570. </property>
  1571. <property name="icon">
  1572. <iconset>
  1573. <normaloff>:/res/images/down.png</normaloff>:/res/images/down.png</iconset>
  1574. </property>
  1575. <property name="text">
  1576. <string>MoveDown</string>
  1577. </property>
  1578. <property name="themeID" stdset="0">
  1579. <string notr="true">downArrowIconSmall</string>
  1580. </property>
  1581. </action>
  1582. <action name="actionShow_Recordings">
  1583. <property name="text">
  1584. <string>Basic.MainMenu.File.ShowRecordings</string>
  1585. </property>
  1586. </action>
  1587. <action name="actionRemux">
  1588. <property name="text">
  1589. <string>Basic.MainMenu.File.Remux</string>
  1590. </property>
  1591. </action>
  1592. <action name="action_Settings">
  1593. <property name="text">
  1594. <string>Basic.MainMenu.File.Settings</string>
  1595. </property>
  1596. </action>
  1597. <action name="actionE_xit">
  1598. <property name="text">
  1599. <string>Basic.MainMenu.File.Exit</string>
  1600. </property>
  1601. </action>
  1602. <action name="actionShowLogs">
  1603. <property name="text">
  1604. <string>Basic.MainMenu.Help.Logs.ShowLogs</string>
  1605. </property>
  1606. </action>
  1607. <action name="actionUploadLastLog">
  1608. <property name="text">
  1609. <string>Basic.MainMenu.Help.Logs.UploadLastLog</string>
  1610. </property>
  1611. </action>
  1612. <action name="actionUploadCurrentLog">
  1613. <property name="text">
  1614. <string>Basic.MainMenu.Help.Logs.UploadCurrentLog</string>
  1615. </property>
  1616. </action>
  1617. <action name="actionViewCurrentLog">
  1618. <property name="text">
  1619. <string>Basic.MainMenu.Help.Logs.ViewCurrentLog</string>
  1620. </property>
  1621. </action>
  1622. <action name="actionUndo">
  1623. <property name="enabled">
  1624. <bool>false</bool>
  1625. </property>
  1626. <property name="text">
  1627. <string>Basic.MainMenu.Edit.Undo</string>
  1628. </property>
  1629. </action>
  1630. <action name="actionRedo">
  1631. <property name="enabled">
  1632. <bool>false</bool>
  1633. </property>
  1634. <property name="text">
  1635. <string>Basic.MainMenu.Edit.Redo</string>
  1636. </property>
  1637. </action>
  1638. <action name="actionEditTransform">
  1639. <property name="text">
  1640. <string>Basic.MainMenu.Edit.Transform.EditTransform</string>
  1641. </property>
  1642. <property name="shortcut">
  1643. <string>Ctrl+E</string>
  1644. </property>
  1645. </action>
  1646. <action name="actionCopyTransform">
  1647. <property name="text">
  1648. <string>Basic.MainMenu.Edit.Transform.CopyTransform</string>
  1649. </property>
  1650. </action>
  1651. <action name="actionPasteTransform">
  1652. <property name="enabled">
  1653. <bool>false</bool>
  1654. </property>
  1655. <property name="text">
  1656. <string>Basic.MainMenu.Edit.Transform.PasteTransform</string>
  1657. </property>
  1658. </action>
  1659. <action name="actionRotate90CW">
  1660. <property name="text">
  1661. <string>Basic.MainMenu.Edit.Transform.Rotate90CW</string>
  1662. </property>
  1663. </action>
  1664. <action name="actionRotate90CCW">
  1665. <property name="text">
  1666. <string>Basic.MainMenu.Edit.Transform.Rotate90CCW</string>
  1667. </property>
  1668. </action>
  1669. <action name="actionRotate180">
  1670. <property name="text">
  1671. <string>Basic.MainMenu.Edit.Transform.Rotate180</string>
  1672. </property>
  1673. </action>
  1674. <action name="actionFitToScreen">
  1675. <property name="text">
  1676. <string>Basic.MainMenu.Edit.Transform.FitToScreen</string>
  1677. </property>
  1678. <property name="shortcut">
  1679. <string>Ctrl+F</string>
  1680. </property>
  1681. </action>
  1682. <action name="actionStretchToScreen">
  1683. <property name="text">
  1684. <string>Basic.MainMenu.Edit.Transform.StretchToScreen</string>
  1685. </property>
  1686. <property name="shortcut">
  1687. <string>Ctrl+S</string>
  1688. </property>
  1689. </action>
  1690. <action name="actionResetTransform">
  1691. <property name="text">
  1692. <string>Basic.MainMenu.Edit.Transform.ResetTransform</string>
  1693. </property>
  1694. <property name="shortcut">
  1695. <string>Ctrl+R</string>
  1696. </property>
  1697. </action>
  1698. <action name="actionCenterToScreen">
  1699. <property name="text">
  1700. <string>Basic.MainMenu.Edit.Transform.CenterToScreen</string>
  1701. </property>
  1702. <property name="shortcut">
  1703. <string>Ctrl+D</string>
  1704. </property>
  1705. </action>
  1706. <action name="actionVerticalCenter">
  1707. <property name="text">
  1708. <string>Basic.MainMenu.Edit.Transform.VerticalCenter</string>
  1709. </property>
  1710. </action>
  1711. <action name="actionHorizontalCenter">
  1712. <property name="text">
  1713. <string>Basic.MainMenu.Edit.Transform.HorizontalCenter</string>
  1714. </property>
  1715. </action>
  1716. <action name="actionFlipHorizontal">
  1717. <property name="text">
  1718. <string>Basic.MainMenu.Edit.Transform.FlipHorizontal</string>
  1719. </property>
  1720. </action>
  1721. <action name="actionFlipVertical">
  1722. <property name="text">
  1723. <string>Basic.MainMenu.Edit.Transform.FlipVertical</string>
  1724. </property>
  1725. </action>
  1726. <action name="actionMoveUp">
  1727. <property name="text">
  1728. <string>Basic.MainMenu.Edit.Order.MoveUp</string>
  1729. </property>
  1730. <property name="shortcut">
  1731. <string>Ctrl+Up</string>
  1732. </property>
  1733. </action>
  1734. <action name="actionMoveDown">
  1735. <property name="text">
  1736. <string>Basic.MainMenu.Edit.Order.MoveDown</string>
  1737. </property>
  1738. <property name="shortcut">
  1739. <string>Ctrl+Down</string>
  1740. </property>
  1741. </action>
  1742. <action name="actionMoveToTop">
  1743. <property name="text">
  1744. <string>Basic.MainMenu.Edit.Order.MoveToTop</string>
  1745. </property>
  1746. <property name="shortcut">
  1747. <string>Ctrl+Home</string>
  1748. </property>
  1749. </action>
  1750. <action name="actionMoveToBottom">
  1751. <property name="text">
  1752. <string>Basic.MainMenu.Edit.Order.MoveToBottom</string>
  1753. </property>
  1754. <property name="shortcut">
  1755. <string>Ctrl+End</string>
  1756. </property>
  1757. </action>
  1758. <action name="actionCheckForUpdates">
  1759. <property name="text">
  1760. <string>Basic.MainMenu.Help.CheckForUpdates</string>
  1761. </property>
  1762. </action>
  1763. <action name="actionInteract">
  1764. <property name="text">
  1765. <string>Interact</string>
  1766. </property>
  1767. </action>
  1768. <action name="actionAdvAudioProperties">
  1769. <property name="text">
  1770. <string>Basic.MainMenu.Edit.AdvAudio</string>
  1771. </property>
  1772. </action>
  1773. <action name="actionWebsite">
  1774. <property name="text">
  1775. <string>Basic.MainMenu.Help.Website</string>
  1776. </property>
  1777. </action>
  1778. <action name="actionNewSceneCollection">
  1779. <property name="text">
  1780. <string>New</string>
  1781. </property>
  1782. </action>
  1783. <action name="actionDupSceneCollection">
  1784. <property name="text">
  1785. <string>Duplicate</string>
  1786. </property>
  1787. </action>
  1788. <action name="actionRenameSceneCollection">
  1789. <property name="text">
  1790. <string>Rename</string>
  1791. </property>
  1792. </action>
  1793. <action name="actionRemoveSceneCollection">
  1794. <property name="text">
  1795. <string>Remove</string>
  1796. </property>
  1797. </action>
  1798. <action name="actionImportSceneCollection">
  1799. <property name="text">
  1800. <string>Import</string>
  1801. </property>
  1802. </action>
  1803. <action name="actionExportSceneCollection">
  1804. <property name="text">
  1805. <string>Export</string>
  1806. </property>
  1807. </action>
  1808. <action name="actionShowMissingFiles">
  1809. <property name="text">
  1810. <string>Basic.MainMenu.File.ShowMissingFiles</string>
  1811. </property>
  1812. </action>
  1813. <action name="actionNewProfile">
  1814. <property name="text">
  1815. <string>New</string>
  1816. </property>
  1817. </action>
  1818. <action name="actionDupProfile">
  1819. <property name="text">
  1820. <string>Duplicate</string>
  1821. </property>
  1822. </action>
  1823. <action name="actionRenameProfile">
  1824. <property name="text">
  1825. <string>Rename</string>
  1826. </property>
  1827. </action>
  1828. <action name="actionRemoveProfile">
  1829. <property name="text">
  1830. <string>Remove</string>
  1831. </property>
  1832. </action>
  1833. <action name="actionImportProfile">
  1834. <property name="text">
  1835. <string>Import</string>
  1836. </property>
  1837. </action>
  1838. <action name="actionExportProfile">
  1839. <property name="text">
  1840. <string>Export</string>
  1841. </property>
  1842. </action>
  1843. <action name="actionShowSettingsFolder">
  1844. <property name="text">
  1845. <string>Basic.MainMenu.File.ShowSettingsFolder</string>
  1846. </property>
  1847. </action>
  1848. <action name="actionShowProfileFolder">
  1849. <property name="text">
  1850. <string>Basic.MainMenu.File.ShowProfileFolder</string>
  1851. </property>
  1852. </action>
  1853. <action name="actionAlwaysOnTop">
  1854. <property name="checkable">
  1855. <bool>true</bool>
  1856. </property>
  1857. <property name="text">
  1858. <string>Basic.MainMenu.AlwaysOnTop</string>
  1859. </property>
  1860. </action>
  1861. <action name="toggleListboxToolbars">
  1862. <property name="checkable">
  1863. <bool>true</bool>
  1864. </property>
  1865. <property name="checked">
  1866. <bool>true</bool>
  1867. </property>
  1868. <property name="text">
  1869. <string>Basic.MainMenu.View.ListboxToolbars</string>
  1870. </property>
  1871. </action>
  1872. <action name="toggleStatusBar">
  1873. <property name="checkable">
  1874. <bool>true</bool>
  1875. </property>
  1876. <property name="checked">
  1877. <bool>true</bool>
  1878. </property>
  1879. <property name="text">
  1880. <string>Basic.MainMenu.View.StatusBar</string>
  1881. </property>
  1882. </action>
  1883. <action name="actionLockPreview">
  1884. <property name="checkable">
  1885. <bool>true</bool>
  1886. </property>
  1887. <property name="text">
  1888. <string>Basic.MainMenu.Edit.LockPreview</string>
  1889. </property>
  1890. </action>
  1891. <action name="actionScaleWindow">
  1892. <property name="checkable">
  1893. <bool>true</bool>
  1894. </property>
  1895. <property name="text">
  1896. <string>Basic.MainMenu.Edit.Scale.Window</string>
  1897. </property>
  1898. </action>
  1899. <action name="actionScaleCanvas">
  1900. <property name="checkable">
  1901. <bool>true</bool>
  1902. </property>
  1903. <property name="text">
  1904. <string>Basic.MainMenu.Edit.Scale.Canvas</string>
  1905. </property>
  1906. </action>
  1907. <action name="actionScaleOutput">
  1908. <property name="checkable">
  1909. <bool>true</bool>
  1910. </property>
  1911. <property name="text">
  1912. <string>Basic.MainMenu.Edit.Scale.Output</string>
  1913. </property>
  1914. </action>
  1915. <action name="actionPasteDup">
  1916. <property name="text">
  1917. <string>PasteDuplicate</string>
  1918. </property>
  1919. </action>
  1920. <action name="autoConfigure2">
  1921. <property name="text">
  1922. <string>Basic.AutoConfig</string>
  1923. </property>
  1924. </action>
  1925. <action name="autoConfigure">
  1926. <property name="text">
  1927. <string>Basic.AutoConfig</string>
  1928. </property>
  1929. </action>
  1930. <action name="stats">
  1931. <property name="text">
  1932. <string>Basic.Stats</string>
  1933. </property>
  1934. </action>
  1935. <action name="resetUI">
  1936. <property name="text">
  1937. <string>Basic.MainMenu.View.Docks.ResetUI</string>
  1938. </property>
  1939. </action>
  1940. <action name="lockUI">
  1941. <property name="checkable">
  1942. <bool>true</bool>
  1943. </property>
  1944. <property name="checked">
  1945. <bool>true</bool>
  1946. </property>
  1947. <property name="text">
  1948. <string>Basic.MainMenu.View.Docks.LockUI</string>
  1949. </property>
  1950. </action>
  1951. <action name="toggleScenes">
  1952. <property name="checkable">
  1953. <bool>true</bool>
  1954. </property>
  1955. <property name="checked">
  1956. <bool>true</bool>
  1957. </property>
  1958. <property name="text">
  1959. <string>Basic.Main.Scenes</string>
  1960. </property>
  1961. </action>
  1962. <action name="toggleSources">
  1963. <property name="checkable">
  1964. <bool>true</bool>
  1965. </property>
  1966. <property name="checked">
  1967. <bool>true</bool>
  1968. </property>
  1969. <property name="text">
  1970. <string>Basic.Main.Sources</string>
  1971. </property>
  1972. </action>
  1973. <action name="toggleMixer">
  1974. <property name="checkable">
  1975. <bool>true</bool>
  1976. </property>
  1977. <property name="checked">
  1978. <bool>true</bool>
  1979. </property>
  1980. <property name="text">
  1981. <string>Mixer</string>
  1982. </property>
  1983. </action>
  1984. <action name="toggleTransitions">
  1985. <property name="checkable">
  1986. <bool>true</bool>
  1987. </property>
  1988. <property name="checked">
  1989. <bool>true</bool>
  1990. </property>
  1991. <property name="text">
  1992. <string>Basic.SceneTransitions</string>
  1993. </property>
  1994. </action>
  1995. <action name="toggleControls">
  1996. <property name="checkable">
  1997. <bool>true</bool>
  1998. </property>
  1999. <property name="checked">
  2000. <bool>true</bool>
  2001. </property>
  2002. <property name="text">
  2003. <string>Basic.Main.Controls</string>
  2004. </property>
  2005. </action>
  2006. <action name="actionHelpPortal">
  2007. <property name="text">
  2008. <string>Basic.MainMenu.Help.HelpPortal</string>
  2009. </property>
  2010. </action>
  2011. <action name="actionShowCrashLogs">
  2012. <property name="text">
  2013. <string>Basic.MainMenu.Help.CrashLogs.ShowLogs</string>
  2014. </property>
  2015. </action>
  2016. <action name="actionUploadLastCrashLog">
  2017. <property name="text">
  2018. <string>Basic.MainMenu.Help.CrashLogs.UploadLastLog</string>
  2019. </property>
  2020. </action>
  2021. <action name="actionDiscord">
  2022. <property name="text">
  2023. <string>Basic.MainMenu.Help.Discord</string>
  2024. </property>
  2025. </action>
  2026. <action name="toggleStats">
  2027. <property name="checkable">
  2028. <bool>true</bool>
  2029. </property>
  2030. <property name="checked">
  2031. <bool>true</bool>
  2032. </property>
  2033. <property name="text">
  2034. <string>Basic.Stats</string>
  2035. </property>
  2036. </action>
  2037. <action name="actionShowAbout">
  2038. <property name="text">
  2039. <string>Basic.MainMenu.Help.About</string>
  2040. </property>
  2041. </action>
  2042. <action name="toggleSourceIcons">
  2043. <property name="checkable">
  2044. <bool>true</bool>
  2045. </property>
  2046. <property name="checked">
  2047. <bool>true</bool>
  2048. </property>
  2049. <property name="text">
  2050. <string>Basic.MainMenu.View.SourceIcons</string>
  2051. </property>
  2052. </action>
  2053. <action name="toggleContextToolbars">
  2054. <property name="checkable">
  2055. <bool>true</bool>
  2056. </property>
  2057. <property name="text">
  2058. <string>Basic.MainMenu.View.Toolbars.Context</string>
  2059. </property>
  2060. </action>
  2061. <action name="toggleContextBar">
  2062. <property name="checkable">
  2063. <bool>true</bool>
  2064. </property>
  2065. <property name="checked">
  2066. <bool>true</bool>
  2067. </property>
  2068. <property name="text">
  2069. <string>Basic.MainMenu.View.ContextBar</string>
  2070. </property>
  2071. </action>
  2072. <action name="actionMainUndo">
  2073. <property name="enabled">
  2074. <bool>false</bool>
  2075. </property>
  2076. <property name="text">
  2077. <string>Undo.Undo</string>
  2078. </property>
  2079. </action>
  2080. <action name="actionMainRedo">
  2081. <property name="enabled">
  2082. <bool>false</bool>
  2083. </property>
  2084. <property name="text">
  2085. <string>Undo.Redo</string>
  2086. </property>
  2087. </action>
  2088. </widget>
  2089. <customwidgets>
  2090. <customwidget>
  2091. <class>OBSBasicPreview</class>
  2092. <extends>QWidget</extends>
  2093. <header>window-basic-preview.hpp</header>
  2094. <container>1</container>
  2095. </customwidget>
  2096. <customwidget>
  2097. <class>OBSBasicStatusBar</class>
  2098. <extends>QStatusBar</extends>
  2099. <header>window-basic-status-bar.hpp</header>
  2100. </customwidget>
  2101. <customwidget>
  2102. <class>HScrollArea</class>
  2103. <extends>QScrollArea</extends>
  2104. <header>horizontal-scroll-area.hpp</header>
  2105. <container>1</container>
  2106. </customwidget>
  2107. <customwidget>
  2108. <class>VScrollArea</class>
  2109. <extends>QScrollArea</extends>
  2110. <header>vertical-scroll-area.hpp</header>
  2111. <container>1</container>
  2112. </customwidget>
  2113. <customwidget>
  2114. <class>SourceTree</class>
  2115. <extends>QListView</extends>
  2116. <header>source-tree.hpp</header>
  2117. </customwidget>
  2118. <customwidget>
  2119. <class>SceneTree</class>
  2120. <extends>QListWidget</extends>
  2121. <header>scene-tree.hpp</header>
  2122. </customwidget>
  2123. <customwidget>
  2124. <class>OBSDock</class>
  2125. <extends>QDockWidget</extends>
  2126. <header>window-dock.hpp</header>
  2127. <container>1</container>
  2128. </customwidget>
  2129. <customwidget>
  2130. <class>RecordButton</class>
  2131. <extends>QPushButton</extends>
  2132. <header>record-button.hpp</header>
  2133. </customwidget>
  2134. </customwidgets>
  2135. <resources>
  2136. <include location="obs.qrc"/>
  2137. </resources>
  2138. <connections>
  2139. <connection>
  2140. <sender>actionE_xit</sender>
  2141. <signal>triggered()</signal>
  2142. <receiver>OBSBasic</receiver>
  2143. <slot>close()</slot>
  2144. <hints>
  2145. <hint type="sourcelabel">
  2146. <x>-1</x>
  2147. <y>-1</y>
  2148. </hint>
  2149. <hint type="destinationlabel">
  2150. <x>463</x>
  2151. <y>351</y>
  2152. </hint>
  2153. </hints>
  2154. </connection>
  2155. <connection>
  2156. <sender>exitButton</sender>
  2157. <signal>clicked()</signal>
  2158. <receiver>OBSBasic</receiver>
  2159. <slot>close()</slot>
  2160. <hints>
  2161. <hint type="sourcelabel">
  2162. <x>976</x>
  2163. <y>601</y>
  2164. </hint>
  2165. <hint type="destinationlabel">
  2166. <x>862</x>
  2167. <y>-11</y>
  2168. </hint>
  2169. </hints>
  2170. </connection>
  2171. </connections>
  2172. </ui>