OBSBasic.ui 69 KB

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