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.

1589 lines
64KB

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