1
0

OBSBasic.ui 57 KB

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