OBSBasic.ui 73 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445
  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>1079</width>
  11. <height>729</height>
  12. </rect>
  13. </property>
  14. <property name="sizePolicy">
  15. <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
  16. <horstretch>0</horstretch>
  17. <verstretch>0</verstretch>
  18. </sizepolicy>
  19. </property>
  20. <property name="minimumSize">
  21. <size>
  22. <width>0</width>
  23. <height>0</height>
  24. </size>
  25. </property>
  26. <property name="windowTitle">
  27. <string>.MainWindow</string>
  28. </property>
  29. <property name="windowIcon">
  30. <iconset resource="obs.qrc">
  31. <normaloff>:/res/images/obs.png</normaloff>:/res/images/obs.png</iconset>
  32. </property>
  33. <property name="styleSheet">
  34. <string notr="true"/>
  35. </property>
  36. <property name="dockOptions">
  37. <set>QMainWindow::AllowNestedDocks|QMainWindow::AllowTabbedDocks|QMainWindow::AnimatedDocks</set>
  38. </property>
  39. <widget class="QWidget" name="centralwidget">
  40. <layout class="QVBoxLayout" name="verticalLayout">
  41. <property name="spacing">
  42. <number>0</number>
  43. </property>
  44. <property name="leftMargin">
  45. <number>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">
  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>1079</width>
  490. <height>21</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. <action name="resetUI">
  681. <property name="text">
  682. <string>Basic.MainMenu.View.ResetUI</string>
  683. </property>
  684. </action>
  685. <action name="actionFullscreenInterface">
  686. <property name="text">
  687. <string>Basic.MainMenu.View.Fullscreen.Interface</string>
  688. </property>
  689. <property name="shortcut">
  690. <string>F11</string>
  691. </property>
  692. </action>
  693. <addaction name="resetUI"/>
  694. <addaction name="actionFullscreenInterface"/>
  695. <addaction name="separator"/>
  696. <addaction name="sceneListModeMenu"/>
  697. <addaction name="toggleListboxToolbars"/>
  698. <addaction name="toggleContextBar"/>
  699. <addaction name="toggleSourceIcons"/>
  700. <addaction name="toggleStatusBar"/>
  701. <addaction name="separator"/>
  702. <addaction name="stats"/>
  703. <addaction name="separator"/>
  704. <addaction name="multiviewProjectorMenu"/>
  705. <addaction name="multiviewProjectorWindowed"/>
  706. <addaction name="separator"/>
  707. <addaction name="actionAlwaysOnTop"/>
  708. </widget>
  709. <widget class="QMenu" name="multiviewProjectorMenu">
  710. <property name="title">
  711. <string>MultiviewProjector</string>
  712. </property>
  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::DockWidgetMovable|QDockWidget::DockWidgetFloatable</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>0</number>
  757. </property>
  758. <property name="topMargin">
  759. <number>0</number>
  760. </property>
  761. <property name="rightMargin">
  762. <number>0</number>
  763. </property>
  764. <property name="bottomMargin">
  765. <number>0</number>
  766. </property>
  767. <item>
  768. <widget class="QFrame" name="scenesFrame">
  769. <property name="sizePolicy">
  770. <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
  771. <horstretch>0</horstretch>
  772. <verstretch>0</verstretch>
  773. </sizepolicy>
  774. </property>
  775. <property name="minimumSize">
  776. <size>
  777. <width>160</width>
  778. <height>0</height>
  779. </size>
  780. </property>
  781. <property name="frameShape">
  782. <enum>QFrame::StyledPanel</enum>
  783. </property>
  784. <property name="frameShadow">
  785. <enum>QFrame::Sunken</enum>
  786. </property>
  787. <layout class="QVBoxLayout" name="verticalLayout_12">
  788. <property name="spacing">
  789. <number>0</number>
  790. </property>
  791. <property name="leftMargin">
  792. <number>0</number>
  793. </property>
  794. <property name="topMargin">
  795. <number>0</number>
  796. </property>
  797. <property name="rightMargin">
  798. <number>0</number>
  799. </property>
  800. <property name="bottomMargin">
  801. <number>0</number>
  802. </property>
  803. <item>
  804. <widget class="SceneTree" name="scenes">
  805. <property name="sizePolicy">
  806. <sizepolicy hsizetype="Preferred" vsizetype="Expanding">
  807. <horstretch>0</horstretch>
  808. <verstretch>0</verstretch>
  809. </sizepolicy>
  810. </property>
  811. <property name="spacing">
  812. <number>0</number>
  813. </property>
  814. <property name="contextMenuPolicy">
  815. <enum>Qt::CustomContextMenu</enum>
  816. </property>
  817. <property name="frameShape">
  818. <enum>QFrame::NoFrame</enum>
  819. </property>
  820. <property name="frameShadow">
  821. <enum>QFrame::Plain</enum>
  822. </property>
  823. <property name="showDropIndicator" stdset="0">
  824. <bool>true</bool>
  825. </property>
  826. <property name="dragEnabled">
  827. <bool>true</bool>
  828. </property>
  829. <property name="dragDropMode">
  830. <enum>QAbstractItemView::InternalMove</enum>
  831. </property>
  832. <property name="defaultDropAction">
  833. <enum>Qt::TargetMoveAction</enum>
  834. </property>
  835. <addaction name="actionRemoveScene"/>
  836. </widget>
  837. </item>
  838. <item>
  839. <widget class="QToolBar" name="scenesToolbar">
  840. <property name="iconSize">
  841. <size>
  842. <width>16</width>
  843. <height>16</height>
  844. </size>
  845. </property>
  846. <property name="floatable">
  847. <bool>false</bool>
  848. </property>
  849. <addaction name="actionAddScene"/>
  850. <addaction name="actionRemoveScene"/>
  851. <addaction name="separator"/>
  852. <addaction name="actionSceneFilters"/>
  853. <addaction name="separator"/>
  854. <addaction name="actionSceneUp"/>
  855. <addaction name="actionSceneDown"/>
  856. </widget>
  857. </item>
  858. <item>
  859. <spacer name="scenesFixedSizeHSpacer">
  860. <property name="orientation">
  861. <enum>Qt::Horizontal</enum>
  862. </property>
  863. <property name="sizeType">
  864. <enum>QSizePolicy::Fixed</enum>
  865. </property>
  866. <property name="sizeHint" stdset="0">
  867. <size>
  868. <width>150</width>
  869. <height>0</height>
  870. </size>
  871. </property>
  872. </spacer>
  873. </item>
  874. </layout>
  875. </widget>
  876. </item>
  877. </layout>
  878. </widget>
  879. </widget>
  880. <widget class="OBSDock" name="sourcesDock">
  881. <property name="features">
  882. <set>QDockWidget::DockWidgetClosable|QDockWidget::DockWidgetMovable|QDockWidget::DockWidgetFloatable</set>
  883. </property>
  884. <property name="windowTitle">
  885. <string>Basic.Main.Sources</string>
  886. </property>
  887. <attribute name="dockWidgetArea">
  888. <number>8</number>
  889. </attribute>
  890. <widget class="QWidget" name="dockWidgetContents_6">
  891. <layout class="QVBoxLayout" name="verticalLayout_5">
  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="QFrame" name="sourcesFrame">
  909. <property name="sizePolicy">
  910. <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
  911. <horstretch>0</horstretch>
  912. <verstretch>0</verstretch>
  913. </sizepolicy>
  914. </property>
  915. <property name="minimumSize">
  916. <size>
  917. <width>160</width>
  918. <height>0</height>
  919. </size>
  920. </property>
  921. <property name="frameShape">
  922. <enum>QFrame::StyledPanel</enum>
  923. </property>
  924. <property name="frameShadow">
  925. <enum>QFrame::Sunken</enum>
  926. </property>
  927. <layout class="QVBoxLayout" name="verticalLayout_17">
  928. <property name="spacing">
  929. <number>0</number>
  930. </property>
  931. <property name="leftMargin">
  932. <number>0</number>
  933. </property>
  934. <property name="topMargin">
  935. <number>0</number>
  936. </property>
  937. <property name="rightMargin">
  938. <number>0</number>
  939. </property>
  940. <property name="bottomMargin">
  941. <number>0</number>
  942. </property>
  943. <item>
  944. <widget class="SourceTree" name="sources">
  945. <property name="sizePolicy">
  946. <sizepolicy hsizetype="Preferred" vsizetype="Expanding">
  947. <horstretch>0</horstretch>
  948. <verstretch>0</verstretch>
  949. </sizepolicy>
  950. </property>
  951. <property name="spacing">
  952. <number>0</number>
  953. </property>
  954. <property name="contextMenuPolicy">
  955. <enum>Qt::CustomContextMenu</enum>
  956. </property>
  957. <property name="frameShape">
  958. <enum>QFrame::NoFrame</enum>
  959. </property>
  960. <property name="showDropIndicator" stdset="0">
  961. <bool>true</bool>
  962. </property>
  963. <property name="dragEnabled">
  964. <bool>true</bool>
  965. </property>
  966. <property name="dragDropMode">
  967. <enum>QAbstractItemView::InternalMove</enum>
  968. </property>
  969. <property name="defaultDropAction">
  970. <enum>Qt::TargetMoveAction</enum>
  971. </property>
  972. <property name="selectionMode">
  973. <enum>QAbstractItemView::ExtendedSelection</enum>
  974. </property>
  975. <addaction name="actionRemoveSource"/>
  976. </widget>
  977. </item>
  978. <item>
  979. <widget class="QToolBar" name="sourcesToolbar">
  980. <property name="iconSize">
  981. <size>
  982. <width>16</width>
  983. <height>16</height>
  984. </size>
  985. </property>
  986. <property name="floatable">
  987. <bool>false</bool>
  988. </property>
  989. <addaction name="actionAddSource"/>
  990. <addaction name="actionRemoveSource"/>
  991. <addaction name="separator"/>
  992. <addaction name="actionSourceProperties"/>
  993. <addaction name="separator"/>
  994. <addaction name="actionSourceUp"/>
  995. <addaction name="actionSourceDown"/>
  996. </widget>
  997. </item>
  998. <item>
  999. <spacer name="sourcesFixedSizeHSpacer">
  1000. <property name="orientation">
  1001. <enum>Qt::Horizontal</enum>
  1002. </property>
  1003. <property name="sizeType">
  1004. <enum>QSizePolicy::Fixed</enum>
  1005. </property>
  1006. <property name="sizeHint" stdset="0">
  1007. <size>
  1008. <width>150</width>
  1009. <height>0</height>
  1010. </size>
  1011. </property>
  1012. </spacer>
  1013. </item>
  1014. </layout>
  1015. </widget>
  1016. </item>
  1017. </layout>
  1018. </widget>
  1019. </widget>
  1020. <widget class="OBSDock" name="mixerDock">
  1021. <property name="features">
  1022. <set>QDockWidget::DockWidgetClosable|QDockWidget::DockWidgetMovable|QDockWidget::DockWidgetFloatable</set>
  1023. </property>
  1024. <property name="windowTitle">
  1025. <string>Mixer</string>
  1026. </property>
  1027. <attribute name="dockWidgetArea">
  1028. <number>8</number>
  1029. </attribute>
  1030. <widget class="QWidget" name="dockWidgetContents_7">
  1031. <layout class="QVBoxLayout" name="verticalLayout_4">
  1032. <property name="spacing">
  1033. <number>0</number>
  1034. </property>
  1035. <property name="leftMargin">
  1036. <number>0</number>
  1037. </property>
  1038. <property name="topMargin">
  1039. <number>0</number>
  1040. </property>
  1041. <property name="rightMargin">
  1042. <number>0</number>
  1043. </property>
  1044. <property name="bottomMargin">
  1045. <number>0</number>
  1046. </property>
  1047. <item>
  1048. <widget class="QFrame" name="mixerFrame">
  1049. <property name="frameShape">
  1050. <enum>QFrame::StyledPanel</enum>
  1051. </property>
  1052. <property name="frameShadow">
  1053. <enum>QFrame::Sunken</enum>
  1054. </property>
  1055. <layout class="QVBoxLayout" name="verticalLayout_2">
  1056. <property name="spacing">
  1057. <number>0</number>
  1058. </property>
  1059. <property name="leftMargin">
  1060. <number>0</number>
  1061. </property>
  1062. <property name="topMargin">
  1063. <number>0</number>
  1064. </property>
  1065. <property name="rightMargin">
  1066. <number>0</number>
  1067. </property>
  1068. <property name="bottomMargin">
  1069. <number>0</number>
  1070. </property>
  1071. <item>
  1072. <widget class="QStackedWidget" name="stackedMixerArea">
  1073. <widget class="VScrollArea" name="hMixerScrollArea">
  1074. <property name="contextMenuPolicy">
  1075. <enum>Qt::CustomContextMenu</enum>
  1076. </property>
  1077. <property name="frameShape">
  1078. <enum>QFrame::StyledPanel</enum>
  1079. </property>
  1080. <property name="frameShadow">
  1081. <enum>QFrame::Sunken</enum>
  1082. </property>
  1083. <property name="verticalScrollBarPolicy">
  1084. <enum>Qt::ScrollBarAsNeeded</enum>
  1085. </property>
  1086. <property name="horizontalScrollBarPolicy">
  1087. <enum>Qt::ScrollBarAlwaysOff</enum>
  1088. </property>
  1089. <property name="widgetResizable">
  1090. <bool>true</bool>
  1091. </property>
  1092. <widget class="QWidget" name="hVolumeWidgets">
  1093. <property name="geometry">
  1094. <rect>
  1095. <x>0</x>
  1096. <y>0</y>
  1097. <width>74</width>
  1098. <height>16</height>
  1099. </rect>
  1100. </property>
  1101. <property name="sizePolicy">
  1102. <sizepolicy hsizetype="Preferred" vsizetype="Maximum">
  1103. <horstretch>0</horstretch>
  1104. <verstretch>0</verstretch>
  1105. </sizepolicy>
  1106. </property>
  1107. <layout class="QVBoxLayout" name="hVolControlLayout">
  1108. <property name="spacing">
  1109. <number>0</number>
  1110. </property>
  1111. <property name="leftMargin">
  1112. <number>0</number>
  1113. </property>
  1114. <property name="topMargin">
  1115. <number>0</number>
  1116. </property>
  1117. <property name="rightMargin">
  1118. <number>0</number>
  1119. </property>
  1120. <property name="bottomMargin">
  1121. <number>0</number>
  1122. </property>
  1123. </layout>
  1124. </widget>
  1125. </widget>
  1126. <widget class="HScrollArea" name="vMixerScrollArea">
  1127. <property name="contextMenuPolicy">
  1128. <enum>Qt::CustomContextMenu</enum>
  1129. </property>
  1130. <property name="frameShape">
  1131. <enum>QFrame::StyledPanel</enum>
  1132. </property>
  1133. <property name="frameShadow">
  1134. <enum>QFrame::Sunken</enum>
  1135. </property>
  1136. <property name="verticalScrollBarPolicy">
  1137. <enum>Qt::ScrollBarAlwaysOff</enum>
  1138. </property>
  1139. <property name="horizontalScrollBarPolicy">
  1140. <enum>Qt::ScrollBarAsNeeded</enum>
  1141. </property>
  1142. <property name="widgetResizable">
  1143. <bool>true</bool>
  1144. </property>
  1145. <widget class="QWidget" name="vVolumeWidgets">
  1146. <property name="geometry">
  1147. <rect>
  1148. <x>0</x>
  1149. <y>0</y>
  1150. <width>16</width>
  1151. <height>28</height>
  1152. </rect>
  1153. </property>
  1154. <property name="sizePolicy">
  1155. <sizepolicy hsizetype="Maximum" vsizetype="Preferred">
  1156. <horstretch>0</horstretch>
  1157. <verstretch>0</verstretch>
  1158. </sizepolicy>
  1159. </property>
  1160. <layout class="QHBoxLayout" name="vVolControlLayout">
  1161. <property name="spacing">
  1162. <number>0</number>
  1163. </property>
  1164. <property name="leftMargin">
  1165. <number>0</number>
  1166. </property>
  1167. <property name="topMargin">
  1168. <number>0</number>
  1169. </property>
  1170. <property name="rightMargin">
  1171. <number>0</number>
  1172. </property>
  1173. <property name="bottomMargin">
  1174. <number>0</number>
  1175. </property>
  1176. </layout>
  1177. </widget>
  1178. </widget>
  1179. </widget>
  1180. </item>
  1181. <item>
  1182. <widget class="QToolBar" name="mixerToolbar">
  1183. <property name="iconSize">
  1184. <size>
  1185. <width>16</width>
  1186. <height>16</height>
  1187. </size>
  1188. </property>
  1189. <property name="floatable">
  1190. <bool>false</bool>
  1191. </property>
  1192. <addaction name="actionMixerToolbarAdvAudio"/>
  1193. <addaction name="separator"/>
  1194. <addaction name="actionMixerToolbarMenu"/>
  1195. </widget>
  1196. </item>
  1197. </layout>
  1198. </widget>
  1199. </item>
  1200. </layout>
  1201. </widget>
  1202. </widget>
  1203. <widget class="OBSDock" name="transitionsDock">
  1204. <property name="features">
  1205. <set>QDockWidget::DockWidgetClosable|QDockWidget::DockWidgetMovable|QDockWidget::DockWidgetFloatable</set>
  1206. </property>
  1207. <property name="windowTitle">
  1208. <string>Basic.SceneTransitions</string>
  1209. </property>
  1210. <attribute name="dockWidgetArea">
  1211. <number>8</number>
  1212. </attribute>
  1213. <widget class="QWidget" name="dockWidgetContents_5">
  1214. <layout class="QVBoxLayout" name="verticalLayout_3">
  1215. <property name="spacing">
  1216. <number>0</number>
  1217. </property>
  1218. <property name="leftMargin">
  1219. <number>0</number>
  1220. </property>
  1221. <property name="topMargin">
  1222. <number>0</number>
  1223. </property>
  1224. <property name="rightMargin">
  1225. <number>0</number>
  1226. </property>
  1227. <property name="bottomMargin">
  1228. <number>0</number>
  1229. </property>
  1230. <item>
  1231. <widget class="QFrame" name="transitionsFrame">
  1232. <property name="frameShape">
  1233. <enum>QFrame::StyledPanel</enum>
  1234. </property>
  1235. <property name="frameShadow">
  1236. <enum>QFrame::Sunken</enum>
  1237. </property>
  1238. <layout class="QVBoxLayout" name="verticalLayout_8">
  1239. <property name="spacing">
  1240. <number>2</number>
  1241. </property>
  1242. <property name="leftMargin">
  1243. <number>4</number>
  1244. </property>
  1245. <property name="topMargin">
  1246. <number>4</number>
  1247. </property>
  1248. <property name="rightMargin">
  1249. <number>4</number>
  1250. </property>
  1251. <property name="bottomMargin">
  1252. <number>4</number>
  1253. </property>
  1254. <item>
  1255. <widget class="QComboBox" name="transitions">
  1256. <property name="minimumSize">
  1257. <size>
  1258. <width>120</width>
  1259. <height>0</height>
  1260. </size>
  1261. </property>
  1262. <property name="accessibleName">
  1263. <string>Transition</string>
  1264. </property>
  1265. </widget>
  1266. </item>
  1267. <item>
  1268. <layout class="QHBoxLayout" name="horizontalLayout_3">
  1269. <property name="spacing">
  1270. <number>4</number>
  1271. </property>
  1272. <item>
  1273. <widget class="QLabel" name="transitionDurationLabel">
  1274. <property name="sizePolicy">
  1275. <sizepolicy hsizetype="Maximum" vsizetype="Preferred">
  1276. <horstretch>0</horstretch>
  1277. <verstretch>0</verstretch>
  1278. </sizepolicy>
  1279. </property>
  1280. <property name="text">
  1281. <string>Basic.TransitionDuration</string>
  1282. </property>
  1283. <property name="buddy">
  1284. <cstring>transitionDuration</cstring>
  1285. </property>
  1286. </widget>
  1287. </item>
  1288. <item>
  1289. <widget class="QSpinBox" name="transitionDuration">
  1290. <property name="accessibleName">
  1291. <string>Basic.TransitionDuration</string>
  1292. </property>
  1293. <property name="suffix">
  1294. <string> ms</string>
  1295. </property>
  1296. <property name="minimum">
  1297. <number>50</number>
  1298. </property>
  1299. <property name="maximum">
  1300. <number>20000</number>
  1301. </property>
  1302. <property name="singleStep">
  1303. <number>50</number>
  1304. </property>
  1305. <property name="value">
  1306. <number>300</number>
  1307. </property>
  1308. </widget>
  1309. </item>
  1310. </layout>
  1311. </item>
  1312. <item>
  1313. <layout class="QHBoxLayout" name="horizontalLayout_4">
  1314. <property name="spacing">
  1315. <number>4</number>
  1316. </property>
  1317. <item>
  1318. <spacer name="horizontalSpacer">
  1319. <property name="orientation">
  1320. <enum>Qt::Horizontal</enum>
  1321. </property>
  1322. <property name="sizeType">
  1323. <enum>QSizePolicy::Expanding</enum>
  1324. </property>
  1325. <property name="sizeHint" stdset="0">
  1326. <size>
  1327. <width>40</width>
  1328. <height>20</height>
  1329. </size>
  1330. </property>
  1331. </spacer>
  1332. </item>
  1333. <item>
  1334. <widget class="QPushButton" name="transitionAdd">
  1335. <property name="sizePolicy">
  1336. <sizepolicy hsizetype="Maximum" vsizetype="Maximum">
  1337. <horstretch>0</horstretch>
  1338. <verstretch>0</verstretch>
  1339. </sizepolicy>
  1340. </property>
  1341. <property name="toolTip">
  1342. <string>Basic.AddTransition</string>
  1343. </property>
  1344. <property name="accessibleName">
  1345. <string>Basic.AddTransition</string>
  1346. </property>
  1347. <property name="text">
  1348. <string notr="true"/>
  1349. </property>
  1350. <property name="icon">
  1351. <iconset>
  1352. <normaloff>:/res/images/plus.svg</normaloff>:/res/images/plus.svg</iconset>
  1353. </property>
  1354. <property name="flat">
  1355. <bool>false</bool>
  1356. </property>
  1357. <property name="themeID" stdset="0">
  1358. <string notr="true">addIconSmall</string>
  1359. </property>
  1360. <property name="toolButton" stdset="0">
  1361. <bool>true</bool>
  1362. </property>
  1363. </widget>
  1364. </item>
  1365. <item>
  1366. <widget class="QPushButton" name="transitionRemove">
  1367. <property name="sizePolicy">
  1368. <sizepolicy hsizetype="Maximum" vsizetype="Maximum">
  1369. <horstretch>0</horstretch>
  1370. <verstretch>0</verstretch>
  1371. </sizepolicy>
  1372. </property>
  1373. <property name="toolTip">
  1374. <string>Basic.RemoveTransition</string>
  1375. </property>
  1376. <property name="accessibleName">
  1377. <string>Basic.RemoveTransition</string>
  1378. </property>
  1379. <property name="text">
  1380. <string notr="true"/>
  1381. </property>
  1382. <property name="icon">
  1383. <iconset>
  1384. <normaloff>:/res/images/minus.svg</normaloff>:/res/images/minus.svg</iconset>
  1385. </property>
  1386. <property name="flat">
  1387. <bool>false</bool>
  1388. </property>
  1389. <property name="themeID" stdset="0">
  1390. <string notr="true">removeIconSmall</string>
  1391. </property>
  1392. <property name="toolButton" stdset="0">
  1393. <bool>true</bool>
  1394. </property>
  1395. </widget>
  1396. </item>
  1397. <item>
  1398. <widget class="QPushButton" name="transitionProps">
  1399. <property name="sizePolicy">
  1400. <sizepolicy hsizetype="Maximum" vsizetype="Maximum">
  1401. <horstretch>0</horstretch>
  1402. <verstretch>0</verstretch>
  1403. </sizepolicy>
  1404. </property>
  1405. <property name="toolTip">
  1406. <string>Basic.TransitionProperties</string>
  1407. </property>
  1408. <property name="accessibleName">
  1409. <string>Basic.TransitionProperties</string>
  1410. </property>
  1411. <property name="text">
  1412. <string notr="true"/>
  1413. </property>
  1414. <property name="icon">
  1415. <iconset>
  1416. <normaloff>:/settings/images/settings/general.svg</normaloff>:/settings/images/settings/general.svg</iconset>
  1417. </property>
  1418. <property name="flat">
  1419. <bool>false</bool>
  1420. </property>
  1421. <property name="themeID" stdset="0">
  1422. <string notr="true">menuIconSmall</string>
  1423. </property>
  1424. <property name="toolButton" stdset="0">
  1425. <string notr="true">true</string>
  1426. </property>
  1427. </widget>
  1428. </item>
  1429. </layout>
  1430. </item>
  1431. <item>
  1432. <spacer name="verticalSpacer">
  1433. <property name="orientation">
  1434. <enum>Qt::Vertical</enum>
  1435. </property>
  1436. <property name="sizeHint" stdset="0">
  1437. <size>
  1438. <width>20</width>
  1439. <height>40</height>
  1440. </size>
  1441. </property>
  1442. </spacer>
  1443. </item>
  1444. </layout>
  1445. </widget>
  1446. </item>
  1447. </layout>
  1448. </widget>
  1449. </widget>
  1450. <widget class="OBSDock" name="controlsDock">
  1451. <property name="features">
  1452. <set>QDockWidget::DockWidgetClosable|QDockWidget::DockWidgetMovable|QDockWidget::DockWidgetFloatable</set>
  1453. </property>
  1454. <property name="windowTitle">
  1455. <string>Basic.Main.Controls</string>
  1456. </property>
  1457. <attribute name="dockWidgetArea">
  1458. <number>8</number>
  1459. </attribute>
  1460. <widget class="QWidget" name="controlsDockContents">
  1461. <layout class="QVBoxLayout" name="buttonsVLayout">
  1462. <property name="spacing">
  1463. <number>2</number>
  1464. </property>
  1465. <property name="leftMargin">
  1466. <number>4</number>
  1467. </property>
  1468. <property name="topMargin">
  1469. <number>4</number>
  1470. </property>
  1471. <property name="rightMargin">
  1472. <number>4</number>
  1473. </property>
  1474. <property name="bottomMargin">
  1475. <number>4</number>
  1476. </property>
  1477. <item>
  1478. <layout class="QHBoxLayout" name="horizontalLayout_7">
  1479. <item>
  1480. <widget class="QPushButton" name="streamButton">
  1481. <property name="enabled">
  1482. <bool>true</bool>
  1483. </property>
  1484. <property name="sizePolicy">
  1485. <sizepolicy hsizetype="Ignored" vsizetype="Fixed">
  1486. <horstretch>0</horstretch>
  1487. <verstretch>0</verstretch>
  1488. </sizepolicy>
  1489. </property>
  1490. <property name="minimumSize">
  1491. <size>
  1492. <width>150</width>
  1493. <height>0</height>
  1494. </size>
  1495. </property>
  1496. <property name="text">
  1497. <string>Basic.Main.StartStreaming</string>
  1498. </property>
  1499. <property name="checkable">
  1500. <bool>true</bool>
  1501. </property>
  1502. </widget>
  1503. </item>
  1504. <item>
  1505. <widget class="QPushButton" name="broadcastButton">
  1506. <property name="enabled">
  1507. <bool>true</bool>
  1508. </property>
  1509. <property name="sizePolicy">
  1510. <sizepolicy hsizetype="Ignored" vsizetype="Fixed">
  1511. <horstretch>0</horstretch>
  1512. <verstretch>0</verstretch>
  1513. </sizepolicy>
  1514. </property>
  1515. <property name="minimumSize">
  1516. <size>
  1517. <width>150</width>
  1518. <height>0</height>
  1519. </size>
  1520. </property>
  1521. <property name="text">
  1522. <string>Basic.Main.StartBroadcast</string>
  1523. </property>
  1524. <property name="checkable">
  1525. <bool>true</bool>
  1526. </property>
  1527. </widget>
  1528. </item>
  1529. </layout>
  1530. </item>
  1531. <item>
  1532. <layout class="QHBoxLayout" name="recordingLayout">
  1533. <property name="spacing">
  1534. <number>2</number>
  1535. </property>
  1536. <property name="leftMargin">
  1537. <number>0</number>
  1538. </property>
  1539. <property name="topMargin">
  1540. <number>0</number>
  1541. </property>
  1542. <property name="rightMargin">
  1543. <number>0</number>
  1544. </property>
  1545. <property name="bottomMargin">
  1546. <number>0</number>
  1547. </property>
  1548. <item>
  1549. <widget class="RecordButton" name="recordButton">
  1550. <property name="enabled">
  1551. <bool>true</bool>
  1552. </property>
  1553. <property name="sizePolicy">
  1554. <sizepolicy hsizetype="Ignored" vsizetype="Fixed">
  1555. <horstretch>0</horstretch>
  1556. <verstretch>0</verstretch>
  1557. </sizepolicy>
  1558. </property>
  1559. <property name="minimumSize">
  1560. <size>
  1561. <width>0</width>
  1562. <height>0</height>
  1563. </size>
  1564. </property>
  1565. <property name="text">
  1566. <string>Basic.Main.StartRecording</string>
  1567. </property>
  1568. <property name="checkable">
  1569. <bool>true</bool>
  1570. </property>
  1571. </widget>
  1572. </item>
  1573. </layout>
  1574. </item>
  1575. <item>
  1576. <widget class="QPushButton" name="modeSwitch">
  1577. <property name="sizePolicy">
  1578. <sizepolicy hsizetype="Ignored" vsizetype="Fixed">
  1579. <horstretch>0</horstretch>
  1580. <verstretch>0</verstretch>
  1581. </sizepolicy>
  1582. </property>
  1583. <property name="minimumSize">
  1584. <size>
  1585. <width>150</width>
  1586. <height>0</height>
  1587. </size>
  1588. </property>
  1589. <property name="text">
  1590. <string>Basic.TogglePreviewProgramMode</string>
  1591. </property>
  1592. <property name="checkable">
  1593. <bool>true</bool>
  1594. </property>
  1595. </widget>
  1596. </item>
  1597. <item>
  1598. <widget class="QPushButton" name="settingsButton">
  1599. <property name="sizePolicy">
  1600. <sizepolicy hsizetype="Ignored" vsizetype="Fixed">
  1601. <horstretch>0</horstretch>
  1602. <verstretch>0</verstretch>
  1603. </sizepolicy>
  1604. </property>
  1605. <property name="minimumSize">
  1606. <size>
  1607. <width>150</width>
  1608. <height>0</height>
  1609. </size>
  1610. </property>
  1611. <property name="text">
  1612. <string>Settings</string>
  1613. </property>
  1614. </widget>
  1615. </item>
  1616. <item>
  1617. <widget class="QPushButton" name="exitButton">
  1618. <property name="sizePolicy">
  1619. <sizepolicy hsizetype="Ignored" vsizetype="Fixed">
  1620. <horstretch>0</horstretch>
  1621. <verstretch>0</verstretch>
  1622. </sizepolicy>
  1623. </property>
  1624. <property name="minimumSize">
  1625. <size>
  1626. <width>150</width>
  1627. <height>0</height>
  1628. </size>
  1629. </property>
  1630. <property name="text">
  1631. <string>Exit</string>
  1632. </property>
  1633. </widget>
  1634. </item>
  1635. <item>
  1636. <spacer name="expVSpacer">
  1637. <property name="orientation">
  1638. <enum>Qt::Vertical</enum>
  1639. </property>
  1640. <property name="sizeHint" stdset="0">
  1641. <size>
  1642. <width>0</width>
  1643. <height>0</height>
  1644. </size>
  1645. </property>
  1646. </spacer>
  1647. </item>
  1648. </layout>
  1649. </widget>
  1650. </widget>
  1651. <action name="actionAddScene">
  1652. <property name="icon">
  1653. <iconset>
  1654. <normaloff>:/res/images/plus.svg</normaloff>:/res/images/plus.svg</iconset>
  1655. </property>
  1656. <property name="text">
  1657. <string>Add</string>
  1658. </property>
  1659. <property name="toolTip">
  1660. <string>Basic.Main.AddSceneDlg.Title</string>
  1661. </property>
  1662. <property name="themeID" stdset="0">
  1663. <string notr="true">addIconSmall</string>
  1664. </property>
  1665. </action>
  1666. <action name="actionAddSource">
  1667. <property name="icon">
  1668. <iconset>
  1669. <normaloff>:/res/images/plus.svg</normaloff>:/res/images/plus.svg</iconset>
  1670. </property>
  1671. <property name="text">
  1672. <string>Add</string>
  1673. </property>
  1674. <property name="toolTip">
  1675. <string>AddSource</string>
  1676. </property>
  1677. <property name="themeID" stdset="0">
  1678. <string notr="true">addIconSmall</string>
  1679. </property>
  1680. </action>
  1681. <action name="actionRemoveScene">
  1682. <property name="icon">
  1683. <iconset>
  1684. <normaloff>:/res/images/minus.svg</normaloff>:/res/images/minus.svg</iconset>
  1685. </property>
  1686. <property name="text">
  1687. <string>Remove</string>
  1688. </property>
  1689. <property name="toolTip">
  1690. <string>RemoveScene</string>
  1691. </property>
  1692. <property name="shortcut">
  1693. <string>Del</string>
  1694. </property>
  1695. <property name="shortcutContext">
  1696. <enum>Qt::WidgetWithChildrenShortcut</enum>
  1697. </property>
  1698. <property name="iconVisibleInMenu">
  1699. <bool>false</bool>
  1700. </property>
  1701. <property name="themeID" stdset="0">
  1702. <string notr="true">removeIconSmall</string>
  1703. </property>
  1704. </action>
  1705. <action name="actionRemoveSource">
  1706. <property name="icon">
  1707. <iconset>
  1708. <normaloff>:/res/images/minus.svg</normaloff>:/res/images/minus.svg</iconset>
  1709. </property>
  1710. <property name="text">
  1711. <string>Remove</string>
  1712. </property>
  1713. <property name="toolTip">
  1714. <string>RemoveSource</string>
  1715. </property>
  1716. <property name="shortcut">
  1717. <string>Del</string>
  1718. </property>
  1719. <property name="shortcutContext">
  1720. <enum>Qt::WidgetWithChildrenShortcut</enum>
  1721. </property>
  1722. <property name="iconVisibleInMenu">
  1723. <bool>false</bool>
  1724. </property>
  1725. <property name="themeID" stdset="0">
  1726. <string notr="true">removeIconSmall</string>
  1727. </property>
  1728. </action>
  1729. <action name="actionSourceProperties">
  1730. <property name="enabled">
  1731. <bool>true</bool>
  1732. </property>
  1733. <property name="icon">
  1734. <iconset>
  1735. <normaloff>:/settings/images/settings/general.svg</normaloff>:/settings/images/settings/general.svg</iconset>
  1736. </property>
  1737. <property name="text">
  1738. <string>Properties</string>
  1739. </property>
  1740. <property name="toolTip">
  1741. <string>SourceProperties</string>
  1742. </property>
  1743. <property name="themeID" stdset="0">
  1744. <string notr="true">propertiesIconSmall</string>
  1745. </property>
  1746. </action>
  1747. <action name="actionSceneUp">
  1748. <property name="icon">
  1749. <iconset>
  1750. <normaloff>:/res/images/up.svg</normaloff>:/res/images/up.svg</iconset>
  1751. </property>
  1752. <property name="text">
  1753. <string>MoveUp</string>
  1754. </property>
  1755. <property name="toolTip">
  1756. <string>MoveSceneUp</string>
  1757. </property>
  1758. <property name="themeID" stdset="0">
  1759. <string notr="true">upArrowIconSmall</string>
  1760. </property>
  1761. </action>
  1762. <action name="actionSourceUp">
  1763. <property name="enabled">
  1764. <bool>true</bool>
  1765. </property>
  1766. <property name="icon">
  1767. <iconset>
  1768. <normaloff>:/res/images/up.svg</normaloff>:/res/images/up.svg</iconset>
  1769. </property>
  1770. <property name="text">
  1771. <string>MoveUp</string>
  1772. </property>
  1773. <property name="toolTip">
  1774. <string>MoveSourceUp</string>
  1775. </property>
  1776. <property name="themeID" stdset="0">
  1777. <string notr="true">upArrowIconSmall</string>
  1778. </property>
  1779. </action>
  1780. <action name="actionSceneDown">
  1781. <property name="icon">
  1782. <iconset>
  1783. <normaloff>:/res/images/down.svg</normaloff>:/res/images/down.svg</iconset>
  1784. </property>
  1785. <property name="text">
  1786. <string>MoveDown</string>
  1787. </property>
  1788. <property name="toolTip">
  1789. <string>MoveSceneDown</string>
  1790. </property>
  1791. <property name="themeID" stdset="0">
  1792. <string notr="true">downArrowIconSmall</string>
  1793. </property>
  1794. </action>
  1795. <action name="actionSourceDown">
  1796. <property name="enabled">
  1797. <bool>true</bool>
  1798. </property>
  1799. <property name="icon">
  1800. <iconset>
  1801. <normaloff>:/res/images/down.svg</normaloff>:/res/images/down.svg</iconset>
  1802. </property>
  1803. <property name="text">
  1804. <string>MoveDown</string>
  1805. </property>
  1806. <property name="toolTip">
  1807. <string>MoveSourceDown</string>
  1808. </property>
  1809. <property name="themeID" stdset="0">
  1810. <string notr="true">downArrowIconSmall</string>
  1811. </property>
  1812. </action>
  1813. <action name="actionShow_Recordings">
  1814. <property name="text">
  1815. <string>Basic.MainMenu.File.ShowRecordings</string>
  1816. </property>
  1817. </action>
  1818. <action name="actionRemux">
  1819. <property name="text">
  1820. <string>Basic.MainMenu.File.Remux</string>
  1821. </property>
  1822. </action>
  1823. <action name="action_Settings">
  1824. <property name="text">
  1825. <string>Basic.MainMenu.File.Settings</string>
  1826. </property>
  1827. </action>
  1828. <action name="actionE_xit">
  1829. <property name="text">
  1830. <string>Basic.MainMenu.File.Exit</string>
  1831. </property>
  1832. </action>
  1833. <action name="actionShowLogs">
  1834. <property name="text">
  1835. <string>Basic.MainMenu.Help.Logs.ShowLogs</string>
  1836. </property>
  1837. </action>
  1838. <action name="actionUploadLastLog">
  1839. <property name="text">
  1840. <string>Basic.MainMenu.Help.Logs.UploadLastLog</string>
  1841. </property>
  1842. </action>
  1843. <action name="actionUploadCurrentLog">
  1844. <property name="text">
  1845. <string>Basic.MainMenu.Help.Logs.UploadCurrentLog</string>
  1846. </property>
  1847. </action>
  1848. <action name="actionViewCurrentLog">
  1849. <property name="text">
  1850. <string>Basic.MainMenu.Help.Logs.ViewCurrentLog</string>
  1851. </property>
  1852. </action>
  1853. <action name="actionUndo">
  1854. <property name="enabled">
  1855. <bool>false</bool>
  1856. </property>
  1857. <property name="text">
  1858. <string>Basic.MainMenu.Edit.Undo</string>
  1859. </property>
  1860. </action>
  1861. <action name="actionRedo">
  1862. <property name="enabled">
  1863. <bool>false</bool>
  1864. </property>
  1865. <property name="text">
  1866. <string>Basic.MainMenu.Edit.Redo</string>
  1867. </property>
  1868. </action>
  1869. <action name="actionEditTransform">
  1870. <property name="text">
  1871. <string>Basic.MainMenu.Edit.Transform.EditTransform</string>
  1872. </property>
  1873. <property name="shortcut">
  1874. <string>Ctrl+E</string>
  1875. </property>
  1876. </action>
  1877. <action name="actionCopyTransform">
  1878. <property name="text">
  1879. <string>Basic.MainMenu.Edit.Transform.CopyTransform</string>
  1880. </property>
  1881. <property name="shortcut">
  1882. <string>Ctrl+Shift+C</string>
  1883. </property>
  1884. </action>
  1885. <action name="actionPasteTransform">
  1886. <property name="enabled">
  1887. <bool>false</bool>
  1888. </property>
  1889. <property name="text">
  1890. <string>Basic.MainMenu.Edit.Transform.PasteTransform</string>
  1891. </property>
  1892. <property name="shortcut">
  1893. <string>Ctrl+Shift+V</string>
  1894. </property>
  1895. </action>
  1896. <action name="actionRotate90CW">
  1897. <property name="text">
  1898. <string>Basic.MainMenu.Edit.Transform.Rotate90CW</string>
  1899. </property>
  1900. </action>
  1901. <action name="actionRotate90CCW">
  1902. <property name="text">
  1903. <string>Basic.MainMenu.Edit.Transform.Rotate90CCW</string>
  1904. </property>
  1905. </action>
  1906. <action name="actionRotate180">
  1907. <property name="text">
  1908. <string>Basic.MainMenu.Edit.Transform.Rotate180</string>
  1909. </property>
  1910. </action>
  1911. <action name="actionFitToScreen">
  1912. <property name="text">
  1913. <string>Basic.MainMenu.Edit.Transform.FitToScreen</string>
  1914. </property>
  1915. <property name="shortcut">
  1916. <string>Ctrl+F</string>
  1917. </property>
  1918. </action>
  1919. <action name="actionStretchToScreen">
  1920. <property name="text">
  1921. <string>Basic.MainMenu.Edit.Transform.StretchToScreen</string>
  1922. </property>
  1923. <property name="shortcut">
  1924. <string>Ctrl+S</string>
  1925. </property>
  1926. </action>
  1927. <action name="actionResetTransform">
  1928. <property name="text">
  1929. <string>Basic.MainMenu.Edit.Transform.ResetTransform</string>
  1930. </property>
  1931. <property name="shortcut">
  1932. <string>Ctrl+R</string>
  1933. </property>
  1934. </action>
  1935. <action name="actionCenterToScreen">
  1936. <property name="text">
  1937. <string>Basic.MainMenu.Edit.Transform.CenterToScreen</string>
  1938. </property>
  1939. <property name="shortcut">
  1940. <string>Ctrl+D</string>
  1941. </property>
  1942. </action>
  1943. <action name="actionVerticalCenter">
  1944. <property name="text">
  1945. <string>Basic.MainMenu.Edit.Transform.VerticalCenter</string>
  1946. </property>
  1947. </action>
  1948. <action name="actionHorizontalCenter">
  1949. <property name="text">
  1950. <string>Basic.MainMenu.Edit.Transform.HorizontalCenter</string>
  1951. </property>
  1952. </action>
  1953. <action name="actionFlipHorizontal">
  1954. <property name="text">
  1955. <string>Basic.MainMenu.Edit.Transform.FlipHorizontal</string>
  1956. </property>
  1957. </action>
  1958. <action name="actionFlipVertical">
  1959. <property name="text">
  1960. <string>Basic.MainMenu.Edit.Transform.FlipVertical</string>
  1961. </property>
  1962. </action>
  1963. <action name="actionMoveUp">
  1964. <property name="text">
  1965. <string>Basic.MainMenu.Edit.Order.MoveUp</string>
  1966. </property>
  1967. <property name="shortcut">
  1968. <string>Ctrl+Up</string>
  1969. </property>
  1970. </action>
  1971. <action name="actionMoveDown">
  1972. <property name="text">
  1973. <string>Basic.MainMenu.Edit.Order.MoveDown</string>
  1974. </property>
  1975. <property name="shortcut">
  1976. <string>Ctrl+Down</string>
  1977. </property>
  1978. </action>
  1979. <action name="actionMoveToTop">
  1980. <property name="text">
  1981. <string>Basic.MainMenu.Edit.Order.MoveToTop</string>
  1982. </property>
  1983. <property name="shortcut">
  1984. <string>Ctrl+Home</string>
  1985. </property>
  1986. </action>
  1987. <action name="actionMoveToBottom">
  1988. <property name="text">
  1989. <string>Basic.MainMenu.Edit.Order.MoveToBottom</string>
  1990. </property>
  1991. <property name="shortcut">
  1992. <string>Ctrl+End</string>
  1993. </property>
  1994. </action>
  1995. <action name="actionCheckForUpdates">
  1996. <property name="text">
  1997. <string>Basic.MainMenu.Help.CheckForUpdates</string>
  1998. </property>
  1999. </action>
  2000. <action name="actionShowMacPermissions">
  2001. <property name="text">
  2002. <string>MacPermissions.MenuAction</string>
  2003. </property>
  2004. </action>
  2005. <action name="actionRepair">
  2006. <property name="text">
  2007. <string>Basic.MainMenu.Help.Repair</string>
  2008. </property>
  2009. </action>
  2010. <action name="actionRestartSafe">
  2011. <property name="text">
  2012. <string>Basic.MainMenu.Help.RestartSafeMode</string>
  2013. </property>
  2014. </action>
  2015. <action name="actionReleaseNotes">
  2016. <property name="visible">
  2017. <bool>false</bool>
  2018. </property>
  2019. <property name="text">
  2020. <string>Basic.MainMenu.Help.ReleaseNotes</string>
  2021. </property>
  2022. </action>
  2023. <action name="actionInteract">
  2024. <property name="text">
  2025. <string>Interact</string>
  2026. </property>
  2027. </action>
  2028. <action name="actionAdvAudioProperties">
  2029. <property name="text">
  2030. <string>Basic.MainMenu.Edit.AdvAudio</string>
  2031. </property>
  2032. </action>
  2033. <action name="actionWebsite">
  2034. <property name="text">
  2035. <string>Basic.MainMenu.Help.Website</string>
  2036. </property>
  2037. </action>
  2038. <action name="actionNewSceneCollection">
  2039. <property name="text">
  2040. <string>New</string>
  2041. </property>
  2042. </action>
  2043. <action name="actionDupSceneCollection">
  2044. <property name="text">
  2045. <string>Duplicate</string>
  2046. </property>
  2047. </action>
  2048. <action name="actionRenameSceneCollection">
  2049. <property name="text">
  2050. <string>Rename</string>
  2051. </property>
  2052. </action>
  2053. <action name="actionRemoveSceneCollection">
  2054. <property name="text">
  2055. <string>Remove</string>
  2056. </property>
  2057. </action>
  2058. <action name="actionImportSceneCollection">
  2059. <property name="text">
  2060. <string>Import</string>
  2061. </property>
  2062. </action>
  2063. <action name="actionExportSceneCollection">
  2064. <property name="text">
  2065. <string>Export</string>
  2066. </property>
  2067. </action>
  2068. <action name="actionShowMissingFiles">
  2069. <property name="text">
  2070. <string>Basic.MainMenu.File.ShowMissingFiles</string>
  2071. </property>
  2072. </action>
  2073. <action name="actionNewProfile">
  2074. <property name="text">
  2075. <string>New</string>
  2076. </property>
  2077. </action>
  2078. <action name="actionDupProfile">
  2079. <property name="text">
  2080. <string>Duplicate</string>
  2081. </property>
  2082. </action>
  2083. <action name="actionRenameProfile">
  2084. <property name="text">
  2085. <string>Rename</string>
  2086. </property>
  2087. </action>
  2088. <action name="actionRemoveProfile">
  2089. <property name="text">
  2090. <string>Remove</string>
  2091. </property>
  2092. </action>
  2093. <action name="actionImportProfile">
  2094. <property name="text">
  2095. <string>Import</string>
  2096. </property>
  2097. </action>
  2098. <action name="actionExportProfile">
  2099. <property name="text">
  2100. <string>Export</string>
  2101. </property>
  2102. </action>
  2103. <action name="actionShowSettingsFolder">
  2104. <property name="text">
  2105. <string>Basic.MainMenu.File.ShowSettingsFolder</string>
  2106. </property>
  2107. </action>
  2108. <action name="actionShowProfileFolder">
  2109. <property name="text">
  2110. <string>Basic.MainMenu.File.ShowProfileFolder</string>
  2111. </property>
  2112. </action>
  2113. <action name="actionAlwaysOnTop">
  2114. <property name="checkable">
  2115. <bool>true</bool>
  2116. </property>
  2117. <property name="text">
  2118. <string>Basic.MainMenu.View.AlwaysOnTop</string>
  2119. </property>
  2120. </action>
  2121. <action name="toggleListboxToolbars">
  2122. <property name="checkable">
  2123. <bool>true</bool>
  2124. </property>
  2125. <property name="checked">
  2126. <bool>true</bool>
  2127. </property>
  2128. <property name="text">
  2129. <string>Basic.MainMenu.View.ListboxToolbars</string>
  2130. </property>
  2131. </action>
  2132. <action name="toggleStatusBar">
  2133. <property name="checkable">
  2134. <bool>true</bool>
  2135. </property>
  2136. <property name="checked">
  2137. <bool>true</bool>
  2138. </property>
  2139. <property name="text">
  2140. <string>Basic.MainMenu.View.StatusBar</string>
  2141. </property>
  2142. </action>
  2143. <action name="actionLockPreview">
  2144. <property name="checkable">
  2145. <bool>true</bool>
  2146. </property>
  2147. <property name="text">
  2148. <string>Basic.MainMenu.Edit.LockPreview</string>
  2149. </property>
  2150. </action>
  2151. <action name="actionScaleWindow">
  2152. <property name="checkable">
  2153. <bool>true</bool>
  2154. </property>
  2155. <property name="text">
  2156. <string>Basic.MainMenu.Edit.Scale.Window</string>
  2157. </property>
  2158. </action>
  2159. <action name="actionScaleCanvas">
  2160. <property name="checkable">
  2161. <bool>true</bool>
  2162. </property>
  2163. <property name="text">
  2164. <string>Basic.MainMenu.Edit.Scale.Canvas</string>
  2165. </property>
  2166. </action>
  2167. <action name="actionScaleOutput">
  2168. <property name="checkable">
  2169. <bool>true</bool>
  2170. </property>
  2171. <property name="text">
  2172. <string>Basic.MainMenu.Edit.Scale.Output</string>
  2173. </property>
  2174. </action>
  2175. <action name="actionPasteDup">
  2176. <property name="text">
  2177. <string>PasteDuplicate</string>
  2178. </property>
  2179. </action>
  2180. <action name="autoConfigure2">
  2181. <property name="text">
  2182. <string>Basic.AutoConfig</string>
  2183. </property>
  2184. </action>
  2185. <action name="autoConfigure">
  2186. <property name="text">
  2187. <string>Basic.AutoConfig</string>
  2188. </property>
  2189. </action>
  2190. <action name="stats">
  2191. <property name="text">
  2192. <string>Basic.Stats</string>
  2193. </property>
  2194. </action>
  2195. <action name="multiviewProjectorWindowed">
  2196. <property name="text">
  2197. <string>MultiviewWindowed</string>
  2198. </property>
  2199. </action>
  2200. <action name="resetDocks">
  2201. <property name="text">
  2202. <string>Basic.MainMenu.Docks.ResetDocks</string>
  2203. </property>
  2204. </action>
  2205. <action name="lockDocks">
  2206. <property name="checkable">
  2207. <bool>true</bool>
  2208. </property>
  2209. <property name="checked">
  2210. <bool>true</bool>
  2211. </property>
  2212. <property name="text">
  2213. <string>Basic.MainMenu.Docks.LockDocks</string>
  2214. </property>
  2215. </action>
  2216. <action name="sideDocks">
  2217. <property name="checkable">
  2218. <bool>true</bool>
  2219. </property>
  2220. <property name="checked">
  2221. <bool>false</bool>
  2222. </property>
  2223. <property name="text">
  2224. <string>Basic.MainMenu.Docks.SideDocks</string>
  2225. </property>
  2226. </action>
  2227. <action name="actionHelpPortal">
  2228. <property name="text">
  2229. <string>Basic.MainMenu.Help.HelpPortal</string>
  2230. </property>
  2231. </action>
  2232. <action name="actionShowCrashLogs">
  2233. <property name="text">
  2234. <string>Basic.MainMenu.Help.CrashLogs.ShowLogs</string>
  2235. </property>
  2236. </action>
  2237. <action name="actionUploadLastCrashLog">
  2238. <property name="text">
  2239. <string>Basic.MainMenu.Help.CrashLogs.UploadLastLog</string>
  2240. </property>
  2241. </action>
  2242. <action name="actionDiscord">
  2243. <property name="text">
  2244. <string>Basic.MainMenu.Help.Discord</string>
  2245. </property>
  2246. </action>
  2247. <action name="actionShowWhatsNew">
  2248. <property name="text">
  2249. <string>Basic.MainMenu.Help.WhatsNew</string>
  2250. </property>
  2251. </action>
  2252. <action name="actionShowAbout">
  2253. <property name="text">
  2254. <string>Basic.MainMenu.Help.About</string>
  2255. </property>
  2256. </action>
  2257. <action name="toggleSourceIcons">
  2258. <property name="checkable">
  2259. <bool>true</bool>
  2260. </property>
  2261. <property name="checked">
  2262. <bool>true</bool>
  2263. </property>
  2264. <property name="text">
  2265. <string>Basic.MainMenu.View.SourceIcons</string>
  2266. </property>
  2267. </action>
  2268. <action name="toggleContextToolbars">
  2269. <property name="checkable">
  2270. <bool>true</bool>
  2271. </property>
  2272. <property name="text">
  2273. <string>Basic.MainMenu.View.Toolbars.Context</string>
  2274. </property>
  2275. </action>
  2276. <action name="toggleContextBar">
  2277. <property name="checkable">
  2278. <bool>true</bool>
  2279. </property>
  2280. <property name="checked">
  2281. <bool>true</bool>
  2282. </property>
  2283. <property name="text">
  2284. <string>Basic.MainMenu.View.ContextBar</string>
  2285. </property>
  2286. </action>
  2287. <action name="actionMainUndo">
  2288. <property name="enabled">
  2289. <bool>false</bool>
  2290. </property>
  2291. <property name="text">
  2292. <string>Undo.Undo</string>
  2293. </property>
  2294. </action>
  2295. <action name="actionMainRedo">
  2296. <property name="enabled">
  2297. <bool>false</bool>
  2298. </property>
  2299. <property name="text">
  2300. <string>Undo.Redo</string>
  2301. </property>
  2302. </action>
  2303. <action name="actionMixerToolbarAdvAudio">
  2304. <property name="icon">
  2305. <iconset resource="obs.qrc">
  2306. <normaloff>:/settings/images/settings/advanced.svg</normaloff>:/settings/images/settings/advanced.svg</iconset>
  2307. </property>
  2308. <property name="text">
  2309. <string>AdvAudioProps</string>
  2310. </property>
  2311. <property name="toolTip">
  2312. <string>Basic.AdvAudio</string>
  2313. </property>
  2314. <property name="themeID" stdset="0">
  2315. <string>cogsIcon</string>
  2316. </property>
  2317. </action>
  2318. <action name="actionMixerToolbarMenu">
  2319. <property name="icon">
  2320. <iconset resource="obs.qrc">
  2321. <normaloff>:/res/images/dots-vert.svg</normaloff>:/res/images/dots-vert.svg</iconset>
  2322. </property>
  2323. <property name="text">
  2324. <string>MixerToolbarMenu</string>
  2325. </property>
  2326. <property name="themeID" stdset="0">
  2327. <string>menuIconSmall</string>
  2328. </property>
  2329. </action>
  2330. <action name="actionSceneFilters">
  2331. <property name="icon">
  2332. <iconset resource="obs.qrc">
  2333. <normaloff>:/res/images/filter.svg</normaloff>:/res/images/filter.svg</iconset>
  2334. </property>
  2335. <property name="text">
  2336. <string>SceneFilters</string>
  2337. </property>
  2338. <property name="toolTip">
  2339. <string>SceneFilters</string>
  2340. </property>
  2341. <property name="themeID" stdset="0">
  2342. <string>filtersIcon</string>
  2343. </property>
  2344. </action>
  2345. <action name="actionSceneGridMode">
  2346. <property name="checkable">
  2347. <bool>true</bool>
  2348. </property>
  2349. <property name="text">
  2350. <string>Grid</string>
  2351. </property>
  2352. </action>
  2353. <action name="actionSceneListMode">
  2354. <property name="checkable">
  2355. <bool>true</bool>
  2356. </property>
  2357. <property name="text">
  2358. <string>List</string>
  2359. </property>
  2360. </action>
  2361. </widget>
  2362. <customwidgets>
  2363. <customwidget>
  2364. <class>OBSBasicPreview</class>
  2365. <extends>QWidget</extends>
  2366. <header>window-basic-preview.hpp</header>
  2367. <container>1</container>
  2368. </customwidget>
  2369. <customwidget>
  2370. <class>OBSBasicStatusBar</class>
  2371. <extends>QStatusBar</extends>
  2372. <header>window-basic-status-bar.hpp</header>
  2373. </customwidget>
  2374. <customwidget>
  2375. <class>HScrollArea</class>
  2376. <extends>QScrollArea</extends>
  2377. <header>horizontal-scroll-area.hpp</header>
  2378. <container>1</container>
  2379. </customwidget>
  2380. <customwidget>
  2381. <class>VScrollArea</class>
  2382. <extends>QScrollArea</extends>
  2383. <header>vertical-scroll-area.hpp</header>
  2384. <container>1</container>
  2385. </customwidget>
  2386. <customwidget>
  2387. <class>SourceTree</class>
  2388. <extends>QListView</extends>
  2389. <header>source-tree.hpp</header>
  2390. </customwidget>
  2391. <customwidget>
  2392. <class>SceneTree</class>
  2393. <extends>QListWidget</extends>
  2394. <header>scene-tree.hpp</header>
  2395. </customwidget>
  2396. <customwidget>
  2397. <class>OBSDock</class>
  2398. <extends>QDockWidget</extends>
  2399. <header>window-dock.hpp</header>
  2400. <container>1</container>
  2401. </customwidget>
  2402. <customwidget>
  2403. <class>RecordButton</class>
  2404. <extends>QPushButton</extends>
  2405. <header>record-button.hpp</header>
  2406. </customwidget>
  2407. </customwidgets>
  2408. <resources>
  2409. <include location="obs.qrc"/>
  2410. </resources>
  2411. <connections>
  2412. <connection>
  2413. <sender>actionE_xit</sender>
  2414. <signal>triggered()</signal>
  2415. <receiver>OBSBasic</receiver>
  2416. <slot>close()</slot>
  2417. <hints>
  2418. <hint type="sourcelabel">
  2419. <x>-1</x>
  2420. <y>-1</y>
  2421. </hint>
  2422. <hint type="destinationlabel">
  2423. <x>463</x>
  2424. <y>351</y>
  2425. </hint>
  2426. </hints>
  2427. </connection>
  2428. <connection>
  2429. <sender>exitButton</sender>
  2430. <signal>clicked()</signal>
  2431. <receiver>OBSBasic</receiver>
  2432. <slot>close()</slot>
  2433. <hints>
  2434. <hint type="sourcelabel">
  2435. <x>976</x>
  2436. <y>601</y>
  2437. </hint>
  2438. <hint type="destinationlabel">
  2439. <x>862</x>
  2440. <y>-11</y>
  2441. </hint>
  2442. </hints>
  2443. </connection>
  2444. </connections>
  2445. </ui>