OBSBasic.ui 70 KB

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