Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

carla.ui 12KB

12 years ago
12 years ago
12 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
12 years ago
11 years ago
12 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3. <class>CarlaMainW</class>
  4. <widget class="QMainWindow" name="CarlaMainW">
  5. <property name="geometry">
  6. <rect>
  7. <x>0</x>
  8. <y>0</y>
  9. <width>756</width>
  10. <height>283</height>
  11. </rect>
  12. </property>
  13. <property name="windowTitle">
  14. <string>Carla</string>
  15. </property>
  16. <widget class="QWidget" name="centralwidget">
  17. <layout class="QVBoxLayout" name="verticalLayout">
  18. <property name="leftMargin">
  19. <number>0</number>
  20. </property>
  21. <property name="topMargin">
  22. <number>0</number>
  23. </property>
  24. <property name="rightMargin">
  25. <number>0</number>
  26. </property>
  27. <property name="bottomMargin">
  28. <number>2</number>
  29. </property>
  30. <item>
  31. <widget class="QFrame" name="frame_transport">
  32. <layout class="QHBoxLayout" name="horizontalLayout">
  33. <property name="leftMargin">
  34. <number>0</number>
  35. </property>
  36. <property name="rightMargin">
  37. <number>0</number>
  38. </property>
  39. <property name="bottomMargin">
  40. <number>0</number>
  41. </property>
  42. <item>
  43. <spacer name="horizontalSpacer_2">
  44. <property name="orientation">
  45. <enum>Qt::Horizontal</enum>
  46. </property>
  47. <property name="sizeHint" stdset="0">
  48. <size>
  49. <width>40</width>
  50. <height>20</height>
  51. </size>
  52. </property>
  53. </spacer>
  54. </item>
  55. <item>
  56. <widget class="QLabel" name="label">
  57. <property name="text">
  58. <string>Transport Mode:</string>
  59. </property>
  60. <property name="alignment">
  61. <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
  62. </property>
  63. </widget>
  64. </item>
  65. <item>
  66. <widget class="QComboBox" name="ch_transport"/>
  67. </item>
  68. <item>
  69. <widget class="Line" name="line">
  70. <property name="orientation">
  71. <enum>Qt::Vertical</enum>
  72. </property>
  73. </widget>
  74. </item>
  75. <item>
  76. <widget class="QPushButton" name="b_transport_play">
  77. <property name="maximumSize">
  78. <size>
  79. <width>22</width>
  80. <height>22</height>
  81. </size>
  82. </property>
  83. <property name="text">
  84. <string/>
  85. </property>
  86. <property name="icon">
  87. <iconset resource="../resources.qrc">
  88. <normaloff>:/16x16/media-playback-start.png</normaloff>:/16x16/media-playback-start.png</iconset>
  89. </property>
  90. <property name="checkable">
  91. <bool>true</bool>
  92. </property>
  93. </widget>
  94. </item>
  95. <item>
  96. <widget class="QPushButton" name="b_transport_stop">
  97. <property name="maximumSize">
  98. <size>
  99. <width>22</width>
  100. <height>22</height>
  101. </size>
  102. </property>
  103. <property name="text">
  104. <string/>
  105. </property>
  106. <property name="icon">
  107. <iconset resource="../resources.qrc">
  108. <normaloff>:/16x16/media-playback-stop.png</normaloff>:/16x16/media-playback-stop.png</iconset>
  109. </property>
  110. </widget>
  111. </item>
  112. <item>
  113. <widget class="QPushButton" name="b_transport_back">
  114. <property name="maximumSize">
  115. <size>
  116. <width>22</width>
  117. <height>22</height>
  118. </size>
  119. </property>
  120. <property name="text">
  121. <string/>
  122. </property>
  123. </widget>
  124. </item>
  125. <item>
  126. <widget class="QPushButton" name="b_transport_forward">
  127. <property name="maximumSize">
  128. <size>
  129. <width>22</width>
  130. <height>22</height>
  131. </size>
  132. </property>
  133. <property name="text">
  134. <string/>
  135. </property>
  136. </widget>
  137. </item>
  138. <item>
  139. <widget class="Line" name="line_2">
  140. <property name="orientation">
  141. <enum>Qt::Vertical</enum>
  142. </property>
  143. </widget>
  144. </item>
  145. <item>
  146. <widget class="QLabel" name="label_time">
  147. <property name="text">
  148. <string>TIME (TODO)</string>
  149. </property>
  150. </widget>
  151. </item>
  152. <item>
  153. <spacer name="horizontalSpacer">
  154. <property name="orientation">
  155. <enum>Qt::Horizontal</enum>
  156. </property>
  157. <property name="sizeHint" stdset="0">
  158. <size>
  159. <width>40</width>
  160. <height>20</height>
  161. </size>
  162. </property>
  163. </spacer>
  164. </item>
  165. </layout>
  166. </widget>
  167. </item>
  168. <item>
  169. <widget class="QWidget" name="w_plugins" native="true">
  170. <layout class="QVBoxLayout" name="layout">
  171. <property name="spacing">
  172. <number>1</number>
  173. </property>
  174. <property name="margin">
  175. <number>0</number>
  176. </property>
  177. </layout>
  178. </widget>
  179. </item>
  180. <item>
  181. <spacer name="verticalSpacer">
  182. <property name="orientation">
  183. <enum>Qt::Vertical</enum>
  184. </property>
  185. <property name="sizeHint" stdset="0">
  186. <size>
  187. <width>20</width>
  188. <height>128</height>
  189. </size>
  190. </property>
  191. </spacer>
  192. </item>
  193. </layout>
  194. </widget>
  195. <widget class="QMenuBar" name="menubar">
  196. <property name="geometry">
  197. <rect>
  198. <x>0</x>
  199. <y>0</y>
  200. <width>756</width>
  201. <height>19</height>
  202. </rect>
  203. </property>
  204. <widget class="QMenu" name="menu_File">
  205. <property name="title">
  206. <string>&amp;File</string>
  207. </property>
  208. <addaction name="act_file_new"/>
  209. <addaction name="act_file_open"/>
  210. <addaction name="act_file_save"/>
  211. <addaction name="act_file_save_as"/>
  212. <addaction name="separator"/>
  213. <addaction name="act_file_quit"/>
  214. </widget>
  215. <widget class="QMenu" name="menu_Plugin">
  216. <property name="title">
  217. <string>&amp;Plugin</string>
  218. </property>
  219. <addaction name="act_plugin_add"/>
  220. <addaction name="separator"/>
  221. <addaction name="act_plugin_remove_all"/>
  222. </widget>
  223. <widget class="QMenu" name="menu_Help">
  224. <property name="title">
  225. <string>&amp;Help</string>
  226. </property>
  227. <addaction name="act_help_about"/>
  228. <addaction name="act_help_about_qt"/>
  229. </widget>
  230. <widget class="QMenu" name="menu_Settings">
  231. <property name="title">
  232. <string>&amp;Settings</string>
  233. </property>
  234. <addaction name="act_settings_show_toolbar"/>
  235. <addaction name="separator"/>
  236. <addaction name="act_settings_configure"/>
  237. </widget>
  238. <widget class="QMenu" name="menu_Engine">
  239. <property name="title">
  240. <string>&amp;Engine</string>
  241. </property>
  242. <addaction name="act_engine_start"/>
  243. <addaction name="act_engine_stop"/>
  244. <addaction name="separator"/>
  245. <addaction name="act_engine_configure"/>
  246. </widget>
  247. <addaction name="menu_File"/>
  248. <addaction name="menu_Engine"/>
  249. <addaction name="menu_Plugin"/>
  250. <addaction name="menu_Settings"/>
  251. <addaction name="menu_Help"/>
  252. </widget>
  253. <widget class="QStatusBar" name="statusbar"/>
  254. <widget class="QToolBar" name="toolBar">
  255. <property name="windowTitle">
  256. <string>toolBar</string>
  257. </property>
  258. <property name="movable">
  259. <bool>false</bool>
  260. </property>
  261. <property name="allowedAreas">
  262. <set>Qt::NoToolBarArea</set>
  263. </property>
  264. <property name="toolButtonStyle">
  265. <enum>Qt::ToolButtonTextBesideIcon</enum>
  266. </property>
  267. <attribute name="toolBarArea">
  268. <enum>TopToolBarArea</enum>
  269. </attribute>
  270. <attribute name="toolBarBreak">
  271. <bool>false</bool>
  272. </attribute>
  273. <addaction name="act_file_new"/>
  274. <addaction name="act_file_open"/>
  275. <addaction name="act_file_save"/>
  276. <addaction name="act_file_save_as"/>
  277. <addaction name="separator"/>
  278. <addaction name="act_engine_start"/>
  279. <addaction name="act_engine_stop"/>
  280. <addaction name="act_engine_configure"/>
  281. <addaction name="separator"/>
  282. <addaction name="act_plugin_add"/>
  283. <addaction name="act_plugin_remove_all"/>
  284. </widget>
  285. <action name="act_file_save">
  286. <property name="icon">
  287. <iconset resource="../resources.qrc">
  288. <normaloff>:/16x16/document-save.png</normaloff>:/16x16/document-save.png</iconset>
  289. </property>
  290. <property name="text">
  291. <string>&amp;Save</string>
  292. </property>
  293. </action>
  294. <action name="act_file_save_as">
  295. <property name="icon">
  296. <iconset resource="../resources.qrc">
  297. <normaloff>:/16x16/document-save-as.png</normaloff>:/16x16/document-save-as.png</iconset>
  298. </property>
  299. <property name="text">
  300. <string>Save &amp;As...</string>
  301. </property>
  302. </action>
  303. <action name="act_file_new">
  304. <property name="icon">
  305. <iconset resource="../resources.qrc">
  306. <normaloff>:/16x16/document-new.png</normaloff>:/16x16/document-new.png</iconset>
  307. </property>
  308. <property name="text">
  309. <string>&amp;New</string>
  310. </property>
  311. </action>
  312. <action name="act_file_open">
  313. <property name="icon">
  314. <iconset resource="../resources.qrc">
  315. <normaloff>:/16x16/document-open.png</normaloff>:/16x16/document-open.png</iconset>
  316. </property>
  317. <property name="text">
  318. <string>&amp;Open...</string>
  319. </property>
  320. </action>
  321. <action name="act_file_quit">
  322. <property name="icon">
  323. <iconset resource="../resources.qrc">
  324. <normaloff>:/16x16/application-exit.png</normaloff>:/16x16/application-exit.png</iconset>
  325. </property>
  326. <property name="text">
  327. <string>&amp;Quit</string>
  328. </property>
  329. </action>
  330. <action name="act_plugin_remove_all">
  331. <property name="icon">
  332. <iconset resource="../resources.qrc">
  333. <normaloff>:/16x16/edit-delete.png</normaloff>:/16x16/edit-delete.png</iconset>
  334. </property>
  335. <property name="text">
  336. <string>&amp;Remove All</string>
  337. </property>
  338. </action>
  339. <action name="act_help_about">
  340. <property name="text">
  341. <string>&amp;About</string>
  342. </property>
  343. </action>
  344. <action name="act_help_about_qt">
  345. <property name="text">
  346. <string>About &amp;Qt</string>
  347. </property>
  348. </action>
  349. <action name="act_plugin_add">
  350. <property name="icon">
  351. <iconset resource="../resources.qrc">
  352. <normaloff>:/16x16/list-add.png</normaloff>:/16x16/list-add.png</iconset>
  353. </property>
  354. <property name="text">
  355. <string>&amp;Add New...</string>
  356. </property>
  357. </action>
  358. <action name="act_settings_show_toolbar">
  359. <property name="checkable">
  360. <bool>true</bool>
  361. </property>
  362. <property name="text">
  363. <string>Show &amp;Toolbar</string>
  364. </property>
  365. </action>
  366. <action name="act_settings_configure">
  367. <property name="icon">
  368. <iconset resource="../resources.qrc">
  369. <normaloff>:/16x16/configure.png</normaloff>:/16x16/configure.png</iconset>
  370. </property>
  371. <property name="text">
  372. <string>Configure Carla</string>
  373. </property>
  374. </action>
  375. <action name="act_engine_start">
  376. <property name="icon">
  377. <iconset resource="../resources.qrc">
  378. <normaloff>:/16x16/media-playback-start.png</normaloff>:/16x16/media-playback-start.png</iconset>
  379. </property>
  380. <property name="text">
  381. <string>&amp;Start</string>
  382. </property>
  383. </action>
  384. <action name="act_engine_stop">
  385. <property name="icon">
  386. <iconset resource="../resources.qrc">
  387. <normaloff>:/16x16/media-playback-stop.png</normaloff>:/16x16/media-playback-stop.png</iconset>
  388. </property>
  389. <property name="text">
  390. <string>St&amp;op</string>
  391. </property>
  392. </action>
  393. <action name="act_engine_configure">
  394. <property name="enabled">
  395. <bool>true</bool>
  396. </property>
  397. <property name="icon">
  398. <iconset resource="../resources.qrc">
  399. <normaloff>:/16x16/configure.png</normaloff>:/16x16/configure.png</iconset>
  400. </property>
  401. <property name="text">
  402. <string>Configure Driver</string>
  403. </property>
  404. </action>
  405. </widget>
  406. <resources>
  407. <include location="../resources.qrc"/>
  408. </resources>
  409. <connections>
  410. <connection>
  411. <sender>act_file_quit</sender>
  412. <signal>triggered()</signal>
  413. <receiver>CarlaMainW</receiver>
  414. <slot>close()</slot>
  415. <hints>
  416. <hint type="sourcelabel">
  417. <x>-1</x>
  418. <y>-1</y>
  419. </hint>
  420. <hint type="destinationlabel">
  421. <x>189</x>
  422. <y>34</y>
  423. </hint>
  424. </hints>
  425. </connection>
  426. <connection>
  427. <sender>act_settings_show_toolbar</sender>
  428. <signal>triggered(bool)</signal>
  429. <receiver>toolBar</receiver>
  430. <slot>setVisible(bool)</slot>
  431. <hints>
  432. <hint type="sourcelabel">
  433. <x>-1</x>
  434. <y>-1</y>
  435. </hint>
  436. <hint type="destinationlabel">
  437. <x>354</x>
  438. <y>35</y>
  439. </hint>
  440. </hints>
  441. </connection>
  442. </connections>
  443. </ui>