OBSBasic.ui 70 KB

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