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.

1570 lines
63KB

  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3. # Carla widgets code
  4. # Copyright (C) 2011-2018 Filipe Coelho <falktx@falktx.com>
  5. #
  6. # This program is free software; you can redistribute it and/or
  7. # modify it under the terms of the GNU General Public License as
  8. # published by the Free Software Foundation; either version 2 of
  9. # the License, or any later version.
  10. #
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU General Public License for more details.
  15. #
  16. # For a full copy of the GNU General Public License see the doc/GPL.txt file.
  17. # ------------------------------------------------------------------------------------------------------------
  18. # Imports (Config)
  19. from carla_config import *
  20. # ------------------------------------------------------------------------------------------------------------
  21. # Imports (Global)
  22. if config_UseQt5:
  23. from PyQt5.QtCore import pyqtSignal, pyqtSlot, Qt, QByteArray, QSettings, QTimer
  24. from PyQt5.QtGui import QColor, QCursor, QFontMetrics, QPainter, QPainterPath
  25. from PyQt5.QtWidgets import QDialog, QInputDialog, QLineEdit, QMenu, QVBoxLayout, QWidget
  26. else:
  27. from PyQt4.QtCore import pyqtSignal, pyqtSlot, Qt, QByteArray, QSettings, QTimer
  28. from PyQt4.QtGui import QColor, QCursor, QFontMetrics, QPainter, QPainterPath
  29. from PyQt4.QtGui import QDialog, QInputDialog, QLineEdit, QMenu, QVBoxLayout, QWidget
  30. # ------------------------------------------------------------------------------------------------------------
  31. # Imports (Custom)
  32. import ui_carla_about
  33. import ui_carla_edit
  34. import ui_carla_parameter
  35. from carla_shared import *
  36. from carla_utils import *
  37. from paramspinbox import CustomInputDialog
  38. from pixmapkeyboard import PixmapKeyboardHArea
  39. # ------------------------------------------------------------------------------------------------------------
  40. # Carla GUI defines
  41. ICON_STATE_ON = 3 # turns on, sets as wait
  42. ICON_STATE_WAIT = 2 # nothing, sets as off
  43. ICON_STATE_OFF = 1 # turns off, sets as null
  44. ICON_STATE_NULL = 0 # nothing
  45. # ------------------------------------------------------------------------------------------------------------
  46. # Carla About dialog
  47. class CarlaAboutW(QDialog):
  48. def __init__(self, parent, host):
  49. QDialog.__init__(self, parent)
  50. self.ui = ui_carla_about.Ui_CarlaAboutW()
  51. self.ui.setupUi(self)
  52. if False:
  53. # kdevelop likes this :)
  54. host = CarlaHostNull()
  55. if host.isControl:
  56. extraInfo = " - <b>%s</b>" % self.tr("OSC Bridge Version")
  57. elif host.isPlugin:
  58. extraInfo = " - <b>%s</b>" % self.tr("Plugin Version")
  59. else:
  60. extraInfo = ""
  61. self.ui.l_about.setText(self.tr(""
  62. "<br>Version %s"
  63. "<br>Carla is a fully-featured audio plugin host%s.<br>"
  64. "<br>Copyright (C) 2011-2018 falkTX<br>"
  65. "" % (VERSION, extraInfo)))
  66. if host.isControl:
  67. self.ui.l_extended.hide()
  68. self.ui.tabWidget.removeTab(3)
  69. self.ui.tabWidget.removeTab(2)
  70. self.ui.l_extended.setText(gCarla.utils.get_complete_license_text())
  71. if host.is_engine_running() and not host.isControl:
  72. self.ui.le_osc_url_tcp.setText(host.get_host_osc_url_tcp())
  73. self.ui.le_osc_url_udp.setText(host.get_host_osc_url_udp())
  74. else:
  75. self.ui.le_osc_url_tcp.setText(self.tr("(Engine not running)"))
  76. self.ui.le_osc_url_udp.setText(self.tr("(Engine not running)"))
  77. self.ui.l_osc_cmds.setText("<table>"
  78. "<tr><td>" "/set_active" "&nbsp;</td><td>&lt;" "i-value" "&gt;</td><td>" "</td></tr>"
  79. "<tr><td>" "/set_drywet" "&nbsp;</td><td>&lt;" "f-value" "&gt;</td><td>" "</td></tr>"
  80. "<tr><td>" "/set_volume" "&nbsp;</td><td>&lt;" "f-value" "&gt;</td><td>" "</td></tr>"
  81. "<tr><td>" "/set_balance_left" "&nbsp;</td><td>&lt;" "f-value" "&gt;</td><td>" "</td></tr>"
  82. "<tr><td>" "/set_balance_right" "&nbsp;</td><td>&lt;" "f-value" "&gt;</td><td>" "</td></tr>"
  83. "<tr><td>" "/set_panning" "&nbsp;</td><td>&lt;" "f-value" "&gt;</td><td>" "</td></tr>"
  84. "<tr><td>" "/set_parameter_value" "&nbsp;</td><td>&lt;" "i-index" "&gt;</td><td>&lt;" "f-value" "&gt;</td></tr>"
  85. "<tr><td>" "/set_parameter_midi_cc" "&nbsp;</td><td>&lt;" "i-index" "&gt;</td><td>&lt;" "i-cc" "&gt;</td></tr>"
  86. "<tr><td>" "/set_parameter_midi_channel" "&nbsp;</td><td>&lt;" "i-index" "&gt;</td><td>&lt;" "i-channel" "&gt;</td></tr>"
  87. "<tr><td>" "/set_program" "&nbsp;</td><td>&lt;" "i-index" "&gt;</td><td>" "</td></tr>"
  88. "<tr><td>" "/set_midi_program" "&nbsp;</td><td>&lt;" "i-index" "&gt;</td><td>" "</td></tr>"
  89. "<tr><td>" "/note_on" "&nbsp;</td><td>&lt;" "i-note" "&gt;</td><td>&lt;" "i-velo" "&gt;</td></tr>"
  90. "<tr><td>" "/note_off" "&nbsp;</td><td>&lt;" "i-note" "&gt;</td><td>" "</td></tr>"
  91. "</table>"
  92. )
  93. self.ui.l_example.setText("/Carla/2/set_parameter_value 5 1.0")
  94. self.ui.l_example_help.setText("<i>(as in this example, \"2\" is the plugin number and \"5\" the parameter)</i>")
  95. self.ui.l_ladspa.setText(self.tr("Everything! (Including LRDF)"))
  96. self.ui.l_dssi.setText(self.tr("Everything! (Including CustomData/Chunks)"))
  97. self.ui.l_lv2.setText(self.tr("About 110&#37; complete (using custom extensions)<br/>"
  98. "Implemented Feature/Extensions:"
  99. "<ul>"
  100. "<li>http://lv2plug.in/ns/ext/atom</li>"
  101. "<li>http://lv2plug.in/ns/ext/buf-size</li>"
  102. "<li>http://lv2plug.in/ns/ext/data-access</li>"
  103. #"<li>http://lv2plug.in/ns/ext/dynmanifest</li>"
  104. "<li>http://lv2plug.in/ns/ext/event</li>"
  105. "<li>http://lv2plug.in/ns/ext/instance-access</li>"
  106. "<li>http://lv2plug.in/ns/ext/log</li>"
  107. "<li>http://lv2plug.in/ns/ext/midi</li>"
  108. #"<li>http://lv2plug.in/ns/ext/morph</li>"
  109. "<li>http://lv2plug.in/ns/ext/options</li>"
  110. "<li>http://lv2plug.in/ns/ext/parameters</li>"
  111. #"<li>http://lv2plug.in/ns/ext/patch</li>"
  112. #"<li>http://lv2plug.in/ns/ext/port-groups</li>"
  113. "<li>http://lv2plug.in/ns/ext/port-props</li>"
  114. "<li>http://lv2plug.in/ns/ext/presets</li>"
  115. "<li>http://lv2plug.in/ns/ext/resize-port</li>"
  116. "<li>http://lv2plug.in/ns/ext/state</li>"
  117. "<li>http://lv2plug.in/ns/ext/time</li>"
  118. "<li>http://lv2plug.in/ns/ext/uri-map</li>"
  119. "<li>http://lv2plug.in/ns/ext/urid</li>"
  120. "<li>http://lv2plug.in/ns/ext/worker</li>"
  121. "<li>http://lv2plug.in/ns/extensions/ui</li>"
  122. "<li>http://lv2plug.in/ns/extensions/units</li>"
  123. "<li>http://home.gna.org/lv2dynparam/rtmempool/v1</li>"
  124. "<li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li>"
  125. "<li>http://kxstudio.sf.net/ns/lv2ext/programs</li>"
  126. "<li>http://kxstudio.sf.net/ns/lv2ext/props</li>"
  127. "<li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li>"
  128. "<li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li>"
  129. "<li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li>"
  130. "</ul>"))
  131. self.ui.l_vst2.setText(self.tr("About 85% complete (missing vst bank/presets and some minor stuff)"))
  132. # 2nd tab is usually longer than the 1st
  133. # adjust appropriately
  134. self.ui.tabWidget.setCurrentIndex(1)
  135. self.adjustSize()
  136. self.ui.tabWidget.setCurrentIndex(0)
  137. self.setFixedSize(self.size())
  138. if WINDOWS:
  139. self.setWindowFlags(self.windowFlags()|Qt.MSWindowsFixedSizeDialogHint)
  140. def done(self, r):
  141. QDialog.done(self, r)
  142. self.close()
  143. # ------------------------------------------------------------------------------------------------------------
  144. # Plugin Parameter
  145. class PluginParameter(QWidget):
  146. midiControlChanged = pyqtSignal(int, int)
  147. midiChannelChanged = pyqtSignal(int, int)
  148. valueChanged = pyqtSignal(int, float)
  149. def __init__(self, parent, host, pInfo, pluginId, tabIndex):
  150. QWidget.__init__(self, parent)
  151. self.host = host
  152. self.ui = ui_carla_parameter.Ui_PluginParameter()
  153. self.ui.setupUi(self)
  154. if False:
  155. # kdevelop likes this :)
  156. host = CarlaHostNull()
  157. self.host = host
  158. # -------------------------------------------------------------
  159. # Internal stuff
  160. self.fMidiControl = -1
  161. self.fMidiChannel = 1
  162. self.fParameterId = pInfo['index']
  163. self.fPluginId = pluginId
  164. self.fTabIndex = tabIndex
  165. # -------------------------------------------------------------
  166. # Set-up GUI
  167. pType = pInfo['type']
  168. pHints = pInfo['hints']
  169. self.ui.label.setText(pInfo['name'])
  170. self.ui.widget.setName(pInfo['name'])
  171. self.ui.widget.setMinimum(pInfo['minimum'])
  172. self.ui.widget.setMaximum(pInfo['maximum'])
  173. self.ui.widget.setDefault(pInfo['default'])
  174. self.ui.widget.setValue(pInfo['current'])
  175. self.ui.widget.setLabel(pInfo['unit'])
  176. self.ui.widget.setStep(pInfo['step'])
  177. self.ui.widget.setStepSmall(pInfo['stepSmall'])
  178. self.ui.widget.setStepLarge(pInfo['stepLarge'])
  179. self.ui.widget.setScalePoints(pInfo['scalePoints'], bool(pHints & PARAMETER_USES_SCALEPOINTS))
  180. if pType == PARAMETER_INPUT:
  181. if not pHints & PARAMETER_IS_ENABLED:
  182. self.ui.label.setEnabled(False)
  183. self.ui.widget.setEnabled(False)
  184. self.ui.widget.setReadOnly(True)
  185. self.ui.sb_control.setEnabled(False)
  186. self.ui.sb_channel.setEnabled(False)
  187. elif not pHints & PARAMETER_IS_AUTOMABLE:
  188. self.ui.sb_control.setEnabled(False)
  189. self.ui.sb_channel.setEnabled(False)
  190. if pHints & PARAMETER_IS_READ_ONLY:
  191. self.ui.widget.setReadOnly(True)
  192. elif pType == PARAMETER_OUTPUT:
  193. self.ui.widget.setReadOnly(True)
  194. else:
  195. self.ui.widget.setVisible(False)
  196. self.ui.sb_control.setVisible(False)
  197. self.ui.sb_channel.setVisible(False)
  198. if pHints & PARAMETER_USES_CUSTOM_TEXT and not host.isPlugin:
  199. self.ui.widget.setTextCallback(self._textCallBack)
  200. self.ui.widget.setValueCallback(self._valueCallBack)
  201. self.ui.widget.updateAll()
  202. self.setMidiControl(pInfo['midiCC'])
  203. self.setMidiChannel(pInfo['midiChannel'])
  204. # -------------------------------------------------------------
  205. # Set-up connections
  206. self.ui.sb_control.customContextMenuRequested.connect(self.slot_controlSpinboxCustomMenu)
  207. self.ui.sb_channel.customContextMenuRequested.connect(self.slot_channelSpinboxCustomMenu)
  208. self.ui.sb_control.valueChanged.connect(self.slot_controlSpinboxChanged)
  209. self.ui.sb_channel.valueChanged.connect(self.slot_channelSpinboxChanged)
  210. # -------------------------------------------------------------
  211. def getPluginId(self):
  212. return self.fPluginId
  213. def getTabIndex(self):
  214. return self.fTabIndex
  215. def setPluginId(self, pluginId):
  216. self.fPluginId = pluginId
  217. def setDefault(self, value):
  218. self.ui.widget.setDefault(value)
  219. def setValue(self, value):
  220. self.ui.widget.blockSignals(True)
  221. self.ui.widget.setValue(value)
  222. self.ui.widget.blockSignals(False)
  223. def setMidiControl(self, control):
  224. self.fMidiControl = control
  225. self.ui.sb_control.blockSignals(True)
  226. self.ui.sb_control.setValue(control)
  227. self.ui.sb_control.blockSignals(False)
  228. def setMidiChannel(self, channel):
  229. self.fMidiChannel = channel
  230. self.ui.sb_channel.blockSignals(True)
  231. self.ui.sb_channel.setValue(channel)
  232. self.ui.sb_channel.blockSignals(False)
  233. def setLabelWidth(self, width):
  234. self.ui.label.setFixedWidth(width)
  235. @pyqtSlot()
  236. def slot_controlSpinboxCustomMenu(self):
  237. menu = QMenu(self)
  238. actNone = menu.addAction(self.tr("None"))
  239. if self.fMidiControl == -1:
  240. actNone.setCheckable(True)
  241. actNone.setChecked(True)
  242. for cc in MIDI_CC_LIST:
  243. action = menu.addAction(cc)
  244. if self.fMidiControl != -1 and int(cc.split(" ", 1)[0], 16) == self.fMidiControl:
  245. action.setCheckable(True)
  246. action.setChecked(True)
  247. actSel = menu.exec_(QCursor.pos())
  248. if not actSel:
  249. pass
  250. elif actSel == actNone:
  251. self.ui.sb_control.setValue(-1)
  252. else:
  253. selControlStr = actSel.text()
  254. selControl = int(selControlStr.split(" ", 1)[0], 16)
  255. self.ui.sb_control.setValue(selControl)
  256. @pyqtSlot()
  257. def slot_channelSpinboxCustomMenu(self):
  258. menu = QMenu(self)
  259. for i in range(1, 16+1):
  260. action = menu.addAction("%i" % i)
  261. if self.fMidiChannel == i:
  262. action.setCheckable(True)
  263. action.setChecked(True)
  264. actSel = menu.exec_(QCursor.pos())
  265. if actSel:
  266. selChannel = int(actSel.text())
  267. self.ui.sb_channel.setValue(selChannel)
  268. @pyqtSlot(int)
  269. def slot_controlSpinboxChanged(self, control):
  270. self.fMidiControl = control
  271. self.midiControlChanged.emit(self.fParameterId, control)
  272. @pyqtSlot(int)
  273. def slot_channelSpinboxChanged(self, channel):
  274. self.fMidiChannel = channel
  275. self.midiChannelChanged.emit(self.fParameterId, channel)
  276. def _textCallBack(self):
  277. return self.host.get_parameter_text(self.fPluginId, self.fParameterId)
  278. def _valueCallBack(self, value):
  279. self.valueChanged.emit(self.fParameterId, value)
  280. # ------------------------------------------------------------------------------------------------------------
  281. # Plugin Editor Parent (Meta class)
  282. class PluginEditParentMeta():
  283. #class PluginEditParentMeta(metaclass=ABCMeta):
  284. @abstractmethod
  285. def editDialogVisibilityChanged(self, pluginId, visible):
  286. raise NotImplementedError
  287. @abstractmethod
  288. def editDialogPluginHintsChanged(self, pluginId, hints):
  289. raise NotImplementedError
  290. @abstractmethod
  291. def editDialogParameterValueChanged(self, pluginId, parameterId, value):
  292. raise NotImplementedError
  293. @abstractmethod
  294. def editDialogProgramChanged(self, pluginId, index):
  295. raise NotImplementedError
  296. @abstractmethod
  297. def editDialogMidiProgramChanged(self, pluginId, index):
  298. raise NotImplementedError
  299. @abstractmethod
  300. def editDialogNotePressed(self, pluginId, note):
  301. raise NotImplementedError
  302. @abstractmethod
  303. def editDialogNoteReleased(self, pluginId, note):
  304. raise NotImplementedError
  305. @abstractmethod
  306. def editDialogMidiActivityChanged(self, pluginId, onOff):
  307. raise NotImplementedError
  308. # ------------------------------------------------------------------------------------------------------------
  309. # Plugin Editor (Built-in)
  310. class PluginEdit(QDialog):
  311. # settings
  312. kParamsPerPage = 17
  313. # signals
  314. SIGTERM = pyqtSignal()
  315. SIGUSR1 = pyqtSignal()
  316. def __init__(self, parent, host, pluginId):
  317. QDialog.__init__(self, parent.window() if parent is not None else None)
  318. self.host = host
  319. self.ui = ui_carla_edit.Ui_PluginEdit()
  320. self.ui.setupUi(self)
  321. if False:
  322. # kdevelop likes this :)
  323. parent = PluginEditParentMeta()
  324. host = CarlaHostNull()
  325. self.host = host
  326. # -------------------------------------------------------------
  327. # Internal stuff
  328. self.fGeometry = QByteArray()
  329. self.fParent = parent
  330. self.fPluginId = pluginId
  331. self.fPluginInfo = None
  332. self.fCurrentStateFilename = None
  333. self.fControlChannel = round(host.get_internal_parameter_value(pluginId, PARAMETER_CTRL_CHANNEL))
  334. self.fFirstInit = True
  335. self.fParameterList = [] # (type, id, widget)
  336. self.fParametersToUpdate = [] # (id, value)
  337. self.fPlayingNotes = [] # (channel, note)
  338. self.fTabIconOff = QIcon(":/bitmaps/led_off.png")
  339. self.fTabIconOn = QIcon(":/bitmaps/led_yellow.png")
  340. self.fTabIconTimers = []
  341. # used during testing
  342. self.fIdleTimerId = 0
  343. # -------------------------------------------------------------
  344. # Set-up GUI
  345. labelPluginFont = self.ui.label_plugin.font()
  346. labelPluginFont.setPixelSize(15)
  347. labelPluginFont.setWeight(75)
  348. self.ui.label_plugin.setFont(labelPluginFont)
  349. self.ui.dial_drywet.setCustomPaintMode(self.ui.dial_drywet.CUSTOM_PAINT_MODE_CARLA_WET)
  350. self.ui.dial_drywet.setPixmap(3)
  351. self.ui.dial_drywet.setLabel("Dry/Wet")
  352. self.ui.dial_drywet.setMinimum(0.0)
  353. self.ui.dial_drywet.setMaximum(1.0)
  354. self.ui.dial_drywet.setValue(host.get_internal_parameter_value(pluginId, PARAMETER_DRYWET))
  355. self.ui.dial_vol.setCustomPaintMode(self.ui.dial_vol.CUSTOM_PAINT_MODE_CARLA_VOL)
  356. self.ui.dial_vol.setPixmap(3)
  357. self.ui.dial_vol.setLabel("Volume")
  358. self.ui.dial_vol.setMinimum(0.0)
  359. self.ui.dial_vol.setMaximum(1.27)
  360. self.ui.dial_vol.setValue(host.get_internal_parameter_value(pluginId, PARAMETER_VOLUME))
  361. self.ui.dial_b_left.setCustomPaintMode(self.ui.dial_b_left.CUSTOM_PAINT_MODE_CARLA_L)
  362. self.ui.dial_b_left.setPixmap(4)
  363. self.ui.dial_b_left.setLabel("L")
  364. self.ui.dial_b_left.setMinimum(-1.0)
  365. self.ui.dial_b_left.setMaximum(1.0)
  366. self.ui.dial_b_left.setValue(host.get_internal_parameter_value(pluginId, PARAMETER_BALANCE_LEFT))
  367. self.ui.dial_b_right.setCustomPaintMode(self.ui.dial_b_right.CUSTOM_PAINT_MODE_CARLA_R)
  368. self.ui.dial_b_right.setPixmap(4)
  369. self.ui.dial_b_right.setLabel("R")
  370. self.ui.dial_b_right.setMinimum(-1.0)
  371. self.ui.dial_b_right.setMaximum(1.0)
  372. self.ui.dial_b_right.setValue(host.get_internal_parameter_value(pluginId, PARAMETER_BALANCE_RIGHT))
  373. self.ui.dial_pan.setCustomPaintMode(self.ui.dial_b_right.CUSTOM_PAINT_MODE_CARLA_PAN)
  374. self.ui.dial_pan.setPixmap(4)
  375. self.ui.dial_pan.setLabel("Pan")
  376. self.ui.dial_pan.setMinimum(-1.0)
  377. self.ui.dial_pan.setMaximum(1.0)
  378. self.ui.dial_pan.setValue(host.get_internal_parameter_value(pluginId, PARAMETER_PANNING))
  379. self.ui.sb_ctrl_channel.setValue(self.fControlChannel+1)
  380. self.ui.scrollArea = PixmapKeyboardHArea(self)
  381. self.ui.keyboard = self.ui.scrollArea.keyboard
  382. self.ui.keyboard.setEnabled(self.fControlChannel >= 0)
  383. self.layout().addWidget(self.ui.scrollArea)
  384. self.ui.scrollArea.setEnabled(False)
  385. self.ui.scrollArea.setVisible(False)
  386. # todo
  387. self.ui.rb_balance.setEnabled(False)
  388. self.ui.rb_balance.setVisible(False)
  389. self.ui.rb_pan.setEnabled(False)
  390. self.ui.rb_pan.setVisible(False)
  391. self.reloadAll()
  392. self.fFirstInit = False
  393. # -------------------------------------------------------------
  394. # Set-up connections
  395. self.finished.connect(self.slot_finished)
  396. self.ui.ch_fixed_buffer.clicked.connect(self.slot_optionChanged)
  397. self.ui.ch_force_stereo.clicked.connect(self.slot_optionChanged)
  398. self.ui.ch_map_program_changes.clicked.connect(self.slot_optionChanged)
  399. self.ui.ch_use_chunks.clicked.connect(self.slot_optionChanged)
  400. self.ui.ch_send_program_changes.clicked.connect(self.slot_optionChanged)
  401. self.ui.ch_send_control_changes.clicked.connect(self.slot_optionChanged)
  402. self.ui.ch_send_channel_pressure.clicked.connect(self.slot_optionChanged)
  403. self.ui.ch_send_note_aftertouch.clicked.connect(self.slot_optionChanged)
  404. self.ui.ch_send_pitchbend.clicked.connect(self.slot_optionChanged)
  405. self.ui.ch_send_all_sound_off.clicked.connect(self.slot_optionChanged)
  406. self.ui.dial_drywet.realValueChanged.connect(self.slot_dryWetChanged)
  407. self.ui.dial_vol.realValueChanged.connect(self.slot_volumeChanged)
  408. self.ui.dial_b_left.realValueChanged.connect(self.slot_balanceLeftChanged)
  409. self.ui.dial_b_right.realValueChanged.connect(self.slot_balanceRightChanged)
  410. self.ui.dial_pan.realValueChanged.connect(self.slot_panChanged)
  411. self.ui.sb_ctrl_channel.valueChanged.connect(self.slot_ctrlChannelChanged)
  412. self.ui.dial_drywet.customContextMenuRequested.connect(self.slot_knobCustomMenu)
  413. self.ui.dial_vol.customContextMenuRequested.connect(self.slot_knobCustomMenu)
  414. self.ui.dial_b_left.customContextMenuRequested.connect(self.slot_knobCustomMenu)
  415. self.ui.dial_b_right.customContextMenuRequested.connect(self.slot_knobCustomMenu)
  416. self.ui.dial_pan.customContextMenuRequested.connect(self.slot_knobCustomMenu)
  417. self.ui.sb_ctrl_channel.customContextMenuRequested.connect(self.slot_channelCustomMenu)
  418. self.ui.keyboard.noteOn.connect(self.slot_noteOn)
  419. self.ui.keyboard.noteOff.connect(self.slot_noteOff)
  420. self.ui.cb_programs.currentIndexChanged.connect(self.slot_programIndexChanged)
  421. self.ui.cb_midi_programs.currentIndexChanged.connect(self.slot_midiProgramIndexChanged)
  422. self.ui.b_save_state.clicked.connect(self.slot_stateSave)
  423. self.ui.b_load_state.clicked.connect(self.slot_stateLoad)
  424. #host.ProgramChangedCallback.connect(self.slot_handleProgramChangedCallback)
  425. #host.MidiProgramChangedCallback.connect(self.slot_handleMidiProgramChangedCallback)
  426. host.NoteOnCallback.connect(self.slot_handleNoteOnCallback)
  427. host.NoteOffCallback.connect(self.slot_handleNoteOffCallback)
  428. host.UpdateCallback.connect(self.slot_handleUpdateCallback)
  429. host.ReloadInfoCallback.connect(self.slot_handleReloadInfoCallback)
  430. host.ReloadParametersCallback.connect(self.slot_handleReloadParametersCallback)
  431. host.ReloadProgramsCallback.connect(self.slot_handleReloadProgramsCallback)
  432. host.ReloadAllCallback.connect(self.slot_handleReloadAllCallback)
  433. #------------------------------------------------------------------
  434. @pyqtSlot(int, int, int, int)
  435. def slot_handleNoteOnCallback(self, pluginId, channel, note, velocity):
  436. if self.fPluginId != pluginId: return
  437. if self.fControlChannel == channel:
  438. self.ui.keyboard.sendNoteOn(note, False)
  439. playItem = (channel, note)
  440. if playItem not in self.fPlayingNotes:
  441. self.fPlayingNotes.append(playItem)
  442. if len(self.fPlayingNotes) == 1 and self.fParent is not None:
  443. self.fParent.editDialogMidiActivityChanged(self.fPluginId, True)
  444. @pyqtSlot(int, int, int)
  445. def slot_handleNoteOffCallback(self, pluginId, channel, note):
  446. if self.fPluginId != pluginId: return
  447. if self.fControlChannel == channel:
  448. self.ui.keyboard.sendNoteOff(note, False)
  449. playItem = (channel, note)
  450. if playItem in self.fPlayingNotes:
  451. self.fPlayingNotes.remove(playItem)
  452. if len(self.fPlayingNotes) == 0 and self.fParent is not None:
  453. self.fParent.editDialogMidiActivityChanged(self.fPluginId, False)
  454. @pyqtSlot(int)
  455. def slot_handleUpdateCallback(self, pluginId):
  456. if self.fPluginId == pluginId:
  457. self.updateInfo()
  458. @pyqtSlot(int)
  459. def slot_handleReloadInfoCallback(self, pluginId):
  460. if self.fPluginId == pluginId:
  461. self.reloadInfo()
  462. @pyqtSlot(int)
  463. def slot_handleReloadParametersCallback(self, pluginId):
  464. if self.fPluginId == pluginId:
  465. self.reloadParameters()
  466. @pyqtSlot(int)
  467. def slot_handleReloadProgramsCallback(self, pluginId):
  468. if self.fPluginId == pluginId:
  469. self.reloadPrograms()
  470. @pyqtSlot(int)
  471. def slot_handleReloadAllCallback(self, pluginId):
  472. if self.fPluginId == pluginId:
  473. self.reloadAll()
  474. #------------------------------------------------------------------
  475. def updateInfo(self):
  476. # Update current program text
  477. if self.ui.cb_programs.count() > 0:
  478. pIndex = self.ui.cb_programs.currentIndex()
  479. if pIndex >= 0:
  480. pName = self.host.get_program_name(self.fPluginId, pIndex)
  481. #pName = pName[:40] + (pName[40:] and "...")
  482. self.ui.cb_programs.setItemText(pIndex, pName)
  483. # Update current midi program text
  484. if self.ui.cb_midi_programs.count() > 0:
  485. mpIndex = self.ui.cb_midi_programs.currentIndex()
  486. if mpIndex >= 0:
  487. mpData = self.host.get_midi_program_data(self.fPluginId, mpIndex)
  488. mpBank = mpData['bank']
  489. mpProg = mpData['program']
  490. mpName = mpData['name']
  491. #mpName = mpName[:40] + (mpName[40:] and "...")
  492. self.ui.cb_midi_programs.setItemText(mpIndex, "%03i:%03i - %s" % (mpBank+1, mpProg+1, mpName))
  493. # Update all parameter values
  494. for paramType, paramId, paramWidget in self.fParameterList:
  495. paramWidget.blockSignals(True)
  496. paramWidget.setValue(self.host.get_current_parameter_value(self.fPluginId, paramId))
  497. paramWidget.blockSignals(False)
  498. # and the internal ones too
  499. self.ui.dial_drywet.blockSignals(True)
  500. self.ui.dial_drywet.setValue(self.host.get_internal_parameter_value(self.fPluginId, PARAMETER_DRYWET))
  501. self.ui.dial_drywet.blockSignals(False)
  502. self.ui.dial_vol.blockSignals(True)
  503. self.ui.dial_vol.setValue(self.host.get_internal_parameter_value(self.fPluginId, PARAMETER_VOLUME))
  504. self.ui.dial_vol.blockSignals(False)
  505. self.ui.dial_b_left.blockSignals(True)
  506. self.ui.dial_b_left.setValue(self.host.get_internal_parameter_value(self.fPluginId, PARAMETER_BALANCE_LEFT))
  507. self.ui.dial_b_left.blockSignals(False)
  508. self.ui.dial_b_right.blockSignals(True)
  509. self.ui.dial_b_right.setValue(self.host.get_internal_parameter_value(self.fPluginId, PARAMETER_BALANCE_RIGHT))
  510. self.ui.dial_b_right.blockSignals(False)
  511. self.ui.dial_pan.blockSignals(True)
  512. self.ui.dial_pan.setValue(self.host.get_internal_parameter_value(self.fPluginId, PARAMETER_PANNING))
  513. self.ui.dial_pan.blockSignals(False)
  514. self.fControlChannel = round(self.host.get_internal_parameter_value(self.fPluginId, PARAMETER_CTRL_CHANNEL))
  515. self.ui.sb_ctrl_channel.blockSignals(True)
  516. self.ui.sb_ctrl_channel.setValue(self.fControlChannel+1)
  517. self.ui.sb_ctrl_channel.blockSignals(False)
  518. self.ui.keyboard.allNotesOff()
  519. self._updateCtrlPrograms()
  520. self.fParametersToUpdate = []
  521. #------------------------------------------------------------------
  522. def reloadAll(self):
  523. self.fPluginInfo = self.host.get_plugin_info(self.fPluginId)
  524. self.reloadInfo()
  525. self.reloadParameters()
  526. self.reloadPrograms()
  527. if self.fPluginInfo['type'] == PLUGIN_LV2:
  528. self.ui.b_save_state.setEnabled(False)
  529. if not self.ui.scrollArea.isEnabled():
  530. self.resize(self.width(), self.height()-self.ui.scrollArea.height())
  531. # Workaround for a Qt4 bug, see https://bugreports.qt-project.org/browse/QTBUG-7792
  532. if LINUX: QTimer.singleShot(0, self.slot_fixNameWordWrap)
  533. @pyqtSlot()
  534. def slot_fixNameWordWrap(self):
  535. if self.ui.tabWidget.count() > 0:
  536. self.ui.tabWidget.setCurrentIndex(1)
  537. self.adjustSize()
  538. self.ui.tabWidget.setCurrentIndex(0)
  539. self.setMinimumSize(self.width(), self.height())
  540. #------------------------------------------------------------------
  541. def reloadInfo(self):
  542. realPluginName = self.host.get_real_plugin_name(self.fPluginId)
  543. #audioCountInfo = self.host.get_audio_port_count_info(self.fPluginId)
  544. midiCountInfo = self.host.get_midi_port_count_info(self.fPluginId)
  545. #paramCountInfo = self.host.get_parameter_count_info(self.fPluginId)
  546. pluginHints = self.fPluginInfo['hints']
  547. self.ui.le_type.setText(getPluginTypeAsString(self.fPluginInfo['type']))
  548. self.ui.label_name.setEnabled(bool(realPluginName))
  549. self.ui.le_name.setEnabled(bool(realPluginName))
  550. self.ui.le_name.setText(realPluginName)
  551. self.ui.le_name.setToolTip(realPluginName)
  552. self.ui.label_label.setEnabled(bool(self.fPluginInfo['label']))
  553. self.ui.le_label.setEnabled(bool(self.fPluginInfo['label']))
  554. self.ui.le_label.setText(self.fPluginInfo['label'])
  555. self.ui.le_label.setToolTip(self.fPluginInfo['label'])
  556. self.ui.label_maker.setEnabled(bool(self.fPluginInfo['maker']))
  557. self.ui.le_maker.setEnabled(bool(self.fPluginInfo['maker']))
  558. self.ui.le_maker.setText(self.fPluginInfo['maker'])
  559. self.ui.le_maker.setToolTip(self.fPluginInfo['maker'])
  560. self.ui.label_copyright.setEnabled(bool(self.fPluginInfo['copyright']))
  561. self.ui.le_copyright.setEnabled(bool(self.fPluginInfo['copyright']))
  562. self.ui.le_copyright.setText(self.fPluginInfo['copyright'])
  563. self.ui.le_copyright.setToolTip(self.fPluginInfo['copyright'])
  564. self.ui.label_unique_id.setEnabled(bool(self.fPluginInfo['uniqueId']))
  565. self.ui.le_unique_id.setEnabled(bool(self.fPluginInfo['uniqueId']))
  566. self.ui.le_unique_id.setText(str(self.fPluginInfo['uniqueId']))
  567. self.ui.le_unique_id.setToolTip(str(self.fPluginInfo['uniqueId']))
  568. self.ui.label_plugin.setText("\n%s\n" % (self.fPluginInfo['name'] or "(none)"))
  569. self.setWindowTitle(self.fPluginInfo['name'] or "(none)")
  570. self.ui.dial_drywet.setEnabled(pluginHints & PLUGIN_CAN_DRYWET)
  571. self.ui.dial_vol.setEnabled(pluginHints & PLUGIN_CAN_VOLUME)
  572. self.ui.dial_b_left.setEnabled(pluginHints & PLUGIN_CAN_BALANCE)
  573. self.ui.dial_b_right.setEnabled(pluginHints & PLUGIN_CAN_BALANCE)
  574. self.ui.dial_pan.setEnabled(pluginHints & PLUGIN_CAN_PANNING)
  575. self.ui.ch_use_chunks.setEnabled(self.fPluginInfo['optionsAvailable'] & PLUGIN_OPTION_USE_CHUNKS)
  576. self.ui.ch_use_chunks.setChecked(self.fPluginInfo['optionsEnabled'] & PLUGIN_OPTION_USE_CHUNKS)
  577. self.ui.ch_fixed_buffer.setEnabled(self.fPluginInfo['optionsAvailable'] & PLUGIN_OPTION_FIXED_BUFFERS)
  578. self.ui.ch_fixed_buffer.setChecked(self.fPluginInfo['optionsEnabled'] & PLUGIN_OPTION_FIXED_BUFFERS)
  579. self.ui.ch_force_stereo.setEnabled(self.fPluginInfo['optionsAvailable'] & PLUGIN_OPTION_FORCE_STEREO)
  580. self.ui.ch_force_stereo.setChecked(self.fPluginInfo['optionsEnabled'] & PLUGIN_OPTION_FORCE_STEREO)
  581. self.ui.ch_map_program_changes.setEnabled(self.fPluginInfo['optionsAvailable'] & PLUGIN_OPTION_MAP_PROGRAM_CHANGES)
  582. self.ui.ch_map_program_changes.setChecked(self.fPluginInfo['optionsEnabled'] & PLUGIN_OPTION_MAP_PROGRAM_CHANGES)
  583. self.ui.ch_send_control_changes.setEnabled(self.fPluginInfo['optionsAvailable'] & PLUGIN_OPTION_SEND_CONTROL_CHANGES)
  584. self.ui.ch_send_control_changes.setChecked(self.fPluginInfo['optionsEnabled'] & PLUGIN_OPTION_SEND_CONTROL_CHANGES)
  585. self.ui.ch_send_channel_pressure.setEnabled(self.fPluginInfo['optionsAvailable'] & PLUGIN_OPTION_SEND_CHANNEL_PRESSURE)
  586. self.ui.ch_send_channel_pressure.setChecked(self.fPluginInfo['optionsEnabled'] & PLUGIN_OPTION_SEND_CHANNEL_PRESSURE)
  587. self.ui.ch_send_note_aftertouch.setEnabled(self.fPluginInfo['optionsAvailable'] & PLUGIN_OPTION_SEND_NOTE_AFTERTOUCH)
  588. self.ui.ch_send_note_aftertouch.setChecked(self.fPluginInfo['optionsEnabled'] & PLUGIN_OPTION_SEND_NOTE_AFTERTOUCH)
  589. self.ui.ch_send_pitchbend.setEnabled(self.fPluginInfo['optionsAvailable'] & PLUGIN_OPTION_SEND_PITCHBEND)
  590. self.ui.ch_send_pitchbend.setChecked(self.fPluginInfo['optionsEnabled'] & PLUGIN_OPTION_SEND_PITCHBEND)
  591. self.ui.ch_send_all_sound_off.setEnabled(self.fPluginInfo['optionsAvailable'] & PLUGIN_OPTION_SEND_ALL_SOUND_OFF)
  592. self.ui.ch_send_all_sound_off.setChecked(self.fPluginInfo['optionsEnabled'] & PLUGIN_OPTION_SEND_ALL_SOUND_OFF)
  593. canSendPrograms = bool((self.fPluginInfo['optionsAvailable'] & PLUGIN_OPTION_SEND_PROGRAM_CHANGES) != 0 and
  594. (self.fPluginInfo['optionsEnabled'] & PLUGIN_OPTION_MAP_PROGRAM_CHANGES) == 0)
  595. self.ui.ch_send_program_changes.setEnabled(canSendPrograms)
  596. self.ui.ch_send_program_changes.setChecked(self.fPluginInfo['optionsEnabled'] & PLUGIN_OPTION_SEND_PROGRAM_CHANGES)
  597. self.ui.sw_programs.setCurrentIndex(0 if self.fPluginInfo['type'] in (PLUGIN_VST2, PLUGIN_GIG, PLUGIN_SFZ) else 1)
  598. # Show/hide keyboard
  599. showKeyboard = (self.fPluginInfo['category'] == PLUGIN_CATEGORY_SYNTH or midiCountInfo['ins'] > 0 < midiCountInfo['outs'])
  600. self.ui.scrollArea.setEnabled(showKeyboard)
  601. self.ui.scrollArea.setVisible(showKeyboard)
  602. # Force-update parent for new hints
  603. if self.fParent is not None and not self.fFirstInit:
  604. self.fParent.editDialogPluginHintsChanged(self.fPluginId, pluginHints)
  605. def reloadParameters(self):
  606. # Reset
  607. self.fParameterList = []
  608. self.fParametersToUpdate = []
  609. self.fTabIconTimers = []
  610. # Remove all previous parameters
  611. for x in range(self.ui.tabWidget.count()-1):
  612. self.ui.tabWidget.widget(1).deleteLater()
  613. self.ui.tabWidget.removeTab(1)
  614. parameterCount = self.host.get_parameter_count(self.fPluginId)
  615. # -----------------------------------------------------------------
  616. if parameterCount <= 0:
  617. return
  618. # -----------------------------------------------------------------
  619. paramInputList = []
  620. paramOutputList = []
  621. paramInputWidth = 0
  622. paramOutputWidth = 0
  623. paramInputListFull = [] # ([params], width)
  624. paramOutputListFull = [] # ([params], width)
  625. for i in range(min(parameterCount, self.host.maxParameters)):
  626. paramInfo = self.host.get_parameter_info(self.fPluginId, i)
  627. paramData = self.host.get_parameter_data(self.fPluginId, i)
  628. paramRanges = self.host.get_parameter_ranges(self.fPluginId, i)
  629. paramValue = self.host.get_current_parameter_value(self.fPluginId, i)
  630. if paramData['type'] not in (PARAMETER_INPUT, PARAMETER_OUTPUT):
  631. continue
  632. if (paramData['hints'] & PARAMETER_IS_ENABLED) == 0:
  633. continue
  634. parameter = {
  635. 'type': paramData['type'],
  636. 'hints': paramData['hints'],
  637. 'name': paramInfo['name'],
  638. 'unit': paramInfo['unit'],
  639. 'scalePoints': [],
  640. 'index': paramData['index'],
  641. 'default': paramRanges['def'],
  642. 'minimum': paramRanges['min'],
  643. 'maximum': paramRanges['max'],
  644. 'step': paramRanges['step'],
  645. 'stepSmall': paramRanges['stepSmall'],
  646. 'stepLarge': paramRanges['stepLarge'],
  647. 'midiCC': paramData['midiCC'],
  648. 'midiChannel': paramData['midiChannel']+1,
  649. 'current': paramValue
  650. }
  651. for j in range(paramInfo['scalePointCount']):
  652. scalePointInfo = self.host.get_parameter_scalepoint_info(self.fPluginId, i, j)
  653. parameter['scalePoints'].append({
  654. 'value': scalePointInfo['value'],
  655. 'label': scalePointInfo['label']
  656. })
  657. #parameter['name'] = parameter['name'][:30] + (parameter['name'][30:] and "...")
  658. # -----------------------------------------------------------------
  659. # Get width values, in packs of 20
  660. if parameter['type'] == PARAMETER_INPUT:
  661. paramInputWidthTMP = QFontMetrics(self.font()).width(parameter['name'])
  662. if paramInputWidthTMP > paramInputWidth:
  663. paramInputWidth = paramInputWidthTMP
  664. paramInputList.append(parameter)
  665. if len(paramInputList) == self.kParamsPerPage:
  666. paramInputListFull.append((paramInputList, paramInputWidth))
  667. paramInputList = []
  668. paramInputWidth = 0
  669. else:
  670. paramOutputWidthTMP = QFontMetrics(self.font()).width(parameter['name'])
  671. if paramOutputWidthTMP > paramOutputWidth:
  672. paramOutputWidth = paramOutputWidthTMP
  673. paramOutputList.append(parameter)
  674. if len(paramOutputList) == self.kParamsPerPage:
  675. paramOutputListFull.append((paramOutputList, paramOutputWidth))
  676. paramOutputList = []
  677. paramOutputWidth = 0
  678. # for i in range(parameterCount)
  679. else:
  680. # Final page width values
  681. if 0 < len(paramInputList) < self.kParamsPerPage:
  682. paramInputListFull.append((paramInputList, paramInputWidth))
  683. if 0 < len(paramOutputList) < self.kParamsPerPage:
  684. paramOutputListFull.append((paramOutputList, paramOutputWidth))
  685. # Create parameter tabs + widgets
  686. self._createParameterWidgets(PARAMETER_INPUT, paramInputListFull, self.tr("Parameters"))
  687. self._createParameterWidgets(PARAMETER_OUTPUT, paramOutputListFull, self.tr("Outputs"))
  688. def reloadPrograms(self):
  689. # Programs
  690. self.ui.cb_programs.blockSignals(True)
  691. self.ui.cb_programs.clear()
  692. programCount = self.host.get_program_count(self.fPluginId)
  693. if programCount > 0:
  694. self.ui.cb_programs.setEnabled(True)
  695. self.ui.label_programs.setEnabled(True)
  696. for i in range(programCount):
  697. pName = self.host.get_program_name(self.fPluginId, i)
  698. #pName = pName[:40] + (pName[40:] and "...")
  699. self.ui.cb_programs.addItem(pName)
  700. self.ui.cb_programs.setCurrentIndex(self.host.get_current_program_index(self.fPluginId))
  701. else:
  702. self.ui.cb_programs.setEnabled(False)
  703. self.ui.label_programs.setEnabled(False)
  704. self.ui.cb_programs.blockSignals(False)
  705. # MIDI Programs
  706. self.ui.cb_midi_programs.blockSignals(True)
  707. self.ui.cb_midi_programs.clear()
  708. midiProgramCount = self.host.get_midi_program_count(self.fPluginId)
  709. if midiProgramCount > 0:
  710. self.ui.cb_midi_programs.setEnabled(True)
  711. self.ui.label_midi_programs.setEnabled(True)
  712. for i in range(midiProgramCount):
  713. mpData = self.host.get_midi_program_data(self.fPluginId, i)
  714. mpBank = mpData['bank']
  715. mpProg = mpData['program']
  716. mpName = mpData['name']
  717. #mpName = mpName[:40] + (mpName[40:] and "...")
  718. self.ui.cb_midi_programs.addItem("%03i:%03i - %s" % (mpBank+1, mpProg+1, mpName))
  719. self.ui.cb_midi_programs.setCurrentIndex(self.host.get_current_midi_program_index(self.fPluginId))
  720. else:
  721. self.ui.cb_midi_programs.setEnabled(False)
  722. self.ui.label_midi_programs.setEnabled(False)
  723. self.ui.cb_midi_programs.blockSignals(False)
  724. self.ui.sw_programs.setEnabled(programCount > 0 or midiProgramCount > 0)
  725. if self.fPluginInfo['type'] == PLUGIN_LV2:
  726. self.ui.b_load_state.setEnabled(programCount > 0)
  727. #------------------------------------------------------------------
  728. def clearNotes(self):
  729. self.fPlayingNotes = []
  730. self.ui.keyboard.allNotesOff()
  731. def noteOn(self, channel, note, velocity):
  732. if self.fControlChannel == channel:
  733. self.ui.keyboard.sendNoteOn(note, False)
  734. def noteOff(self, channel, note):
  735. if self.fControlChannel == channel:
  736. self.ui.keyboard.sendNoteOff(note, False)
  737. #------------------------------------------------------------------
  738. def getHints(self):
  739. return self.fPluginInfo['hints']
  740. def setPluginId(self, idx):
  741. self.fPluginId = idx
  742. def setName(self, name):
  743. self.fPluginInfo['name'] = name
  744. self.ui.label_plugin.setText("\n%s\n" % name)
  745. self.setWindowTitle(name)
  746. #------------------------------------------------------------------
  747. def setParameterValue(self, parameterId, value):
  748. for paramItem in self.fParametersToUpdate:
  749. if paramItem[0] == parameterId:
  750. paramItem[1] = value
  751. break
  752. else:
  753. self.fParametersToUpdate.append([parameterId, value])
  754. def setParameterDefault(self, parameterId, value):
  755. for paramType, paramId, paramWidget in self.fParameterList:
  756. if paramId == parameterId:
  757. paramWidget.setDefault(value)
  758. break
  759. def setParameterMidiControl(self, parameterId, control):
  760. for paramType, paramId, paramWidget in self.fParameterList:
  761. if paramId == parameterId:
  762. paramWidget.setMidiControl(control)
  763. break
  764. def setParameterMidiChannel(self, parameterId, channel):
  765. for paramType, paramId, paramWidget in self.fParameterList:
  766. if paramId == parameterId:
  767. paramWidget.setMidiChannel(channel+1)
  768. break
  769. def setProgram(self, index):
  770. self.ui.cb_programs.blockSignals(True)
  771. self.ui.cb_programs.setCurrentIndex(index)
  772. self.ui.cb_programs.blockSignals(False)
  773. self._updateParameterValues()
  774. def setMidiProgram(self, index):
  775. self.ui.cb_midi_programs.blockSignals(True)
  776. self.ui.cb_midi_programs.setCurrentIndex(index)
  777. self.ui.cb_midi_programs.blockSignals(False)
  778. self._updateParameterValues()
  779. def setOption(self, option, yesNo):
  780. if option == PLUGIN_OPTION_USE_CHUNKS:
  781. widget = self.ui.ch_use_chunks
  782. elif option == PLUGIN_OPTION_FIXED_BUFFERS:
  783. widget = self.ui.ch_fixed_buffer
  784. elif option == PLUGIN_OPTION_FORCE_STEREO:
  785. widget = self.ui.ch_force_stereo
  786. elif option == PLUGIN_OPTION_MAP_PROGRAM_CHANGES:
  787. widget = self.ui.ch_map_program_changes
  788. elif option == PLUGIN_OPTION_SEND_PROGRAM_CHANGES:
  789. widget = self.ui.ch_send_program_changes
  790. elif option == PLUGIN_OPTION_SEND_CONTROL_CHANGES:
  791. widget = self.ui.ch_send_control_changes
  792. elif option == PLUGIN_OPTION_SEND_CHANNEL_PRESSURE:
  793. widget = self.ui.ch_send_channel_pressure
  794. elif option == PLUGIN_OPTION_SEND_NOTE_AFTERTOUCH:
  795. widget = self.ui.ch_send_note_aftertouch
  796. elif option == PLUGIN_OPTION_SEND_PITCHBEND:
  797. widget = self.ui.ch_send_pitchbend
  798. elif option == PLUGIN_OPTION_SEND_ALL_SOUND_OFF:
  799. widget = self.ui.ch_send_all_sound_off
  800. else:
  801. return
  802. widget.blockSignals(True)
  803. widget.setChecked(yesNo)
  804. widget.blockSignals(False)
  805. #------------------------------------------------------------------
  806. def setVisible(self, yesNo):
  807. if yesNo:
  808. if not self.fGeometry.isNull():
  809. self.restoreGeometry(self.fGeometry)
  810. else:
  811. self.fGeometry = self.saveGeometry()
  812. QDialog.setVisible(self, yesNo)
  813. #------------------------------------------------------------------
  814. def idleSlow(self):
  815. # Check Tab icons
  816. for i in range(len(self.fTabIconTimers)):
  817. if self.fTabIconTimers[i] == ICON_STATE_ON:
  818. self.fTabIconTimers[i] = ICON_STATE_WAIT
  819. elif self.fTabIconTimers[i] == ICON_STATE_WAIT:
  820. self.fTabIconTimers[i] = ICON_STATE_OFF
  821. elif self.fTabIconTimers[i] == ICON_STATE_OFF:
  822. self.fTabIconTimers[i] = ICON_STATE_NULL
  823. self.ui.tabWidget.setTabIcon(i+1, self.fTabIconOff)
  824. # Check parameters needing update
  825. for index, value in self.fParametersToUpdate:
  826. if index == PARAMETER_DRYWET:
  827. self.ui.dial_drywet.blockSignals(True)
  828. self.ui.dial_drywet.setValue(value)
  829. self.ui.dial_drywet.blockSignals(False)
  830. elif index == PARAMETER_VOLUME:
  831. self.ui.dial_vol.blockSignals(True)
  832. self.ui.dial_vol.setValue(value)
  833. self.ui.dial_vol.blockSignals(False)
  834. elif index == PARAMETER_BALANCE_LEFT:
  835. self.ui.dial_b_left.blockSignals(True)
  836. self.ui.dial_b_left.setValue(value)
  837. self.ui.dial_b_left.blockSignals(False)
  838. elif index == PARAMETER_BALANCE_RIGHT:
  839. self.ui.dial_b_right.blockSignals(True)
  840. self.ui.dial_b_right.setValue(value)
  841. self.ui.dial_b_right.blockSignals(False)
  842. elif index == PARAMETER_PANNING:
  843. self.ui.dial_pan.blockSignals(True)
  844. self.ui.dial_pan.setValue(value)
  845. self.ui.dial_pan.blockSignals(False)
  846. elif index == PARAMETER_CTRL_CHANNEL:
  847. self.fControlChannel = round(value)
  848. self.ui.sb_ctrl_channel.blockSignals(True)
  849. self.ui.sb_ctrl_channel.setValue(self.fControlChannel+1)
  850. self.ui.sb_ctrl_channel.blockSignals(False)
  851. self.ui.keyboard.allNotesOff()
  852. self._updateCtrlPrograms()
  853. elif index >= 0:
  854. for paramType, paramId, paramWidget in self.fParameterList:
  855. if paramId != index:
  856. continue
  857. # FIXME see below
  858. if paramType != PARAMETER_INPUT:
  859. continue
  860. paramWidget.blockSignals(True)
  861. paramWidget.setValue(value)
  862. paramWidget.blockSignals(False)
  863. #if paramType == PARAMETER_INPUT:
  864. tabIndex = paramWidget.getTabIndex()
  865. if self.fTabIconTimers[tabIndex-1] == ICON_STATE_NULL:
  866. self.ui.tabWidget.setTabIcon(tabIndex, self.fTabIconOn)
  867. self.fTabIconTimers[tabIndex-1] = ICON_STATE_ON
  868. break
  869. # Clear all parameters
  870. self.fParametersToUpdate = []
  871. # Update parameter outputs | FIXME needed?
  872. for paramType, paramId, paramWidget in self.fParameterList:
  873. if paramType != PARAMETER_OUTPUT:
  874. continue
  875. paramWidget.blockSignals(True)
  876. paramWidget.setValue(self.host.get_current_parameter_value(self.fPluginId, paramId))
  877. paramWidget.blockSignals(False)
  878. #------------------------------------------------------------------
  879. @pyqtSlot()
  880. def slot_stateSave(self):
  881. if self.fPluginInfo['type'] == PLUGIN_LV2:
  882. # TODO
  883. return
  884. if self.fCurrentStateFilename:
  885. askTry = QMessageBox.question(self, self.tr("Overwrite?"), self.tr("Overwrite previously created file?"), QMessageBox.Ok|QMessageBox.Cancel)
  886. if askTry == QMessageBox.Ok:
  887. self.host.save_plugin_state(self.fPluginId, self.fCurrentStateFilename)
  888. return
  889. self.fCurrentStateFilename = None
  890. fileFilter = self.tr("Carla State File (*.carxs)")
  891. filename = QFileDialog.getSaveFileName(self, self.tr("Save Plugin State File"), filter=fileFilter)
  892. if config_UseQt5:
  893. filename = filename[0]
  894. if not filename:
  895. return
  896. if not filename.lower().endswith(".carxs"):
  897. filename += ".carxs"
  898. self.fCurrentStateFilename = filename
  899. self.host.save_plugin_state(self.fPluginId, self.fCurrentStateFilename)
  900. @pyqtSlot()
  901. def slot_stateLoad(self):
  902. if self.fPluginInfo['type'] == PLUGIN_LV2:
  903. presetList = []
  904. for i in range(self.host.get_program_count(self.fPluginId)):
  905. presetList.append("%03i - %s" % (i+1, self.host.get_program_name(self.fPluginId, i)))
  906. ret = QInputDialog.getItem(self, self.tr("Open LV2 Preset"), self.tr("Select an LV2 Preset:"), presetList, 0, False)
  907. if ret[1]:
  908. index = int(ret[0].split(" - ", 1)[0])-1
  909. self.host.set_program(self.fPluginId, index)
  910. self.setMidiProgram(-1)
  911. return
  912. fileFilter = self.tr("Carla State File (*.carxs)")
  913. filename = QFileDialog.getOpenFileName(self, self.tr("Open Plugin State File"), filter=fileFilter)
  914. if config_UseQt5:
  915. filename = filename[0]
  916. if not filename:
  917. return
  918. self.fCurrentStateFilename = filename
  919. self.host.load_plugin_state(self.fPluginId, self.fCurrentStateFilename)
  920. #------------------------------------------------------------------
  921. @pyqtSlot(bool)
  922. def slot_optionChanged(self, clicked):
  923. sender = self.sender()
  924. if sender == self.ui.ch_use_chunks:
  925. option = PLUGIN_OPTION_USE_CHUNKS
  926. elif sender == self.ui.ch_fixed_buffer:
  927. option = PLUGIN_OPTION_FIXED_BUFFERS
  928. elif sender == self.ui.ch_force_stereo:
  929. option = PLUGIN_OPTION_FORCE_STEREO
  930. elif sender == self.ui.ch_map_program_changes:
  931. option = PLUGIN_OPTION_MAP_PROGRAM_CHANGES
  932. elif sender == self.ui.ch_send_program_changes:
  933. option = PLUGIN_OPTION_SEND_PROGRAM_CHANGES
  934. elif sender == self.ui.ch_send_control_changes:
  935. option = PLUGIN_OPTION_SEND_CONTROL_CHANGES
  936. elif sender == self.ui.ch_send_channel_pressure:
  937. option = PLUGIN_OPTION_SEND_CHANNEL_PRESSURE
  938. elif sender == self.ui.ch_send_note_aftertouch:
  939. option = PLUGIN_OPTION_SEND_NOTE_AFTERTOUCH
  940. elif sender == self.ui.ch_send_pitchbend:
  941. option = PLUGIN_OPTION_SEND_PITCHBEND
  942. elif sender == self.ui.ch_send_all_sound_off:
  943. option = PLUGIN_OPTION_SEND_ALL_SOUND_OFF
  944. else:
  945. return
  946. #--------------------------------------------------------------
  947. # handle map-program-changes and send-program-changes conflict
  948. if option == PLUGIN_OPTION_MAP_PROGRAM_CHANGES and clicked:
  949. self.ui.ch_send_program_changes.setEnabled(False)
  950. # disable send-program-changes if needed
  951. if self.ui.ch_send_program_changes.isChecked():
  952. self.host.set_option(self.fPluginId, PLUGIN_OPTION_SEND_PROGRAM_CHANGES, False)
  953. #--------------------------------------------------------------
  954. # set option
  955. self.host.set_option(self.fPluginId, option, clicked)
  956. #--------------------------------------------------------------
  957. # handle map-program-changes and send-program-changes conflict
  958. if option == PLUGIN_OPTION_MAP_PROGRAM_CHANGES and not clicked:
  959. self.ui.ch_send_program_changes.setEnabled(self.fPluginInfo['optionsAvailable'] & PLUGIN_OPTION_SEND_PROGRAM_CHANGES)
  960. # restore send-program-changes if needed
  961. if self.ui.ch_send_program_changes.isChecked():
  962. self.host.set_option(self.fPluginId, PLUGIN_OPTION_SEND_PROGRAM_CHANGES, True)
  963. #------------------------------------------------------------------
  964. @pyqtSlot(float)
  965. def slot_dryWetChanged(self, value):
  966. self.host.set_drywet(self.fPluginId, value)
  967. if self.fParent is not None:
  968. self.fParent.editDialogParameterValueChanged(self.fPluginId, PARAMETER_DRYWET, value)
  969. @pyqtSlot(float)
  970. def slot_volumeChanged(self, value):
  971. self.host.set_volume(self.fPluginId, value)
  972. if self.fParent is not None:
  973. self.fParent.editDialogParameterValueChanged(self.fPluginId, PARAMETER_VOLUME, value)
  974. @pyqtSlot(float)
  975. def slot_balanceLeftChanged(self, value):
  976. self.host.set_balance_left(self.fPluginId, value)
  977. if self.fParent is not None:
  978. self.fParent.editDialogParameterValueChanged(self.fPluginId, PARAMETER_BALANCE_LEFT, value)
  979. @pyqtSlot(float)
  980. def slot_balanceRightChanged(self, value):
  981. self.host.set_balance_right(self.fPluginId, value)
  982. if self.fParent is not None:
  983. self.fParent.editDialogParameterValueChanged(self.fPluginId, PARAMETER_BALANCE_RIGHT, value)
  984. @pyqtSlot(float)
  985. def slot_panChanged(self, value):
  986. self.host.set_panning(self.fPluginId, value)
  987. if self.fParent is not None:
  988. self.fParent.editDialogParameterValueChanged(self.fPluginId, PARAMETER_PANNING, value)
  989. @pyqtSlot(int)
  990. def slot_ctrlChannelChanged(self, value):
  991. self.fControlChannel = value-1
  992. self.host.set_ctrl_channel(self.fPluginId, self.fControlChannel)
  993. self.ui.keyboard.allNotesOff()
  994. self._updateCtrlPrograms()
  995. #------------------------------------------------------------------
  996. @pyqtSlot(int, float)
  997. def slot_parameterValueChanged(self, parameterId, value):
  998. self.host.set_parameter_value(self.fPluginId, parameterId, value)
  999. if self.fParent is not None:
  1000. self.fParent.editDialogParameterValueChanged(self.fPluginId, parameterId, value)
  1001. @pyqtSlot(int, int)
  1002. def slot_parameterMidiControlChanged(self, parameterId, control):
  1003. self.host.set_parameter_midi_cc(self.fPluginId, parameterId, control)
  1004. @pyqtSlot(int, int)
  1005. def slot_parameterMidiChannelChanged(self, parameterId, channel):
  1006. self.host.set_parameter_midi_channel(self.fPluginId, parameterId, channel-1)
  1007. #------------------------------------------------------------------
  1008. @pyqtSlot(int)
  1009. def slot_programIndexChanged(self, index):
  1010. self.host.set_program(self.fPluginId, index)
  1011. if self.fParent is not None:
  1012. self.fParent.editDialogProgramChanged(self.fPluginId, index)
  1013. self._updateParameterValues()
  1014. @pyqtSlot(int)
  1015. def slot_midiProgramIndexChanged(self, index):
  1016. self.host.set_midi_program(self.fPluginId, index)
  1017. if self.fParent is not None:
  1018. self.fParent.editDialogMidiProgramChanged(self.fPluginId, index)
  1019. self._updateParameterValues()
  1020. #------------------------------------------------------------------
  1021. @pyqtSlot(int)
  1022. def slot_noteOn(self, note):
  1023. if self.fControlChannel >= 0:
  1024. self.host.send_midi_note(self.fPluginId, self.fControlChannel, note, 100)
  1025. if self.fParent is not None:
  1026. self.fParent.editDialogNotePressed(self.fPluginId, note)
  1027. @pyqtSlot(int)
  1028. def slot_noteOff(self, note):
  1029. if self.fControlChannel >= 0:
  1030. self.host.send_midi_note(self.fPluginId, self.fControlChannel, note, 0)
  1031. if self.fParent is not None:
  1032. self.fParent.editDialogNoteReleased(self.fPluginId, note)
  1033. #------------------------------------------------------------------
  1034. @pyqtSlot()
  1035. def slot_finished(self):
  1036. if self.fParent is not None:
  1037. self.fParent.editDialogVisibilityChanged(self.fPluginId, False)
  1038. #------------------------------------------------------------------
  1039. @pyqtSlot()
  1040. def slot_knobCustomMenu(self):
  1041. sender = self.sender()
  1042. knobName = sender.objectName()
  1043. if knobName == "dial_drywet":
  1044. minimum = 0.0
  1045. maximum = 1.0
  1046. default = 1.0
  1047. label = "Dry/Wet"
  1048. elif knobName == "dial_vol":
  1049. minimum = 0.0
  1050. maximum = 1.27
  1051. default = 1.0
  1052. label = "Volume"
  1053. elif knobName == "dial_b_left":
  1054. minimum = -1.0
  1055. maximum = 1.0
  1056. default = -1.0
  1057. label = "Balance-Left"
  1058. elif knobName == "dial_b_right":
  1059. minimum = -1.0
  1060. maximum = 1.0
  1061. default = 1.0
  1062. label = "Balance-Right"
  1063. elif knobName == "dial_pan":
  1064. minimum = -1.0
  1065. maximum = 1.0
  1066. default = 0.0
  1067. label = "Panning"
  1068. else:
  1069. minimum = 0.0
  1070. maximum = 1.0
  1071. default = 0.5
  1072. label = "Unknown"
  1073. menu = QMenu(self)
  1074. actReset = menu.addAction(self.tr("Reset (%i%%)" % (default*100)))
  1075. menu.addSeparator()
  1076. actMinimum = menu.addAction(self.tr("Set to Minimum (%i%%)" % (minimum*100)))
  1077. actCenter = menu.addAction(self.tr("Set to Center"))
  1078. actMaximum = menu.addAction(self.tr("Set to Maximum (%i%%)" % (maximum*100)))
  1079. menu.addSeparator()
  1080. actSet = menu.addAction(self.tr("Set value..."))
  1081. if label not in ("Balance-Left", "Balance-Right", "Panning"):
  1082. menu.removeAction(actCenter)
  1083. actSelected = menu.exec_(QCursor.pos())
  1084. if actSelected == actSet:
  1085. current = minimum + (maximum-minimum)*(float(sender.value())/10000)
  1086. value, ok = QInputDialog.getInt(self, self.tr("Set value"), label, round(current*100.0), round(minimum*100.0), round(maximum*100.0), 1)
  1087. if ok: value = float(value)/100.0
  1088. if not ok:
  1089. return
  1090. elif actSelected == actMinimum:
  1091. value = minimum
  1092. elif actSelected == actMaximum:
  1093. value = maximum
  1094. elif actSelected == actReset:
  1095. value = default
  1096. elif actSelected == actCenter:
  1097. value = 0.0
  1098. else:
  1099. return
  1100. self.sender().setValue(value)
  1101. #------------------------------------------------------------------
  1102. @pyqtSlot()
  1103. def slot_channelCustomMenu(self):
  1104. menu = QMenu(self)
  1105. actNone = menu.addAction(self.tr("None"))
  1106. if self.fControlChannel+1 == 0:
  1107. actNone.setCheckable(True)
  1108. actNone.setChecked(True)
  1109. for i in range(1, 16+1):
  1110. action = menu.addAction("%i" % i)
  1111. if self.fControlChannel+1 == i:
  1112. action.setCheckable(True)
  1113. action.setChecked(True)
  1114. actSel = menu.exec_(QCursor.pos())
  1115. if not actSel:
  1116. pass
  1117. elif actSel == actNone:
  1118. self.ui.sb_ctrl_channel.setValue(0)
  1119. elif actSel:
  1120. selChannel = int(actSel.text())
  1121. self.ui.sb_ctrl_channel.setValue(selChannel)
  1122. #------------------------------------------------------------------
  1123. def _createParameterWidgets(self, paramType, paramListFull, tabPageName):
  1124. i = 1
  1125. for paramList, width in paramListFull:
  1126. if len(paramList) == 0:
  1127. break
  1128. tabIndex = self.ui.tabWidget.count()
  1129. tabPageContainer = QWidget(self.ui.tabWidget)
  1130. tabPageLayout = QVBoxLayout(tabPageContainer)
  1131. tabPageLayout.setSpacing(1)
  1132. tabPageContainer.setLayout(tabPageLayout)
  1133. for paramInfo in paramList:
  1134. paramWidget = PluginParameter(tabPageContainer, self.host, paramInfo, self.fPluginId, tabIndex)
  1135. paramWidget.setLabelWidth(width)
  1136. tabPageLayout.addWidget(paramWidget)
  1137. self.fParameterList.append((paramType, paramInfo['index'], paramWidget))
  1138. if paramType == PARAMETER_INPUT:
  1139. paramWidget.valueChanged.connect(self.slot_parameterValueChanged)
  1140. paramWidget.midiControlChanged.connect(self.slot_parameterMidiControlChanged)
  1141. paramWidget.midiChannelChanged.connect(self.slot_parameterMidiChannelChanged)
  1142. tabPageLayout.addStretch()
  1143. self.ui.tabWidget.addTab(tabPageContainer, "%s (%i)" % (tabPageName, i))
  1144. i += 1
  1145. if paramType == PARAMETER_INPUT:
  1146. self.ui.tabWidget.setTabIcon(tabIndex, self.fTabIconOff)
  1147. self.fTabIconTimers.append(ICON_STATE_NULL)
  1148. def _updateCtrlPrograms(self):
  1149. self.ui.keyboard.setEnabled(self.fControlChannel >= 0)
  1150. if self.fPluginInfo['category'] != PLUGIN_CATEGORY_SYNTH or self.fPluginInfo['type'] not in (PLUGIN_INTERNAL, PLUGIN_SF2, PLUGIN_GIG):
  1151. return
  1152. if self.fControlChannel < 0:
  1153. self.ui.cb_programs.setEnabled(False)
  1154. self.ui.cb_midi_programs.setEnabled(False)
  1155. return
  1156. self.ui.cb_programs.setEnabled(True)
  1157. self.ui.cb_midi_programs.setEnabled(True)
  1158. pIndex = self.host.get_current_program_index(self.fPluginId)
  1159. if self.ui.cb_programs.currentIndex() != pIndex:
  1160. self.setProgram(pIndex)
  1161. mpIndex = self.host.get_current_midi_program_index(self.fPluginId)
  1162. if self.ui.cb_midi_programs.currentIndex() != mpIndex:
  1163. self.setMidiProgram(mpIndex)
  1164. def _updateParameterValues(self):
  1165. for paramType, paramId, paramWidget in self.fParameterList:
  1166. paramWidget.blockSignals(True)
  1167. paramWidget.setValue(self.host.get_current_parameter_value(self.fPluginId, paramId))
  1168. paramWidget.blockSignals(False)
  1169. #------------------------------------------------------------------
  1170. def testTimer(self):
  1171. self.fIdleTimerId = self.startTimer(50)
  1172. self.SIGTERM.connect(self.testTimerClose)
  1173. gCarla.gui = self
  1174. setUpSignals()
  1175. def testTimerClose(self):
  1176. self.close()
  1177. app.quit()
  1178. #------------------------------------------------------------------
  1179. def closeEvent(self, event):
  1180. if self.fIdleTimerId != 0:
  1181. self.killTimer(self.fIdleTimerId)
  1182. self.fIdleTimerId = 0
  1183. self.host.engine_close()
  1184. QDialog.closeEvent(self, event)
  1185. def timerEvent(self, event):
  1186. if event.timerId() == self.fIdleTimerId:
  1187. self.host.engine_idle()
  1188. self.idleSlow()
  1189. QDialog.timerEvent(self, event)
  1190. def done(self, r):
  1191. QDialog.done(self, r)
  1192. self.close()
  1193. # ------------------------------------------------------------------------------------------------------------
  1194. # Main
  1195. if __name__ == '__main__':
  1196. from carla_app import CarlaApplication
  1197. from carla_host import initHost, loadHostSettings
  1198. app = CarlaApplication()
  1199. host = initHost("Widgets", None, False, False, False)
  1200. loadHostSettings(host)
  1201. host.engine_init("JACK", "Carla-Widgets")
  1202. host.add_plugin(BINARY_NATIVE, PLUGIN_DSSI, "/usr/lib/dssi/karplong.so", "karplong", "karplong", 0, None, 0x0)
  1203. host.set_active(0, True)
  1204. gui1 = CarlaAboutW(None, host)
  1205. gui1.show()
  1206. gui2 = PluginEdit(None, host, 0)
  1207. gui2.testTimer()
  1208. gui2.show()
  1209. app.exit_exec()