OBSBasic.ui 55 KB

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