OBSBasic.ui 69 KB

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