OBSBasic.ui 68 KB

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