OBSBasic.ui 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896
  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>22</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="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. <item>
  445. <widget class="QFrame" name="scenesFrame">
  446. <property name="sizePolicy">
  447. <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
  448. <horstretch>0</horstretch>
  449. <verstretch>0</verstretch>
  450. </sizepolicy>
  451. </property>
  452. <property name="minimumSize">
  453. <size>
  454. <width>160</width>
  455. <height>0</height>
  456. </size>
  457. </property>
  458. <property name="frameShape">
  459. <enum>QFrame::StyledPanel</enum>
  460. </property>
  461. <property name="frameShadow">
  462. <enum>QFrame::Sunken</enum>
  463. </property>
  464. <layout class="QVBoxLayout" name="verticalLayout_12">
  465. <property name="spacing">
  466. <number>0</number>
  467. </property>
  468. <property name="leftMargin">
  469. <number>0</number>
  470. </property>
  471. <property name="topMargin">
  472. <number>0</number>
  473. </property>
  474. <property name="rightMargin">
  475. <number>0</number>
  476. </property>
  477. <property name="bottomMargin">
  478. <number>0</number>
  479. </property>
  480. <item>
  481. <widget class="SceneTree" name="scenes">
  482. <property name="sizePolicy">
  483. <sizepolicy hsizetype="Preferred" vsizetype="Expanding">
  484. <horstretch>0</horstretch>
  485. <verstretch>0</verstretch>
  486. </sizepolicy>
  487. </property>
  488. <property name="contextMenuPolicy">
  489. <enum>Qt::CustomContextMenu</enum>
  490. </property>
  491. <property name="frameShape">
  492. <enum>QFrame::NoFrame</enum>
  493. </property>
  494. <property name="frameShadow">
  495. <enum>QFrame::Plain</enum>
  496. </property>
  497. <property name="showDropIndicator" stdset="0">
  498. <bool>true</bool>
  499. </property>
  500. <property name="dragEnabled">
  501. <bool>true</bool>
  502. </property>
  503. <property name="dragDropMode">
  504. <enum>QAbstractItemView::InternalMove</enum>
  505. </property>
  506. <property name="defaultDropAction">
  507. <enum>Qt::TargetMoveAction</enum>
  508. </property>
  509. <addaction name="actionRemoveScene"/>
  510. </widget>
  511. </item>
  512. <item>
  513. <widget class="QToolBar" name="scenesToolbar">
  514. <property name="iconSize">
  515. <size>
  516. <width>16</width>
  517. <height>16</height>
  518. </size>
  519. </property>
  520. <property name="floatable">
  521. <bool>false</bool>
  522. </property>
  523. <addaction name="actionAddScene"/>
  524. <addaction name="actionRemoveScene"/>
  525. <addaction name="separator"/>
  526. <addaction name="actionSceneUp"/>
  527. <addaction name="actionSceneDown"/>
  528. </widget>
  529. </item>
  530. <item>
  531. <spacer name="scenesFixedSizeHSpacer">
  532. <property name="orientation">
  533. <enum>Qt::Horizontal</enum>
  534. </property>
  535. <property name="sizeType">
  536. <enum>QSizePolicy::Fixed</enum>
  537. </property>
  538. <property name="sizeHint" stdset="0">
  539. <size>
  540. <width>150</width>
  541. <height>0</height>
  542. </size>
  543. </property>
  544. </spacer>
  545. </item>
  546. </layout>
  547. </widget>
  548. </item>
  549. </layout>
  550. </widget>
  551. </widget>
  552. <widget class="OBSDock" name="sourcesDock">
  553. <property name="features">
  554. <set>QDockWidget::AllDockWidgetFeatures</set>
  555. </property>
  556. <property name="windowTitle">
  557. <string>Basic.Main.Sources</string>
  558. </property>
  559. <attribute name="dockWidgetArea">
  560. <number>8</number>
  561. </attribute>
  562. <widget class="QWidget" name="dockWidgetContents_6">
  563. <layout class="QVBoxLayout" name="verticalLayout_5">
  564. <property name="spacing">
  565. <number>0</number>
  566. </property>
  567. <property name="leftMargin">
  568. <number>0</number>
  569. </property>
  570. <property name="topMargin">
  571. <number>0</number>
  572. </property>
  573. <property name="rightMargin">
  574. <number>0</number>
  575. </property>
  576. <property name="bottomMargin">
  577. <number>0</number>
  578. </property>
  579. <item>
  580. <widget class="QFrame" name="sourcesFrame">
  581. <property name="sizePolicy">
  582. <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
  583. <horstretch>0</horstretch>
  584. <verstretch>0</verstretch>
  585. </sizepolicy>
  586. </property>
  587. <property name="minimumSize">
  588. <size>
  589. <width>160</width>
  590. <height>0</height>
  591. </size>
  592. </property>
  593. <property name="frameShape">
  594. <enum>QFrame::StyledPanel</enum>
  595. </property>
  596. <property name="frameShadow">
  597. <enum>QFrame::Sunken</enum>
  598. </property>
  599. <layout class="QVBoxLayout" name="verticalLayout_17">
  600. <property name="spacing">
  601. <number>0</number>
  602. </property>
  603. <property name="leftMargin">
  604. <number>0</number>
  605. </property>
  606. <property name="topMargin">
  607. <number>0</number>
  608. </property>
  609. <property name="rightMargin">
  610. <number>0</number>
  611. </property>
  612. <property name="bottomMargin">
  613. <number>0</number>
  614. </property>
  615. <item>
  616. <widget class="SourceTree" name="sources">
  617. <property name="sizePolicy">
  618. <sizepolicy hsizetype="Preferred" vsizetype="Expanding">
  619. <horstretch>0</horstretch>
  620. <verstretch>0</verstretch>
  621. </sizepolicy>
  622. </property>
  623. <property name="contextMenuPolicy">
  624. <enum>Qt::CustomContextMenu</enum>
  625. </property>
  626. <property name="frameShape">
  627. <enum>QFrame::NoFrame</enum>
  628. </property>
  629. <property name="showDropIndicator" stdset="0">
  630. <bool>true</bool>
  631. </property>
  632. <property name="dragEnabled">
  633. <bool>true</bool>
  634. </property>
  635. <property name="dragDropMode">
  636. <enum>QAbstractItemView::InternalMove</enum>
  637. </property>
  638. <property name="defaultDropAction">
  639. <enum>Qt::TargetMoveAction</enum>
  640. </property>
  641. <property name="selectionMode">
  642. <enum>QAbstractItemView::ExtendedSelection</enum>
  643. </property>
  644. <addaction name="actionRemoveSource"/>
  645. </widget>
  646. </item>
  647. <item>
  648. <widget class="QToolBar" name="sourcesToolbar">
  649. <property name="iconSize">
  650. <size>
  651. <width>16</width>
  652. <height>16</height>
  653. </size>
  654. </property>
  655. <property name="floatable">
  656. <bool>false</bool>
  657. </property>
  658. <addaction name="actionAddSource"/>
  659. <addaction name="actionRemoveSource"/>
  660. <addaction name="actionSourceProperties"/>
  661. <addaction name="separator"/>
  662. <addaction name="actionSourceUp"/>
  663. <addaction name="actionSourceDown"/>
  664. </widget>
  665. </item>
  666. <item>
  667. <spacer name="sourcesFixedSizeHSpacer">
  668. <property name="orientation">
  669. <enum>Qt::Horizontal</enum>
  670. </property>
  671. <property name="sizeType">
  672. <enum>QSizePolicy::Fixed</enum>
  673. </property>
  674. <property name="sizeHint" stdset="0">
  675. <size>
  676. <width>150</width>
  677. <height>0</height>
  678. </size>
  679. </property>
  680. </spacer>
  681. </item>
  682. </layout>
  683. </widget>
  684. </item>
  685. </layout>
  686. </widget>
  687. </widget>
  688. <widget class="OBSDock" name="mixerDock">
  689. <property name="features">
  690. <set>QDockWidget::AllDockWidgetFeatures</set>
  691. </property>
  692. <property name="windowTitle">
  693. <string>Mixer</string>
  694. </property>
  695. <attribute name="dockWidgetArea">
  696. <number>8</number>
  697. </attribute>
  698. <widget class="QWidget" name="dockWidgetContents_7">
  699. <layout class="QVBoxLayout" name="verticalLayout_4">
  700. <property name="spacing">
  701. <number>0</number>
  702. </property>
  703. <property name="leftMargin">
  704. <number>0</number>
  705. </property>
  706. <property name="topMargin">
  707. <number>0</number>
  708. </property>
  709. <property name="rightMargin">
  710. <number>0</number>
  711. </property>
  712. <property name="bottomMargin">
  713. <number>0</number>
  714. </property>
  715. <item>
  716. <widget class="QStackedWidget" name="stackedMixerArea">
  717. <widget class="VScrollArea" name="hMixerScrollArea">
  718. <property name="contextMenuPolicy">
  719. <enum>Qt::CustomContextMenu</enum>
  720. </property>
  721. <property name="frameShape">
  722. <enum>QFrame::StyledPanel</enum>
  723. </property>
  724. <property name="frameShadow">
  725. <enum>QFrame::Sunken</enum>
  726. </property>
  727. <property name="verticalScrollBarPolicy">
  728. <enum>Qt::ScrollBarAlwaysOn</enum>
  729. </property>
  730. <property name="horizontalScrollBarPolicy">
  731. <enum>Qt::ScrollBarAlwaysOff</enum>
  732. </property>
  733. <property name="widgetResizable">
  734. <bool>true</bool>
  735. </property>
  736. <widget class="QWidget" name="hVolumeWidgets">
  737. <property name="geometry">
  738. <rect>
  739. <x>0</x>
  740. <y>0</y>
  741. <width>71</width>
  742. <height>16</height>
  743. </rect>
  744. </property>
  745. <property name="sizePolicy">
  746. <sizepolicy hsizetype="Preferred" vsizetype="Maximum">
  747. <horstretch>0</horstretch>
  748. <verstretch>0</verstretch>
  749. </sizepolicy>
  750. </property>
  751. <layout class="QVBoxLayout" name="hVolControlLayout">
  752. <property name="spacing">
  753. <number>0</number>
  754. </property>
  755. <property name="leftMargin">
  756. <number>0</number>
  757. </property>
  758. <property name="topMargin">
  759. <number>0</number>
  760. </property>
  761. <property name="rightMargin">
  762. <number>0</number>
  763. </property>
  764. <property name="bottomMargin">
  765. <number>0</number>
  766. </property>
  767. </layout>
  768. </widget>
  769. </widget>
  770. <widget class="HScrollArea" name="vMixerScrollArea">
  771. <property name="contextMenuPolicy">
  772. <enum>Qt::CustomContextMenu</enum>
  773. </property>
  774. <property name="frameShape">
  775. <enum>QFrame::StyledPanel</enum>
  776. </property>
  777. <property name="frameShadow">
  778. <enum>QFrame::Sunken</enum>
  779. </property>
  780. <property name="verticalScrollBarPolicy">
  781. <enum>Qt::ScrollBarAlwaysOff</enum>
  782. </property>
  783. <property name="horizontalScrollBarPolicy">
  784. <enum>Qt::ScrollBarAlwaysOn</enum>
  785. </property>
  786. <property name="widgetResizable">
  787. <bool>true</bool>
  788. </property>
  789. <widget class="QWidget" name="vVolumeWidgets">
  790. <property name="geometry">
  791. <rect>
  792. <x>0</x>
  793. <y>0</y>
  794. <width>16</width>
  795. <height>28</height>
  796. </rect>
  797. </property>
  798. <property name="sizePolicy">
  799. <sizepolicy hsizetype="Maximum" vsizetype="Preferred">
  800. <horstretch>0</horstretch>
  801. <verstretch>0</verstretch>
  802. </sizepolicy>
  803. </property>
  804. <layout class="QHBoxLayout" name="vVolControlLayout">
  805. <property name="spacing">
  806. <number>0</number>
  807. </property>
  808. <property name="leftMargin">
  809. <number>0</number>
  810. </property>
  811. <property name="topMargin">
  812. <number>0</number>
  813. </property>
  814. <property name="rightMargin">
  815. <number>0</number>
  816. </property>
  817. <property name="bottomMargin">
  818. <number>0</number>
  819. </property>
  820. </layout>
  821. </widget>
  822. </widget>
  823. </widget>
  824. </item>
  825. </layout>
  826. </widget>
  827. </widget>
  828. <widget class="OBSDock" name="transitionsDock">
  829. <property name="features">
  830. <set>QDockWidget::AllDockWidgetFeatures</set>
  831. </property>
  832. <property name="windowTitle">
  833. <string>Basic.SceneTransitions</string>
  834. </property>
  835. <attribute name="dockWidgetArea">
  836. <number>8</number>
  837. </attribute>
  838. <widget class="QWidget" name="dockWidgetContents_5">
  839. <layout class="QVBoxLayout" name="verticalLayout_3">
  840. <property name="leftMargin">
  841. <number>4</number>
  842. </property>
  843. <property name="topMargin">
  844. <number>4</number>
  845. </property>
  846. <property name="rightMargin">
  847. <number>4</number>
  848. </property>
  849. <property name="bottomMargin">
  850. <number>4</number>
  851. </property>
  852. <item>
  853. <widget class="QWidget" name="transitionsContainer" native="true">
  854. <layout class="QVBoxLayout" name="verticalLayout_2">
  855. <property name="spacing">
  856. <number>4</number>
  857. </property>
  858. <property name="leftMargin">
  859. <number>1</number>
  860. </property>
  861. <property name="topMargin">
  862. <number>1</number>
  863. </property>
  864. <property name="rightMargin">
  865. <number>1</number>
  866. </property>
  867. <property name="bottomMargin">
  868. <number>2</number>
  869. </property>
  870. <item>
  871. <widget class="QComboBox" name="transitions">
  872. <property name="minimumSize">
  873. <size>
  874. <width>120</width>
  875. <height>0</height>
  876. </size>
  877. </property>
  878. <property name="accessibleName">
  879. <string>Transition</string>
  880. </property>
  881. </widget>
  882. </item>
  883. <item>
  884. <layout class="QHBoxLayout" name="horizontalLayout_4">
  885. <property name="spacing">
  886. <number>4</number>
  887. </property>
  888. <item>
  889. <spacer name="horizontalSpacer">
  890. <property name="orientation">
  891. <enum>Qt::Horizontal</enum>
  892. </property>
  893. <property name="sizeType">
  894. <enum>QSizePolicy::Expanding</enum>
  895. </property>
  896. <property name="sizeHint" stdset="0">
  897. <size>
  898. <width>40</width>
  899. <height>20</height>
  900. </size>
  901. </property>
  902. </spacer>
  903. </item>
  904. <item>
  905. <widget class="QPushButton" name="transitionAdd">
  906. <property name="sizePolicy">
  907. <sizepolicy hsizetype="Maximum" vsizetype="Maximum">
  908. <horstretch>0</horstretch>
  909. <verstretch>0</verstretch>
  910. </sizepolicy>
  911. </property>
  912. <property name="maximumSize">
  913. <size>
  914. <width>22</width>
  915. <height>22</height>
  916. </size>
  917. </property>
  918. <property name="toolTip">
  919. <string>Basic.AddTransition</string>
  920. </property>
  921. <property name="accessibleName">
  922. <string>Basic.AddTransition</string>
  923. </property>
  924. <property name="text">
  925. <string notr="true"/>
  926. </property>
  927. <property name="icon">
  928. <iconset>
  929. <normaloff>:/res/images/add.png</normaloff>:/res/images/add.png</iconset>
  930. </property>
  931. <property name="flat">
  932. <bool>true</bool>
  933. </property>
  934. <property name="themeID" stdset="0">
  935. <string notr="true">addIconSmall</string>
  936. </property>
  937. </widget>
  938. </item>
  939. <item>
  940. <widget class="QPushButton" name="transitionRemove">
  941. <property name="sizePolicy">
  942. <sizepolicy hsizetype="Maximum" vsizetype="Maximum">
  943. <horstretch>0</horstretch>
  944. <verstretch>0</verstretch>
  945. </sizepolicy>
  946. </property>
  947. <property name="maximumSize">
  948. <size>
  949. <width>22</width>
  950. <height>22</height>
  951. </size>
  952. </property>
  953. <property name="toolTip">
  954. <string>Basic.RemoveTransition</string>
  955. </property>
  956. <property name="accessibleName">
  957. <string>Basic.RemoveTransition</string>
  958. </property>
  959. <property name="text">
  960. <string notr="true"/>
  961. </property>
  962. <property name="icon">
  963. <iconset>
  964. <normaloff>:/res/images/list_remove.png</normaloff>:/res/images/list_remove.png</iconset>
  965. </property>
  966. <property name="flat">
  967. <bool>true</bool>
  968. </property>
  969. <property name="themeID" stdset="0">
  970. <string notr="true">removeIconSmall</string>
  971. </property>
  972. </widget>
  973. </item>
  974. <item>
  975. <widget class="QPushButton" name="transitionProps">
  976. <property name="sizePolicy">
  977. <sizepolicy hsizetype="Maximum" vsizetype="Maximum">
  978. <horstretch>0</horstretch>
  979. <verstretch>0</verstretch>
  980. </sizepolicy>
  981. </property>
  982. <property name="maximumSize">
  983. <size>
  984. <width>22</width>
  985. <height>22</height>
  986. </size>
  987. </property>
  988. <property name="toolTip">
  989. <string>Basic.TransitionProperties</string>
  990. </property>
  991. <property name="accessibleName">
  992. <string>Basic.TransitionProperties</string>
  993. </property>
  994. <property name="text">
  995. <string notr="true"/>
  996. </property>
  997. <property name="icon">
  998. <iconset>
  999. <normaloff>:/res/images/configuration21_16.png</normaloff>:/res/images/configuration21_16.png</iconset>
  1000. </property>
  1001. <property name="flat">
  1002. <bool>true</bool>
  1003. </property>
  1004. <property name="themeID" stdset="0">
  1005. <string notr="true">configIconSmall</string>
  1006. </property>
  1007. </widget>
  1008. </item>
  1009. </layout>
  1010. </item>
  1011. <item>
  1012. <layout class="QHBoxLayout" name="horizontalLayout_3">
  1013. <property name="spacing">
  1014. <number>4</number>
  1015. </property>
  1016. <item>
  1017. <widget class="QLabel" name="transitionDurationLabel">
  1018. <property name="sizePolicy">
  1019. <sizepolicy hsizetype="Maximum" vsizetype="Preferred">
  1020. <horstretch>0</horstretch>
  1021. <verstretch>0</verstretch>
  1022. </sizepolicy>
  1023. </property>
  1024. <property name="text">
  1025. <string>Basic.TransitionDuration</string>
  1026. </property>
  1027. <property name="buddy">
  1028. <cstring>transitionDuration</cstring>
  1029. </property>
  1030. </widget>
  1031. </item>
  1032. <item>
  1033. <widget class="QSpinBox" name="transitionDuration">
  1034. <property name="accessibleName">
  1035. <string>Basic.TransitionDuration</string>
  1036. </property>
  1037. <property name="suffix">
  1038. <string> ms</string>
  1039. </property>
  1040. <property name="minimum">
  1041. <number>2</number>
  1042. </property>
  1043. <property name="maximum">
  1044. <number>10000</number>
  1045. </property>
  1046. <property name="singleStep">
  1047. <number>50</number>
  1048. </property>
  1049. <property name="value">
  1050. <number>300</number>
  1051. </property>
  1052. </widget>
  1053. </item>
  1054. </layout>
  1055. </item>
  1056. <item>
  1057. <spacer name="verticalSpacer">
  1058. <property name="orientation">
  1059. <enum>Qt::Vertical</enum>
  1060. </property>
  1061. <property name="sizeHint" stdset="0">
  1062. <size>
  1063. <width>20</width>
  1064. <height>40</height>
  1065. </size>
  1066. </property>
  1067. </spacer>
  1068. </item>
  1069. </layout>
  1070. </widget>
  1071. </item>
  1072. </layout>
  1073. </widget>
  1074. </widget>
  1075. <widget class="OBSDock" name="controlsDock">
  1076. <property name="features">
  1077. <set>QDockWidget::AllDockWidgetFeatures</set>
  1078. </property>
  1079. <property name="windowTitle">
  1080. <string>Basic.Main.Controls</string>
  1081. </property>
  1082. <attribute name="dockWidgetArea">
  1083. <number>8</number>
  1084. </attribute>
  1085. <widget class="QWidget" name="controlsDockContents">
  1086. <layout class="QVBoxLayout" name="buttonsVLayout">
  1087. <property name="spacing">
  1088. <number>2</number>
  1089. </property>
  1090. <property name="leftMargin">
  1091. <number>4</number>
  1092. </property>
  1093. <property name="topMargin">
  1094. <number>4</number>
  1095. </property>
  1096. <property name="rightMargin">
  1097. <number>4</number>
  1098. </property>
  1099. <property name="bottomMargin">
  1100. <number>4</number>
  1101. </property>
  1102. <item>
  1103. <widget class="QPushButton" name="streamButton">
  1104. <property name="enabled">
  1105. <bool>true</bool>
  1106. </property>
  1107. <property name="sizePolicy">
  1108. <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
  1109. <horstretch>0</horstretch>
  1110. <verstretch>0</verstretch>
  1111. </sizepolicy>
  1112. </property>
  1113. <property name="text">
  1114. <string>Basic.Main.StartStreaming</string>
  1115. </property>
  1116. <property name="checkable">
  1117. <bool>true</bool>
  1118. </property>
  1119. </widget>
  1120. </item>
  1121. <item>
  1122. <layout class="QHBoxLayout" name="recordingLayout">
  1123. <property name="spacing">
  1124. <number>2</number>
  1125. </property>
  1126. <property name="leftMargin">
  1127. <number>0</number>
  1128. </property>
  1129. <property name="topMargin">
  1130. <number>0</number>
  1131. </property>
  1132. <property name="rightMargin">
  1133. <number>0</number>
  1134. </property>
  1135. <property name="bottomMargin">
  1136. <number>0</number>
  1137. </property>
  1138. <item>
  1139. <widget class="RecordButton" name="recordButton">
  1140. <property name="enabled">
  1141. <bool>true</bool>
  1142. </property>
  1143. <property name="sizePolicy">
  1144. <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
  1145. <horstretch>0</horstretch>
  1146. <verstretch>0</verstretch>
  1147. </sizepolicy>
  1148. </property>
  1149. <property name="minimumSize">
  1150. <size>
  1151. <width>130</width>
  1152. <height>0</height>
  1153. </size>
  1154. </property>
  1155. <property name="text">
  1156. <string>Basic.Main.StartRecording</string>
  1157. </property>
  1158. <property name="checkable">
  1159. <bool>true</bool>
  1160. </property>
  1161. </widget>
  1162. </item>
  1163. </layout>
  1164. </item>
  1165. <item>
  1166. <widget class="QPushButton" name="modeSwitch">
  1167. <property name="text">
  1168. <string>Basic.TogglePreviewProgramMode</string>
  1169. </property>
  1170. <property name="checkable">
  1171. <bool>true</bool>
  1172. </property>
  1173. </widget>
  1174. </item>
  1175. <item>
  1176. <widget class="QPushButton" name="settingsButton">
  1177. <property name="sizePolicy">
  1178. <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
  1179. <horstretch>0</horstretch>
  1180. <verstretch>0</verstretch>
  1181. </sizepolicy>
  1182. </property>
  1183. <property name="text">
  1184. <string>Settings</string>
  1185. </property>
  1186. </widget>
  1187. </item>
  1188. <item>
  1189. <widget class="QPushButton" name="exitButton">
  1190. <property name="sizePolicy">
  1191. <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
  1192. <horstretch>0</horstretch>
  1193. <verstretch>0</verstretch>
  1194. </sizepolicy>
  1195. </property>
  1196. <property name="text">
  1197. <string>Exit</string>
  1198. </property>
  1199. </widget>
  1200. </item>
  1201. <item>
  1202. <spacer name="expVSpacer">
  1203. <property name="orientation">
  1204. <enum>Qt::Vertical</enum>
  1205. </property>
  1206. <property name="sizeHint" stdset="0">
  1207. <size>
  1208. <width>0</width>
  1209. <height>0</height>
  1210. </size>
  1211. </property>
  1212. </spacer>
  1213. </item>
  1214. </layout>
  1215. </widget>
  1216. </widget>
  1217. <action name="actionAddScene">
  1218. <property name="icon">
  1219. <iconset>
  1220. <normaloff>:/res/images/add.png</normaloff>:/res/images/add.png</iconset>
  1221. </property>
  1222. <property name="text">
  1223. <string>Add</string>
  1224. </property>
  1225. <property name="themeID" stdset="0">
  1226. <string notr="true">addIconSmall</string>
  1227. </property>
  1228. </action>
  1229. <action name="actionAddSource">
  1230. <property name="icon">
  1231. <iconset>
  1232. <normaloff>:/res/images/add.png</normaloff>:/res/images/add.png</iconset>
  1233. </property>
  1234. <property name="text">
  1235. <string>Add</string>
  1236. </property>
  1237. <property name="themeID" stdset="0">
  1238. <string notr="true">addIconSmall</string>
  1239. </property>
  1240. </action>
  1241. <action name="actionRemoveScene">
  1242. <property name="icon">
  1243. <iconset>
  1244. <normaloff>:/res/images/list_remove.png</normaloff>:/res/images/list_remove.png</iconset>
  1245. </property>
  1246. <property name="text">
  1247. <string>Remove</string>
  1248. </property>
  1249. <property name="shortcut">
  1250. <string>Del</string>
  1251. </property>
  1252. <property name="shortcutContext">
  1253. <enum>Qt::WidgetWithChildrenShortcut</enum>
  1254. </property>
  1255. <property name="themeID" stdset="0">
  1256. <string notr="true">removeIconSmall</string>
  1257. </property>
  1258. </action>
  1259. <action name="actionRemoveSource">
  1260. <property name="icon">
  1261. <iconset>
  1262. <normaloff>:/res/images/list_remove.png</normaloff>:/res/images/list_remove.png</iconset>
  1263. </property>
  1264. <property name="text">
  1265. <string>Remove</string>
  1266. </property>
  1267. <property name="shortcut">
  1268. <string>Del</string>
  1269. </property>
  1270. <property name="shortcutContext">
  1271. <enum>Qt::WidgetWithChildrenShortcut</enum>
  1272. </property>
  1273. <property name="themeID" stdset="0">
  1274. <string notr="true">removeIconSmall</string>
  1275. </property>
  1276. </action>
  1277. <action name="actionSourceProperties">
  1278. <property name="enabled">
  1279. <bool>true</bool>
  1280. </property>
  1281. <property name="icon">
  1282. <iconset>
  1283. <normaloff>:/res/images/properties.png</normaloff>:/res/images/properties.png</iconset>
  1284. </property>
  1285. <property name="text">
  1286. <string>Properties</string>
  1287. </property>
  1288. <property name="themeID" stdset="0">
  1289. <string notr="true">propertiesIconSmall</string>
  1290. </property>
  1291. </action>
  1292. <action name="actionSceneUp">
  1293. <property name="icon">
  1294. <iconset>
  1295. <normaloff>:/res/images/up.png</normaloff>:/res/images/up.png</iconset>
  1296. </property>
  1297. <property name="text">
  1298. <string>MoveUp</string>
  1299. </property>
  1300. <property name="themeID" stdset="0">
  1301. <string notr="true">upArrowIconSmall</string>
  1302. </property>
  1303. </action>
  1304. <action name="actionSourceUp">
  1305. <property name="enabled">
  1306. <bool>true</bool>
  1307. </property>
  1308. <property name="icon">
  1309. <iconset>
  1310. <normaloff>:/res/images/up.png</normaloff>:/res/images/up.png</iconset>
  1311. </property>
  1312. <property name="text">
  1313. <string>MoveUp</string>
  1314. </property>
  1315. <property name="themeID" stdset="0">
  1316. <string notr="true">upArrowIconSmall</string>
  1317. </property>
  1318. </action>
  1319. <action name="actionSceneDown">
  1320. <property name="icon">
  1321. <iconset>
  1322. <normaloff>:/res/images/down.png</normaloff>:/res/images/down.png</iconset>
  1323. </property>
  1324. <property name="text">
  1325. <string>MoveDown</string>
  1326. </property>
  1327. <property name="themeID" stdset="0">
  1328. <string notr="true">downArrowIconSmall</string>
  1329. </property>
  1330. </action>
  1331. <action name="actionSourceDown">
  1332. <property name="enabled">
  1333. <bool>true</bool>
  1334. </property>
  1335. <property name="icon">
  1336. <iconset>
  1337. <normaloff>:/res/images/down.png</normaloff>:/res/images/down.png</iconset>
  1338. </property>
  1339. <property name="text">
  1340. <string>MoveDown</string>
  1341. </property>
  1342. <property name="themeID" stdset="0">
  1343. <string notr="true">downArrowIconSmall</string>
  1344. </property>
  1345. </action>
  1346. <action name="actionShow_Recordings">
  1347. <property name="text">
  1348. <string>Basic.MainMenu.File.ShowRecordings</string>
  1349. </property>
  1350. </action>
  1351. <action name="actionRemux">
  1352. <property name="text">
  1353. <string>Basic.MainMenu.File.Remux</string>
  1354. </property>
  1355. </action>
  1356. <action name="action_Settings">
  1357. <property name="text">
  1358. <string>Basic.MainMenu.File.Settings</string>
  1359. </property>
  1360. </action>
  1361. <action name="actionE_xit">
  1362. <property name="text">
  1363. <string>Basic.MainMenu.File.Exit</string>
  1364. </property>
  1365. </action>
  1366. <action name="actionShowLogs">
  1367. <property name="text">
  1368. <string>Basic.MainMenu.Help.Logs.ShowLogs</string>
  1369. </property>
  1370. </action>
  1371. <action name="actionUploadLastLog">
  1372. <property name="text">
  1373. <string>Basic.MainMenu.Help.Logs.UploadLastLog</string>
  1374. </property>
  1375. </action>
  1376. <action name="actionUploadCurrentLog">
  1377. <property name="text">
  1378. <string>Basic.MainMenu.Help.Logs.UploadCurrentLog</string>
  1379. </property>
  1380. </action>
  1381. <action name="actionViewCurrentLog">
  1382. <property name="text">
  1383. <string>Basic.MainMenu.Help.Logs.ViewCurrentLog</string>
  1384. </property>
  1385. </action>
  1386. <action name="actionUndo">
  1387. <property name="enabled">
  1388. <bool>false</bool>
  1389. </property>
  1390. <property name="text">
  1391. <string>Basic.MainMenu.Edit.Undo</string>
  1392. </property>
  1393. </action>
  1394. <action name="actionRedo">
  1395. <property name="enabled">
  1396. <bool>false</bool>
  1397. </property>
  1398. <property name="text">
  1399. <string>Basic.MainMenu.Edit.Redo</string>
  1400. </property>
  1401. </action>
  1402. <action name="actionEditTransform">
  1403. <property name="text">
  1404. <string>Basic.MainMenu.Edit.Transform.EditTransform</string>
  1405. </property>
  1406. <property name="shortcut">
  1407. <string>Ctrl+E</string>
  1408. </property>
  1409. </action>
  1410. <action name="actionCopyTransform">
  1411. <property name="text">
  1412. <string>Basic.MainMenu.Edit.Transform.CopyTransform</string>
  1413. </property>
  1414. </action>
  1415. <action name="actionPasteTransform">
  1416. <property name="enabled">
  1417. <bool>false</bool>
  1418. </property>
  1419. <property name="text">
  1420. <string>Basic.MainMenu.Edit.Transform.PasteTransform</string>
  1421. </property>
  1422. </action>
  1423. <action name="actionRotate90CW">
  1424. <property name="text">
  1425. <string>Basic.MainMenu.Edit.Transform.Rotate90CW</string>
  1426. </property>
  1427. </action>
  1428. <action name="actionRotate90CCW">
  1429. <property name="text">
  1430. <string>Basic.MainMenu.Edit.Transform.Rotate90CCW</string>
  1431. </property>
  1432. </action>
  1433. <action name="actionRotate180">
  1434. <property name="text">
  1435. <string>Basic.MainMenu.Edit.Transform.Rotate180</string>
  1436. </property>
  1437. </action>
  1438. <action name="actionFitToScreen">
  1439. <property name="text">
  1440. <string>Basic.MainMenu.Edit.Transform.FitToScreen</string>
  1441. </property>
  1442. <property name="shortcut">
  1443. <string>Ctrl+F</string>
  1444. </property>
  1445. </action>
  1446. <action name="actionStretchToScreen">
  1447. <property name="text">
  1448. <string>Basic.MainMenu.Edit.Transform.StretchToScreen</string>
  1449. </property>
  1450. <property name="shortcut">
  1451. <string>Ctrl+S</string>
  1452. </property>
  1453. </action>
  1454. <action name="actionResetTransform">
  1455. <property name="text">
  1456. <string>Basic.MainMenu.Edit.Transform.ResetTransform</string>
  1457. </property>
  1458. <property name="shortcut">
  1459. <string>Ctrl+R</string>
  1460. </property>
  1461. </action>
  1462. <action name="actionCenterToScreen">
  1463. <property name="text">
  1464. <string>Basic.MainMenu.Edit.Transform.CenterToScreen</string>
  1465. </property>
  1466. <property name="shortcut">
  1467. <string>Ctrl+D</string>
  1468. </property>
  1469. </action>
  1470. <action name="actionVerticalCenter">
  1471. <property name="text">
  1472. <string>Basic.MainMenu.Edit.Transform.VerticalCenter</string>
  1473. </property>
  1474. </action>
  1475. <action name="actionHorizontalCenter">
  1476. <property name="text">
  1477. <string>Basic.MainMenu.Edit.Transform.HorizontalCenter</string>
  1478. </property>
  1479. </action>
  1480. <action name="actionFlipHorizontal">
  1481. <property name="text">
  1482. <string>Basic.MainMenu.Edit.Transform.FlipHorizontal</string>
  1483. </property>
  1484. </action>
  1485. <action name="actionFlipVertical">
  1486. <property name="text">
  1487. <string>Basic.MainMenu.Edit.Transform.FlipVertical</string>
  1488. </property>
  1489. </action>
  1490. <action name="actionMoveUp">
  1491. <property name="text">
  1492. <string>Basic.MainMenu.Edit.Order.MoveUp</string>
  1493. </property>
  1494. <property name="shortcut">
  1495. <string>Ctrl+Up</string>
  1496. </property>
  1497. </action>
  1498. <action name="actionMoveDown">
  1499. <property name="text">
  1500. <string>Basic.MainMenu.Edit.Order.MoveDown</string>
  1501. </property>
  1502. <property name="shortcut">
  1503. <string>Ctrl+Down</string>
  1504. </property>
  1505. </action>
  1506. <action name="actionMoveToTop">
  1507. <property name="text">
  1508. <string>Basic.MainMenu.Edit.Order.MoveToTop</string>
  1509. </property>
  1510. <property name="shortcut">
  1511. <string>Ctrl+Home</string>
  1512. </property>
  1513. </action>
  1514. <action name="actionMoveToBottom">
  1515. <property name="text">
  1516. <string>Basic.MainMenu.Edit.Order.MoveToBottom</string>
  1517. </property>
  1518. <property name="shortcut">
  1519. <string>Ctrl+End</string>
  1520. </property>
  1521. </action>
  1522. <action name="actionCheckForUpdates">
  1523. <property name="text">
  1524. <string>Basic.MainMenu.Help.CheckForUpdates</string>
  1525. </property>
  1526. </action>
  1527. <action name="actionInteract">
  1528. <property name="text">
  1529. <string>Interact</string>
  1530. </property>
  1531. </action>
  1532. <action name="actionAdvAudioProperties">
  1533. <property name="text">
  1534. <string>Basic.MainMenu.Edit.AdvAudio</string>
  1535. </property>
  1536. </action>
  1537. <action name="actionWebsite">
  1538. <property name="text">
  1539. <string>Basic.MainMenu.Help.Website</string>
  1540. </property>
  1541. </action>
  1542. <action name="actionNewSceneCollection">
  1543. <property name="text">
  1544. <string>New</string>
  1545. </property>
  1546. </action>
  1547. <action name="actionDupSceneCollection">
  1548. <property name="text">
  1549. <string>Duplicate</string>
  1550. </property>
  1551. </action>
  1552. <action name="actionRenameSceneCollection">
  1553. <property name="text">
  1554. <string>Rename</string>
  1555. </property>
  1556. </action>
  1557. <action name="actionRemoveSceneCollection">
  1558. <property name="text">
  1559. <string>Remove</string>
  1560. </property>
  1561. </action>
  1562. <action name="actionImportSceneCollection">
  1563. <property name="text">
  1564. <string>Import</string>
  1565. </property>
  1566. </action>
  1567. <action name="actionExportSceneCollection">
  1568. <property name="text">
  1569. <string>Export</string>
  1570. </property>
  1571. </action>
  1572. <action name="actionNewProfile">
  1573. <property name="text">
  1574. <string>New</string>
  1575. </property>
  1576. </action>
  1577. <action name="actionDupProfile">
  1578. <property name="text">
  1579. <string>Duplicate</string>
  1580. </property>
  1581. </action>
  1582. <action name="actionRenameProfile">
  1583. <property name="text">
  1584. <string>Rename</string>
  1585. </property>
  1586. </action>
  1587. <action name="actionRemoveProfile">
  1588. <property name="text">
  1589. <string>Remove</string>
  1590. </property>
  1591. </action>
  1592. <action name="actionImportProfile">
  1593. <property name="text">
  1594. <string>Import</string>
  1595. </property>
  1596. </action>
  1597. <action name="actionExportProfile">
  1598. <property name="text">
  1599. <string>Export</string>
  1600. </property>
  1601. </action>
  1602. <action name="actionShowSettingsFolder">
  1603. <property name="text">
  1604. <string>Basic.MainMenu.File.ShowSettingsFolder</string>
  1605. </property>
  1606. </action>
  1607. <action name="actionShowProfileFolder">
  1608. <property name="text">
  1609. <string>Basic.MainMenu.File.ShowProfileFolder</string>
  1610. </property>
  1611. </action>
  1612. <action name="actionAlwaysOnTop">
  1613. <property name="checkable">
  1614. <bool>true</bool>
  1615. </property>
  1616. <property name="text">
  1617. <string>Basic.MainMenu.AlwaysOnTop</string>
  1618. </property>
  1619. </action>
  1620. <action name="toggleListboxToolbars">
  1621. <property name="checkable">
  1622. <bool>true</bool>
  1623. </property>
  1624. <property name="checked">
  1625. <bool>true</bool>
  1626. </property>
  1627. <property name="text">
  1628. <string>Basic.MainMenu.View.Toolbars.Listboxes</string>
  1629. </property>
  1630. </action>
  1631. <action name="toggleStatusBar">
  1632. <property name="checkable">
  1633. <bool>true</bool>
  1634. </property>
  1635. <property name="checked">
  1636. <bool>true</bool>
  1637. </property>
  1638. <property name="text">
  1639. <string>Basic.MainMenu.View.StatusBar</string>
  1640. </property>
  1641. </action>
  1642. <action name="actionLockPreview">
  1643. <property name="checkable">
  1644. <bool>true</bool>
  1645. </property>
  1646. <property name="text">
  1647. <string>Basic.MainMenu.Edit.LockPreview</string>
  1648. </property>
  1649. </action>
  1650. <action name="actionScaleWindow">
  1651. <property name="checkable">
  1652. <bool>true</bool>
  1653. </property>
  1654. <property name="text">
  1655. <string>Basic.MainMenu.Edit.Scale.Window</string>
  1656. </property>
  1657. </action>
  1658. <action name="actionScaleCanvas">
  1659. <property name="checkable">
  1660. <bool>true</bool>
  1661. </property>
  1662. <property name="text">
  1663. <string>Basic.MainMenu.Edit.Scale.Canvas</string>
  1664. </property>
  1665. </action>
  1666. <action name="actionScaleOutput">
  1667. <property name="checkable">
  1668. <bool>true</bool>
  1669. </property>
  1670. <property name="text">
  1671. <string>Basic.MainMenu.Edit.Scale.Output</string>
  1672. </property>
  1673. </action>
  1674. <action name="actionPasteDup">
  1675. <property name="text">
  1676. <string>PasteDuplicate</string>
  1677. </property>
  1678. </action>
  1679. <action name="autoConfigure2">
  1680. <property name="text">
  1681. <string>Basic.AutoConfig</string>
  1682. </property>
  1683. </action>
  1684. <action name="autoConfigure">
  1685. <property name="text">
  1686. <string>Basic.AutoConfig</string>
  1687. </property>
  1688. </action>
  1689. <action name="stats">
  1690. <property name="text">
  1691. <string>Basic.Stats</string>
  1692. </property>
  1693. </action>
  1694. <action name="resetUI">
  1695. <property name="text">
  1696. <string>Basic.MainMenu.View.Docks.ResetUI</string>
  1697. </property>
  1698. </action>
  1699. <action name="lockUI">
  1700. <property name="checkable">
  1701. <bool>true</bool>
  1702. </property>
  1703. <property name="checked">
  1704. <bool>true</bool>
  1705. </property>
  1706. <property name="text">
  1707. <string>Basic.MainMenu.View.Docks.LockUI</string>
  1708. </property>
  1709. </action>
  1710. <action name="toggleScenes">
  1711. <property name="checkable">
  1712. <bool>true</bool>
  1713. </property>
  1714. <property name="checked">
  1715. <bool>true</bool>
  1716. </property>
  1717. <property name="text">
  1718. <string>Basic.Main.Scenes</string>
  1719. </property>
  1720. </action>
  1721. <action name="toggleSources">
  1722. <property name="checkable">
  1723. <bool>true</bool>
  1724. </property>
  1725. <property name="checked">
  1726. <bool>true</bool>
  1727. </property>
  1728. <property name="text">
  1729. <string>Basic.Main.Sources</string>
  1730. </property>
  1731. </action>
  1732. <action name="toggleMixer">
  1733. <property name="checkable">
  1734. <bool>true</bool>
  1735. </property>
  1736. <property name="checked">
  1737. <bool>true</bool>
  1738. </property>
  1739. <property name="text">
  1740. <string>Mixer</string>
  1741. </property>
  1742. </action>
  1743. <action name="toggleTransitions">
  1744. <property name="checkable">
  1745. <bool>true</bool>
  1746. </property>
  1747. <property name="checked">
  1748. <bool>true</bool>
  1749. </property>
  1750. <property name="text">
  1751. <string>Basic.SceneTransitions</string>
  1752. </property>
  1753. </action>
  1754. <action name="toggleControls">
  1755. <property name="checkable">
  1756. <bool>true</bool>
  1757. </property>
  1758. <property name="checked">
  1759. <bool>true</bool>
  1760. </property>
  1761. <property name="text">
  1762. <string>Basic.Main.Controls</string>
  1763. </property>
  1764. </action>
  1765. <action name="actionHelpPortal">
  1766. <property name="text">
  1767. <string>Basic.MainMenu.Help.HelpPortal</string>
  1768. </property>
  1769. </action>
  1770. <action name="actionShowCrashLogs">
  1771. <property name="text">
  1772. <string>Basic.MainMenu.Help.CrashLogs.ShowLogs</string>
  1773. </property>
  1774. </action>
  1775. <action name="actionUploadLastCrashLog">
  1776. <property name="text">
  1777. <string>Basic.MainMenu.Help.CrashLogs.UploadLastLog</string>
  1778. </property>
  1779. </action>
  1780. <action name="actionDiscord">
  1781. <property name="text">
  1782. <string>Basic.MainMenu.Help.Discord</string>
  1783. </property>
  1784. </action>
  1785. <action name="toggleStats">
  1786. <property name="checkable">
  1787. <bool>true</bool>
  1788. </property>
  1789. <property name="checked">
  1790. <bool>true</bool>
  1791. </property>
  1792. <property name="text">
  1793. <string>Basic.Stats</string>
  1794. </property>
  1795. </action>
  1796. <action name="actionShowAbout">
  1797. <property name="text">
  1798. <string>Basic.MainMenu.Help.About</string>
  1799. </property>
  1800. </action>
  1801. <action name="toggleSourceIcons">
  1802. <property name="checkable">
  1803. <bool>true</bool>
  1804. </property>
  1805. <property name="checked">
  1806. <bool>true</bool>
  1807. </property>
  1808. <property name="text">
  1809. <string>Basic.MainMenu.View.SourceIcons</string>
  1810. </property>
  1811. </action>
  1812. </widget>
  1813. <customwidgets>
  1814. <customwidget>
  1815. <class>OBSBasicPreview</class>
  1816. <extends>QWidget</extends>
  1817. <header>window-basic-preview.hpp</header>
  1818. <container>1</container>
  1819. </customwidget>
  1820. <customwidget>
  1821. <class>OBSBasicStatusBar</class>
  1822. <extends>QStatusBar</extends>
  1823. <header>window-basic-status-bar.hpp</header>
  1824. </customwidget>
  1825. <customwidget>
  1826. <class>HScrollArea</class>
  1827. <extends>QScrollArea</extends>
  1828. <header>horizontal-scroll-area.hpp</header>
  1829. <container>1</container>
  1830. </customwidget>
  1831. <customwidget>
  1832. <class>VScrollArea</class>
  1833. <extends>QScrollArea</extends>
  1834. <header>vertical-scroll-area.hpp</header>
  1835. <container>1</container>
  1836. </customwidget>
  1837. <customwidget>
  1838. <class>SourceTree</class>
  1839. <extends>QListView</extends>
  1840. <header>source-tree.hpp</header>
  1841. </customwidget>
  1842. <customwidget>
  1843. <class>SceneTree</class>
  1844. <extends>QListWidget</extends>
  1845. <header>scene-tree.hpp</header>
  1846. </customwidget>
  1847. <customwidget>
  1848. <class>OBSDock</class>
  1849. <extends>QDockWidget</extends>
  1850. <header>window-dock.hpp</header>
  1851. <container>1</container>
  1852. </customwidget>
  1853. <customwidget>
  1854. <class>RecordButton</class>
  1855. <extends>QPushButton</extends>
  1856. <header>record-button.hpp</header>
  1857. </customwidget>
  1858. </customwidgets>
  1859. <resources>
  1860. <include location="obs.qrc"/>
  1861. </resources>
  1862. <connections>
  1863. <connection>
  1864. <sender>actionE_xit</sender>
  1865. <signal>triggered()</signal>
  1866. <receiver>OBSBasic</receiver>
  1867. <slot>close()</slot>
  1868. <hints>
  1869. <hint type="sourcelabel">
  1870. <x>-1</x>
  1871. <y>-1</y>
  1872. </hint>
  1873. <hint type="destinationlabel">
  1874. <x>463</x>
  1875. <y>351</y>
  1876. </hint>
  1877. </hints>
  1878. </connection>
  1879. <connection>
  1880. <sender>exitButton</sender>
  1881. <signal>clicked()</signal>
  1882. <receiver>OBSBasic</receiver>
  1883. <slot>close()</slot>
  1884. <hints>
  1885. <hint type="sourcelabel">
  1886. <x>976</x>
  1887. <y>601</y>
  1888. </hint>
  1889. <hint type="destinationlabel">
  1890. <x>862</x>
  1891. <y>-11</y>
  1892. </hint>
  1893. </hints>
  1894. </connection>
  1895. </connections>
  1896. </ui>