OBSBasic.ui 73 KB

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