OBSBasic.ui 62 KB

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