OBSBasic.ui 66 KB

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