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.

1556 lines
61KB

  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 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 = CarlaHostMeta()
  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-2014 falkTX<br>"
  65. "" % (VERSION, extraInfo)))
  66. if host.isControl:
  67. self.ui.l_extended.hide()
  68. self.ui.tabWidget.removeTab(2)
  69. self.ui.tabWidget.removeTab(1)
  70. elif host.isPlugin:
  71. self.ui.tabWidget.removeTab(2)
  72. self.ui.l_extended.setText(gCarla.utils.get_complete_license_text())
  73. if host.is_engine_running() and not (host.isControl or host.isPlugin):
  74. self.ui.le_osc_url_tcp.setText(host.get_host_osc_url_tcp())
  75. self.ui.le_osc_url_udp.setText(host.get_host_osc_url_udp())
  76. else:
  77. self.ui.le_osc_url_tcp.setText(self.tr("(Engine not running)"))
  78. self.ui.le_osc_url_udp.setText(self.tr("(Engine not running)"))
  79. self.ui.l_osc_cmds.setText(""
  80. " /set_active <i-value>\n"
  81. " /set_drywet <f-value>\n"
  82. " /set_volume <f-value>\n"
  83. " /set_balance_left <f-value>\n"
  84. " /set_balance_right <f-value>\n"
  85. " /set_panning <f-value>\n"
  86. " /set_parameter_value <i-index> <f-value>\n"
  87. " /set_parameter_midi_cc <i-index> <i-cc>\n"
  88. " /set_parameter_midi_channel <i-index> <i-channel>\n"
  89. " /set_program <i-index>\n"
  90. " /set_midi_program <i-index>\n"
  91. " /note_on <i-note> <i-velo>\n"
  92. " /note_off <i-note>\n"
  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 95&#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 = CarlaHostMeta()
  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 not pHints & PARAMETER_IS_AUTOMABLE:
  197. self.ui.sb_control.setEnabled(False)
  198. self.ui.sb_channel.setEnabled(False)
  199. if pType == PARAMETER_INPUT:
  200. if not pHints & PARAMETER_IS_ENABLED:
  201. self.ui.label.setEnabled(False)
  202. self.ui.widget.setEnabled(False)
  203. self.ui.widget.setReadOnly(True)
  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 = CarlaHostMeta()
  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 = int(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. self.ui.dial_drywet.setCustomPaintMode(self.ui.dial_drywet.CUSTOM_PAINT_MODE_CARLA_WET)
  363. self.ui.dial_drywet.setPixmap(3)
  364. self.ui.dial_drywet.setLabel("Dry/Wet")
  365. self.ui.dial_drywet.setMinimum(0.0)
  366. self.ui.dial_drywet.setMaximum(1.0)
  367. self.ui.dial_drywet.setValue(host.get_internal_parameter_value(pluginId, PARAMETER_DRYWET))
  368. self.ui.dial_vol.setCustomPaintMode(self.ui.dial_vol.CUSTOM_PAINT_MODE_CARLA_VOL)
  369. self.ui.dial_vol.setPixmap(3)
  370. self.ui.dial_vol.setLabel("Volume")
  371. self.ui.dial_vol.setMinimum(0.0)
  372. self.ui.dial_vol.setMaximum(1.27)
  373. self.ui.dial_vol.setValue(host.get_internal_parameter_value(pluginId, PARAMETER_VOLUME))
  374. self.ui.dial_b_left.setCustomPaintMode(self.ui.dial_b_left.CUSTOM_PAINT_MODE_CARLA_L)
  375. self.ui.dial_b_left.setPixmap(4)
  376. self.ui.dial_b_left.setLabel("L")
  377. self.ui.dial_b_left.setMinimum(-1.0)
  378. self.ui.dial_b_left.setMaximum(1.0)
  379. self.ui.dial_b_left.setValue(host.get_internal_parameter_value(pluginId, PARAMETER_BALANCE_LEFT))
  380. self.ui.dial_b_right.setCustomPaintMode(self.ui.dial_b_right.CUSTOM_PAINT_MODE_CARLA_R)
  381. self.ui.dial_b_right.setPixmap(4)
  382. self.ui.dial_b_right.setLabel("R")
  383. self.ui.dial_b_right.setMinimum(-1.0)
  384. self.ui.dial_b_right.setMaximum(1.0)
  385. self.ui.dial_b_right.setValue(host.get_internal_parameter_value(pluginId, PARAMETER_BALANCE_RIGHT))
  386. self.ui.dial_pan.setCustomPaintMode(self.ui.dial_b_right.CUSTOM_PAINT_MODE_CARLA_PAN)
  387. self.ui.dial_pan.setPixmap(4)
  388. self.ui.dial_pan.setLabel("Pan")
  389. self.ui.dial_pan.setMinimum(-1.0)
  390. self.ui.dial_pan.setMaximum(1.0)
  391. self.ui.dial_pan.setValue(host.get_internal_parameter_value(pluginId, PARAMETER_PANNING))
  392. self.ui.sb_ctrl_channel.setValue(self.fControlChannel+1)
  393. self.ui.scrollArea = PixmapKeyboardHArea(self)
  394. self.ui.keyboard = self.ui.scrollArea.keyboard
  395. self.ui.keyboard.setEnabled(self.fControlChannel >= 0)
  396. self.layout().addWidget(self.ui.scrollArea)
  397. self.ui.scrollArea.setEnabled(False)
  398. self.ui.scrollArea.setVisible(False)
  399. # todo
  400. self.ui.rb_balance.setEnabled(False)
  401. self.ui.rb_pan.setEnabled(False)
  402. self.reloadAll()
  403. self.fFirstInit = False
  404. # -------------------------------------------------------------
  405. # Set-up connections
  406. self.finished.connect(self.slot_finished)
  407. self.ui.ch_fixed_buffer.clicked.connect(self.slot_optionChanged)
  408. self.ui.ch_force_stereo.clicked.connect(self.slot_optionChanged)
  409. self.ui.ch_map_program_changes.clicked.connect(self.slot_optionChanged)
  410. self.ui.ch_use_chunks.clicked.connect(self.slot_optionChanged)
  411. self.ui.ch_send_program_changes.clicked.connect(self.slot_optionChanged)
  412. self.ui.ch_send_control_changes.clicked.connect(self.slot_optionChanged)
  413. self.ui.ch_send_channel_pressure.clicked.connect(self.slot_optionChanged)
  414. self.ui.ch_send_note_aftertouch.clicked.connect(self.slot_optionChanged)
  415. self.ui.ch_send_pitchbend.clicked.connect(self.slot_optionChanged)
  416. self.ui.ch_send_all_sound_off.clicked.connect(self.slot_optionChanged)
  417. self.ui.dial_drywet.realValueChanged.connect(self.slot_dryWetChanged)
  418. self.ui.dial_vol.realValueChanged.connect(self.slot_volumeChanged)
  419. self.ui.dial_b_left.realValueChanged.connect(self.slot_balanceLeftChanged)
  420. self.ui.dial_b_right.realValueChanged.connect(self.slot_balanceRightChanged)
  421. self.ui.dial_pan.realValueChanged.connect(self.slot_panChanged)
  422. self.ui.sb_ctrl_channel.valueChanged.connect(self.slot_ctrlChannelChanged)
  423. self.ui.dial_drywet.customContextMenuRequested.connect(self.slot_knobCustomMenu)
  424. self.ui.dial_vol.customContextMenuRequested.connect(self.slot_knobCustomMenu)
  425. self.ui.dial_b_left.customContextMenuRequested.connect(self.slot_knobCustomMenu)
  426. self.ui.dial_b_right.customContextMenuRequested.connect(self.slot_knobCustomMenu)
  427. self.ui.dial_pan.customContextMenuRequested.connect(self.slot_knobCustomMenu)
  428. self.ui.sb_ctrl_channel.customContextMenuRequested.connect(self.slot_channelCustomMenu)
  429. self.ui.keyboard.noteOn.connect(self.slot_noteOn)
  430. self.ui.keyboard.noteOff.connect(self.slot_noteOff)
  431. self.ui.cb_programs.currentIndexChanged.connect(self.slot_programIndexChanged)
  432. self.ui.cb_midi_programs.currentIndexChanged.connect(self.slot_midiProgramIndexChanged)
  433. self.ui.b_save_state.clicked.connect(self.slot_stateSave)
  434. self.ui.b_load_state.clicked.connect(self.slot_stateLoad)
  435. #host.ProgramChangedCallback.connect(self.slot_handleProgramChangedCallback)
  436. #host.MidiProgramChangedCallback.connect(self.slot_handleMidiProgramChangedCallback)
  437. host.NoteOnCallback.connect(self.slot_handleNoteOnCallback)
  438. host.NoteOffCallback.connect(self.slot_handleNoteOffCallback)
  439. host.UpdateCallback.connect(self.slot_handleUpdateCallback)
  440. host.ReloadInfoCallback.connect(self.slot_handleReloadInfoCallback)
  441. host.ReloadParametersCallback.connect(self.slot_handleReloadParametersCallback)
  442. host.ReloadProgramsCallback.connect(self.slot_handleReloadProgramsCallback)
  443. host.ReloadAllCallback.connect(self.slot_handleReloadAllCallback)
  444. # TODO
  445. self.ui.ch_force_stereo.hide()
  446. #------------------------------------------------------------------
  447. @pyqtSlot(int, int, int, int)
  448. def slot_handleNoteOnCallback(self, pluginId, channel, note, velocity):
  449. if self.fPluginId != pluginId: return
  450. if self.fControlChannel == channel:
  451. self.ui.keyboard.sendNoteOn(note, False)
  452. playItem = (channel, note)
  453. if playItem not in self.fPlayingNotes:
  454. self.fPlayingNotes.append(playItem)
  455. if len(self.fPlayingNotes) == 1 and self.fParent is not None:
  456. self.fParent.editDialogMidiActivityChanged(self.fPluginId, True)
  457. @pyqtSlot(int, int, int)
  458. def slot_handleNoteOffCallback(self, pluginId, channel, note):
  459. if self.fPluginId != pluginId: return
  460. if self.fControlChannel == channel:
  461. self.ui.keyboard.sendNoteOff(note, False)
  462. playItem = (channel, note)
  463. if playItem in self.fPlayingNotes:
  464. self.fPlayingNotes.remove(playItem)
  465. if len(self.fPlayingNotes) == 0 and self.fParent is not None:
  466. self.fParent.editDialogMidiActivityChanged(self.fPluginId, False)
  467. @pyqtSlot(int)
  468. def slot_handleUpdateCallback(self, pluginId):
  469. if self.fPluginId == pluginId:
  470. self.updateInfo()
  471. @pyqtSlot(int)
  472. def slot_handleReloadInfoCallback(self, pluginId):
  473. if self.fPluginId == pluginId:
  474. self.reloadInfo()
  475. @pyqtSlot(int)
  476. def slot_handleReloadParametersCallback(self, pluginId):
  477. if self.fPluginId == pluginId:
  478. self.reloadParameters()
  479. @pyqtSlot(int)
  480. def slot_handleReloadProgramsCallback(self, pluginId):
  481. if self.fPluginId == pluginId:
  482. self.reloadPrograms()
  483. @pyqtSlot(int)
  484. def slot_handleReloadAllCallback(self, pluginId):
  485. if self.fPluginId == pluginId:
  486. self.reloadAll()
  487. #------------------------------------------------------------------
  488. def updateInfo(self):
  489. # Update current program text
  490. if self.ui.cb_programs.count() > 0:
  491. pIndex = self.ui.cb_programs.currentIndex()
  492. pName = self.host.get_program_name(self.fPluginId, pIndex)
  493. #pName = pName[:40] + (pName[40:] and "...")
  494. self.ui.cb_programs.setItemText(pIndex, pName)
  495. # Update current midi program text
  496. if self.ui.cb_midi_programs.count() > 0:
  497. mpIndex = self.ui.cb_midi_programs.currentIndex()
  498. mpData = self.host.get_midi_program_data(self.fPluginId, mpIndex)
  499. mpBank = mpData['bank']
  500. mpProg = mpData['program']
  501. mpName = mpData['name']
  502. #mpName = mpName[:40] + (mpName[40:] and "...")
  503. self.ui.cb_midi_programs.setItemText(mpIndex, "%03i:%03i - %s" % (mpBank+1, mpProg+1, mpName))
  504. # Update all parameter values
  505. for paramType, paramId, paramWidget in self.fParameterList:
  506. paramWidget.blockSignals(True)
  507. paramWidget.setValue(self.host.get_current_parameter_value(self.fPluginId, paramId))
  508. paramWidget.blockSignals(False)
  509. self.fParametersToUpdate = []
  510. #------------------------------------------------------------------
  511. def reloadAll(self):
  512. self.fPluginInfo = self.host.get_plugin_info(self.fPluginId)
  513. self.reloadInfo()
  514. self.reloadParameters()
  515. self.reloadPrograms()
  516. if self.fPluginInfo['type'] == PLUGIN_LV2:
  517. self.ui.b_save_state.setEnabled(False)
  518. if not self.ui.scrollArea.isEnabled():
  519. self.resize(self.width(), self.height()-self.ui.scrollArea.height())
  520. # Workaround for a Qt4 bug, see https://bugreports.qt-project.org/browse/QTBUG-7792
  521. if LINUX: QTimer.singleShot(0, self.slot_fixNameWordWrap)
  522. @pyqtSlot()
  523. def slot_fixNameWordWrap(self):
  524. self.adjustSize()
  525. self.setMinimumSize(self.width(), self.height())
  526. #------------------------------------------------------------------
  527. def reloadInfo(self):
  528. realPluginName = self.host.get_real_plugin_name(self.fPluginId)
  529. #audioCountInfo = self.host.get_audio_port_count_info(self.fPluginId)
  530. midiCountInfo = self.host.get_midi_port_count_info(self.fPluginId)
  531. #paramCountInfo = self.host.get_parameter_count_info(self.fPluginId)
  532. pluginHints = self.fPluginInfo['hints']
  533. self.ui.le_type.setText(getPluginTypeAsString(self.fPluginInfo['type']))
  534. self.ui.label_name.setEnabled(bool(realPluginName))
  535. self.ui.le_name.setEnabled(bool(realPluginName))
  536. self.ui.le_name.setText(realPluginName)
  537. self.ui.le_name.setToolTip(realPluginName)
  538. self.ui.label_label.setEnabled(bool(self.fPluginInfo['label']))
  539. self.ui.le_label.setEnabled(bool(self.fPluginInfo['label']))
  540. self.ui.le_label.setText(self.fPluginInfo['label'])
  541. self.ui.le_label.setToolTip(self.fPluginInfo['label'])
  542. self.ui.label_maker.setEnabled(bool(self.fPluginInfo['maker']))
  543. self.ui.le_maker.setEnabled(bool(self.fPluginInfo['maker']))
  544. self.ui.le_maker.setText(self.fPluginInfo['maker'])
  545. self.ui.le_maker.setToolTip(self.fPluginInfo['maker'])
  546. self.ui.label_copyright.setEnabled(bool(self.fPluginInfo['copyright']))
  547. self.ui.le_copyright.setEnabled(bool(self.fPluginInfo['copyright']))
  548. self.ui.le_copyright.setText(self.fPluginInfo['copyright'])
  549. self.ui.le_copyright.setToolTip(self.fPluginInfo['copyright'])
  550. self.ui.label_unique_id.setEnabled(bool(self.fPluginInfo['uniqueId']))
  551. self.ui.le_unique_id.setEnabled(bool(self.fPluginInfo['uniqueId']))
  552. self.ui.le_unique_id.setText(str(self.fPluginInfo['uniqueId']))
  553. self.ui.le_unique_id.setToolTip(str(self.fPluginInfo['uniqueId']))
  554. self.ui.label_plugin.setText("\n%s\n" % (self.fPluginInfo['name'] or "(none)"))
  555. self.setWindowTitle(self.fPluginInfo['name'] or "(none)")
  556. self.ui.dial_drywet.setEnabled(pluginHints & PLUGIN_CAN_DRYWET)
  557. self.ui.dial_vol.setEnabled(pluginHints & PLUGIN_CAN_VOLUME)
  558. self.ui.dial_b_left.setEnabled(pluginHints & PLUGIN_CAN_BALANCE)
  559. self.ui.dial_b_right.setEnabled(pluginHints & PLUGIN_CAN_BALANCE)
  560. self.ui.dial_pan.setEnabled(pluginHints & PLUGIN_CAN_PANNING)
  561. self.ui.ch_use_chunks.setEnabled(self.fPluginInfo['optionsAvailable'] & PLUGIN_OPTION_USE_CHUNKS)
  562. self.ui.ch_use_chunks.setChecked(self.fPluginInfo['optionsEnabled'] & PLUGIN_OPTION_USE_CHUNKS)
  563. self.ui.ch_fixed_buffer.setEnabled(self.fPluginInfo['optionsAvailable'] & PLUGIN_OPTION_FIXED_BUFFERS)
  564. self.ui.ch_fixed_buffer.setChecked(self.fPluginInfo['optionsEnabled'] & PLUGIN_OPTION_FIXED_BUFFERS)
  565. self.ui.ch_force_stereo.setEnabled(self.fPluginInfo['optionsAvailable'] & PLUGIN_OPTION_FORCE_STEREO)
  566. self.ui.ch_force_stereo.setChecked(self.fPluginInfo['optionsEnabled'] & PLUGIN_OPTION_FORCE_STEREO)
  567. self.ui.ch_map_program_changes.setEnabled(self.fPluginInfo['optionsAvailable'] & PLUGIN_OPTION_MAP_PROGRAM_CHANGES)
  568. self.ui.ch_map_program_changes.setChecked(self.fPluginInfo['optionsEnabled'] & PLUGIN_OPTION_MAP_PROGRAM_CHANGES)
  569. self.ui.ch_send_control_changes.setEnabled(self.fPluginInfo['optionsAvailable'] & PLUGIN_OPTION_SEND_CONTROL_CHANGES)
  570. self.ui.ch_send_control_changes.setChecked(self.fPluginInfo['optionsEnabled'] & PLUGIN_OPTION_SEND_CONTROL_CHANGES)
  571. self.ui.ch_send_channel_pressure.setEnabled(self.fPluginInfo['optionsAvailable'] & PLUGIN_OPTION_SEND_CHANNEL_PRESSURE)
  572. self.ui.ch_send_channel_pressure.setChecked(self.fPluginInfo['optionsEnabled'] & PLUGIN_OPTION_SEND_CHANNEL_PRESSURE)
  573. self.ui.ch_send_note_aftertouch.setEnabled(self.fPluginInfo['optionsAvailable'] & PLUGIN_OPTION_SEND_NOTE_AFTERTOUCH)
  574. self.ui.ch_send_note_aftertouch.setChecked(self.fPluginInfo['optionsEnabled'] & PLUGIN_OPTION_SEND_NOTE_AFTERTOUCH)
  575. self.ui.ch_send_pitchbend.setEnabled(self.fPluginInfo['optionsAvailable'] & PLUGIN_OPTION_SEND_PITCHBEND)
  576. self.ui.ch_send_pitchbend.setChecked(self.fPluginInfo['optionsEnabled'] & PLUGIN_OPTION_SEND_PITCHBEND)
  577. self.ui.ch_send_all_sound_off.setEnabled(self.fPluginInfo['optionsAvailable'] & PLUGIN_OPTION_SEND_ALL_SOUND_OFF)
  578. self.ui.ch_send_all_sound_off.setChecked(self.fPluginInfo['optionsEnabled'] & PLUGIN_OPTION_SEND_ALL_SOUND_OFF)
  579. canSendPrograms = bool((self.fPluginInfo['optionsAvailable'] & PLUGIN_OPTION_SEND_PROGRAM_CHANGES) != 0 and
  580. (self.fPluginInfo['optionsEnabled'] & PLUGIN_OPTION_MAP_PROGRAM_CHANGES) == 0)
  581. self.ui.ch_send_program_changes.setEnabled(canSendPrograms)
  582. self.ui.ch_send_program_changes.setChecked(self.fPluginInfo['optionsEnabled'] & PLUGIN_OPTION_SEND_PROGRAM_CHANGES)
  583. self.ui.sw_programs.setCurrentIndex(0 if self.fPluginInfo['type'] in (PLUGIN_VST2, PLUGIN_GIG, PLUGIN_SFZ) else 1)
  584. # Show/hide keyboard
  585. showKeyboard = (self.fPluginInfo['category'] == PLUGIN_CATEGORY_SYNTH or midiCountInfo['ins'] > 0 < midiCountInfo['outs'])
  586. self.ui.scrollArea.setEnabled(showKeyboard)
  587. self.ui.scrollArea.setVisible(showKeyboard)
  588. # Force-update parent for new hints
  589. if self.fParent is not None and not self.fFirstInit:
  590. self.fParent.editDialogPluginHintsChanged(self.fPluginId, pluginHints)
  591. def reloadParameters(self):
  592. # Reset
  593. self.fParameterList = []
  594. self.fParametersToUpdate = []
  595. self.fTabIconTimers = []
  596. # Remove all previous parameters
  597. for x in range(self.ui.tabWidget.count()-1):
  598. self.ui.tabWidget.widget(1).deleteLater()
  599. self.ui.tabWidget.removeTab(1)
  600. parameterCount = self.host.get_parameter_count(self.fPluginId)
  601. # -----------------------------------------------------------------
  602. if parameterCount <= 0:
  603. return
  604. # -----------------------------------------------------------------
  605. paramInputList = []
  606. paramOutputList = []
  607. paramInputWidth = 0
  608. paramOutputWidth = 0
  609. paramInputListFull = [] # ([params], width)
  610. paramOutputListFull = [] # ([params], width)
  611. for i in range(min(parameterCount, self.host.maxParameters)):
  612. paramInfo = self.host.get_parameter_info(self.fPluginId, i)
  613. paramData = self.host.get_parameter_data(self.fPluginId, i)
  614. paramRanges = self.host.get_parameter_ranges(self.fPluginId, i)
  615. paramValue = self.host.get_current_parameter_value(self.fPluginId, i)
  616. if paramData['type'] not in (PARAMETER_INPUT, PARAMETER_OUTPUT):
  617. continue
  618. if (paramData['hints'] & PARAMETER_IS_ENABLED) == 0:
  619. continue
  620. parameter = {
  621. 'type': paramData['type'],
  622. 'hints': paramData['hints'],
  623. 'name': paramInfo['name'],
  624. 'unit': paramInfo['unit'],
  625. 'scalePoints': [],
  626. 'index': paramData['index'],
  627. 'default': paramRanges['def'],
  628. 'minimum': paramRanges['min'],
  629. 'maximum': paramRanges['max'],
  630. 'step': paramRanges['step'],
  631. 'stepSmall': paramRanges['stepSmall'],
  632. 'stepLarge': paramRanges['stepLarge'],
  633. 'midiCC': paramData['midiCC'],
  634. 'midiChannel': paramData['midiChannel']+1,
  635. 'current': paramValue
  636. }
  637. for j in range(paramInfo['scalePointCount']):
  638. scalePointInfo = self.host.get_parameter_scalepoint_info(self.fPluginId, i, j)
  639. parameter['scalePoints'].append({
  640. 'value': scalePointInfo['value'],
  641. 'label': scalePointInfo['label']
  642. })
  643. #parameter['name'] = parameter['name'][:30] + (parameter['name'][30:] and "...")
  644. # -----------------------------------------------------------------
  645. # Get width values, in packs of 10
  646. if parameter['type'] == PARAMETER_INPUT:
  647. paramInputWidthTMP = QFontMetrics(self.font()).width(parameter['name'])
  648. if paramInputWidthTMP > paramInputWidth:
  649. paramInputWidth = paramInputWidthTMP
  650. paramInputList.append(parameter)
  651. if len(paramInputList) == self.kParamsPerPage:
  652. paramInputListFull.append((paramInputList, paramInputWidth))
  653. paramInputList = []
  654. paramInputWidth = 0
  655. else:
  656. paramOutputWidthTMP = QFontMetrics(self.font()).width(parameter['name'])
  657. if paramOutputWidthTMP > paramOutputWidth:
  658. paramOutputWidth = paramOutputWidthTMP
  659. paramOutputList.append(parameter)
  660. if len(paramOutputList) == self.kParamsPerPage:
  661. paramOutputListFull.append((paramOutputList, paramOutputWidth))
  662. paramOutputList = []
  663. paramOutputWidth = 0
  664. # for i in range(parameterCount)
  665. else:
  666. # Final page width values
  667. if 0 < len(paramInputList) < 10:
  668. paramInputListFull.append((paramInputList, paramInputWidth))
  669. if 0 < len(paramOutputList) < 10:
  670. paramOutputListFull.append((paramOutputList, paramOutputWidth))
  671. # Create parameter tabs + widgets
  672. self._createParameterWidgets(PARAMETER_INPUT, paramInputListFull, self.tr("Parameters"))
  673. self._createParameterWidgets(PARAMETER_OUTPUT, paramOutputListFull, self.tr("Outputs"))
  674. def reloadPrograms(self):
  675. # Programs
  676. self.ui.cb_programs.blockSignals(True)
  677. self.ui.cb_programs.clear()
  678. programCount = self.host.get_program_count(self.fPluginId)
  679. if programCount > 0:
  680. self.ui.cb_programs.setEnabled(True)
  681. self.ui.label_programs.setEnabled(True)
  682. for i in range(programCount):
  683. pName = self.host.get_program_name(self.fPluginId, i)
  684. #pName = pName[:40] + (pName[40:] and "...")
  685. self.ui.cb_programs.addItem(pName)
  686. self.ui.cb_programs.setCurrentIndex(self.host.get_current_program_index(self.fPluginId))
  687. else:
  688. self.ui.cb_programs.setEnabled(False)
  689. self.ui.label_programs.setEnabled(False)
  690. self.ui.cb_programs.blockSignals(False)
  691. # MIDI Programs
  692. self.ui.cb_midi_programs.blockSignals(True)
  693. self.ui.cb_midi_programs.clear()
  694. midiProgramCount = self.host.get_midi_program_count(self.fPluginId)
  695. if midiProgramCount > 0:
  696. self.ui.cb_midi_programs.setEnabled(True)
  697. self.ui.label_midi_programs.setEnabled(True)
  698. for i in range(midiProgramCount):
  699. mpData = self.host.get_midi_program_data(self.fPluginId, i)
  700. mpBank = mpData['bank']
  701. mpProg = mpData['program']
  702. mpName = mpData['name']
  703. #mpName = mpName[:40] + (mpName[40:] and "...")
  704. self.ui.cb_midi_programs.addItem("%03i:%03i - %s" % (mpBank+1, mpProg+1, mpName))
  705. self.ui.cb_midi_programs.setCurrentIndex(self.host.get_current_midi_program_index(self.fPluginId))
  706. else:
  707. self.ui.cb_midi_programs.setEnabled(False)
  708. self.ui.label_midi_programs.setEnabled(False)
  709. self.ui.cb_midi_programs.blockSignals(False)
  710. self.ui.sw_programs.setEnabled(programCount > 0 or midiProgramCount > 0)
  711. if self.fPluginInfo['type'] == PLUGIN_LV2:
  712. self.ui.b_load_state.setEnabled(programCount > 0)
  713. #------------------------------------------------------------------
  714. def clearNotes(self):
  715. self.fPlayingNotes = []
  716. self.ui.keyboard.allNotesOff()
  717. def noteOn(self, channel, note, velocity):
  718. if self.fControlChannel == channel:
  719. self.ui.keyboard.sendNoteOn(note, False)
  720. def noteOff(self, channel, note):
  721. if self.fControlChannel == channel:
  722. self.ui.keyboard.sendNoteOff(note, False)
  723. #------------------------------------------------------------------
  724. def getHints(self):
  725. return self.fPluginInfo['hints']
  726. def setPluginId(self, idx):
  727. self.fPluginId = idx
  728. def setName(self, name):
  729. self.fPluginInfo['name'] = name
  730. self.ui.label_plugin.setText("\n%s\n" % name)
  731. self.setWindowTitle(name)
  732. #------------------------------------------------------------------
  733. def setParameterValue(self, parameterId, value):
  734. for paramItem in self.fParametersToUpdate:
  735. if paramItem[0] == parameterId:
  736. paramItem[1] = value
  737. break
  738. else:
  739. self.fParametersToUpdate.append([parameterId, value])
  740. def setParameterDefault(self, parameterId, value):
  741. for paramType, paramId, paramWidget in self.fParameterList:
  742. if paramId == parameterId:
  743. paramWidget.setDefault(value)
  744. break
  745. def setParameterMidiControl(self, parameterId, control):
  746. for paramType, paramId, paramWidget in self.fParameterList:
  747. if paramId == parameterId:
  748. paramWidget.setMidiControl(control)
  749. break
  750. def setParameterMidiChannel(self, parameterId, channel):
  751. for paramType, paramId, paramWidget in self.fParameterList:
  752. if paramId == parameterId:
  753. paramWidget.setMidiChannel(channel+1)
  754. break
  755. def setProgram(self, index):
  756. self.ui.cb_programs.blockSignals(True)
  757. self.ui.cb_programs.setCurrentIndex(index)
  758. self.ui.cb_programs.blockSignals(False)
  759. self._updateParameterValues()
  760. def setMidiProgram(self, index):
  761. self.ui.cb_midi_programs.blockSignals(True)
  762. self.ui.cb_midi_programs.setCurrentIndex(index)
  763. self.ui.cb_midi_programs.blockSignals(False)
  764. self._updateParameterValues()
  765. def setOption(self, option, yesNo):
  766. if option == PLUGIN_OPTION_USE_CHUNKS:
  767. widget = self.ui.ch_use_chunks
  768. elif option == PLUGIN_OPTION_FIXED_BUFFERS:
  769. widget = self.ui.ch_fixed_buffer
  770. elif option == PLUGIN_OPTION_FORCE_STEREO:
  771. widget = self.ui.ch_force_stereo
  772. elif option == PLUGIN_OPTION_MAP_PROGRAM_CHANGES:
  773. widget = self.ui.ch_map_program_changes
  774. elif option == PLUGIN_OPTION_SEND_PROGRAM_CHANGES:
  775. widget = self.ui.ch_send_program_changes
  776. elif option == PLUGIN_OPTION_SEND_CONTROL_CHANGES:
  777. widget = self.ui.ch_send_control_changes
  778. elif option == PLUGIN_OPTION_SEND_CHANNEL_PRESSURE:
  779. widget = self.ui.ch_send_channel_pressure
  780. elif option == PLUGIN_OPTION_SEND_NOTE_AFTERTOUCH:
  781. widget = self.ui.ch_send_note_aftertouch
  782. elif option == PLUGIN_OPTION_SEND_PITCHBEND:
  783. widget = self.ui.ch_send_pitchbend
  784. elif option == PLUGIN_OPTION_SEND_ALL_SOUND_OFF:
  785. widget = self.ui.ch_send_all_sound_off
  786. else:
  787. return
  788. widget.blockSignals(True)
  789. widget.setChecked(yesNo)
  790. widget.blockSignals(False)
  791. #------------------------------------------------------------------
  792. def setVisible(self, yesNo):
  793. if yesNo:
  794. if not self.fGeometry.isNull():
  795. self.restoreGeometry(self.fGeometry)
  796. else:
  797. self.fGeometry = self.saveGeometry()
  798. QDialog.setVisible(self, yesNo)
  799. #------------------------------------------------------------------
  800. def idleSlow(self):
  801. # Check Tab icons
  802. for i in range(len(self.fTabIconTimers)):
  803. if self.fTabIconTimers[i] == ICON_STATE_ON:
  804. self.fTabIconTimers[i] = ICON_STATE_WAIT
  805. elif self.fTabIconTimers[i] == ICON_STATE_WAIT:
  806. self.fTabIconTimers[i] = ICON_STATE_OFF
  807. elif self.fTabIconTimers[i] == ICON_STATE_OFF:
  808. self.fTabIconTimers[i] = ICON_STATE_NULL
  809. self.ui.tabWidget.setTabIcon(i+1, self.fTabIconOff)
  810. # Check parameters needing update
  811. for index, value in self.fParametersToUpdate:
  812. if index == PARAMETER_DRYWET:
  813. self.ui.dial_drywet.blockSignals(True)
  814. self.ui.dial_drywet.setValue(value)
  815. self.ui.dial_drywet.blockSignals(False)
  816. elif index == PARAMETER_VOLUME:
  817. self.ui.dial_vol.blockSignals(True)
  818. self.ui.dial_vol.setValue(value)
  819. self.ui.dial_vol.blockSignals(False)
  820. elif index == PARAMETER_BALANCE_LEFT:
  821. self.ui.dial_b_left.blockSignals(True)
  822. self.ui.dial_b_left.setValue(value)
  823. self.ui.dial_b_left.blockSignals(False)
  824. elif index == PARAMETER_BALANCE_RIGHT:
  825. self.ui.dial_b_right.blockSignals(True)
  826. self.ui.dial_b_right.setValue(value)
  827. self.ui.dial_b_right.blockSignals(False)
  828. elif index == PARAMETER_PANNING:
  829. self.ui.dial_pan.blockSignals(True)
  830. self.ui.dial_pan.setValue(value)
  831. self.ui.dial_pan.blockSignals(False)
  832. elif index == PARAMETER_CTRL_CHANNEL:
  833. self.fControlChannel = int(value)
  834. self.ui.sb_ctrl_channel.blockSignals(True)
  835. self.ui.sb_ctrl_channel.setValue(self.fControlChannel+1)
  836. self.ui.sb_ctrl_channel.blockSignals(False)
  837. self.ui.keyboard.allNotesOff()
  838. self._updateCtrlPrograms()
  839. elif index >= 0:
  840. for paramType, paramId, paramWidget in self.fParameterList:
  841. if paramId != index:
  842. continue
  843. # FIXME see below
  844. if paramType != PARAMETER_INPUT:
  845. continue
  846. paramWidget.blockSignals(True)
  847. paramWidget.setValue(value)
  848. paramWidget.blockSignals(False)
  849. #if paramType == PARAMETER_INPUT:
  850. tabIndex = paramWidget.getTabIndex()
  851. if self.fTabIconTimers[tabIndex-1] == ICON_STATE_NULL:
  852. self.ui.tabWidget.setTabIcon(tabIndex, self.fTabIconOn)
  853. self.fTabIconTimers[tabIndex-1] = ICON_STATE_ON
  854. break
  855. # Clear all parameters
  856. self.fParametersToUpdate = []
  857. # Update parameter outputs | FIXME needed?
  858. for paramType, paramId, paramWidget in self.fParameterList:
  859. if paramType != PARAMETER_OUTPUT:
  860. continue
  861. paramWidget.blockSignals(True)
  862. paramWidget.setValue(self.host.get_current_parameter_value(self.fPluginId, paramId))
  863. paramWidget.blockSignals(False)
  864. #------------------------------------------------------------------
  865. @pyqtSlot()
  866. def slot_stateSave(self):
  867. if self.fPluginInfo['type'] == PLUGIN_LV2:
  868. # TODO
  869. return
  870. if self.fCurrentStateFilename:
  871. askTry = QMessageBox.question(self, self.tr("Overwrite?"), self.tr("Overwrite previously created file?"), QMessageBox.Ok|QMessageBox.Cancel)
  872. if askTry == QMessageBox.Ok:
  873. self.host.save_plugin_state(self.fPluginId, self.fCurrentStateFilename)
  874. return
  875. self.fCurrentStateFilename = None
  876. fileFilter = self.tr("Carla State File (*.carxs)")
  877. filename = QFileDialog.getSaveFileName(self, self.tr("Save Plugin State File"), filter=fileFilter)
  878. if config_UseQt5:
  879. filename = filename[0]
  880. if not filename:
  881. return
  882. if not filename.lower().endswith(".carxs"):
  883. filename += ".carxs"
  884. self.fCurrentStateFilename = filename
  885. self.host.save_plugin_state(self.fPluginId, self.fCurrentStateFilename)
  886. @pyqtSlot()
  887. def slot_stateLoad(self):
  888. if self.fPluginInfo['type'] == PLUGIN_LV2:
  889. presetList = []
  890. for i in range(self.host.get_program_count(self.fPluginId)):
  891. presetList.append("%03i - %s" % (i+1, self.host.get_program_name(self.fPluginId, i)))
  892. ret = QInputDialog.getItem(self, self.tr("Open LV2 Preset"), self.tr("Select an LV2 Preset:"), presetList, 0, False)
  893. if ret[1]:
  894. index = int(ret[0].split(" - ", 1)[0])-1
  895. self.host.set_midi_program(self.fPluginId, -1)
  896. self.host.set_program(self.fPluginId, index)
  897. self.setMidiProgram(-1)
  898. return
  899. fileFilter = self.tr("Carla State File (*.carxs)")
  900. filename = QFileDialog.getOpenFileName(self, self.tr("Open Plugin State File"), filter=fileFilter)
  901. if config_UseQt5:
  902. filename = filename[0]
  903. if not filename:
  904. return
  905. self.fCurrentStateFilename = filename
  906. self.host.load_plugin_state(self.fPluginId, self.fCurrentStateFilename)
  907. #------------------------------------------------------------------
  908. @pyqtSlot(bool)
  909. def slot_optionChanged(self, clicked):
  910. sender = self.sender()
  911. if sender == self.ui.ch_use_chunks:
  912. option = PLUGIN_OPTION_USE_CHUNKS
  913. elif sender == self.ui.ch_fixed_buffer:
  914. option = PLUGIN_OPTION_FIXED_BUFFERS
  915. elif sender == self.ui.ch_force_stereo:
  916. option = PLUGIN_OPTION_FORCE_STEREO
  917. elif sender == self.ui.ch_map_program_changes:
  918. option = PLUGIN_OPTION_MAP_PROGRAM_CHANGES
  919. elif sender == self.ui.ch_send_program_changes:
  920. option = PLUGIN_OPTION_SEND_PROGRAM_CHANGES
  921. elif sender == self.ui.ch_send_control_changes:
  922. option = PLUGIN_OPTION_SEND_CONTROL_CHANGES
  923. elif sender == self.ui.ch_send_channel_pressure:
  924. option = PLUGIN_OPTION_SEND_CHANNEL_PRESSURE
  925. elif sender == self.ui.ch_send_note_aftertouch:
  926. option = PLUGIN_OPTION_SEND_NOTE_AFTERTOUCH
  927. elif sender == self.ui.ch_send_pitchbend:
  928. option = PLUGIN_OPTION_SEND_PITCHBEND
  929. elif sender == self.ui.ch_send_all_sound_off:
  930. option = PLUGIN_OPTION_SEND_ALL_SOUND_OFF
  931. else:
  932. return
  933. #--------------------------------------------------------------
  934. # handle map-program-changes and send-program-changes conflict
  935. if option == PLUGIN_OPTION_MAP_PROGRAM_CHANGES and clicked:
  936. self.ui.ch_send_program_changes.setEnabled(False)
  937. # disable send-program-changes if needed
  938. if self.ui.ch_send_program_changes.isChecked():
  939. self.host.set_option(self.fPluginId, PLUGIN_OPTION_SEND_PROGRAM_CHANGES, False)
  940. #--------------------------------------------------------------
  941. # set option
  942. self.host.set_option(self.fPluginId, option, clicked)
  943. #--------------------------------------------------------------
  944. # handle map-program-changes and send-program-changes conflict
  945. if option == PLUGIN_OPTION_MAP_PROGRAM_CHANGES and not clicked:
  946. self.ui.ch_send_program_changes.setEnabled(self.fPluginInfo['optionsAvailable'] & PLUGIN_OPTION_SEND_PROGRAM_CHANGES)
  947. # restore send-program-changes if needed
  948. if self.ui.ch_send_program_changes.isChecked():
  949. self.host.set_option(self.fPluginId, PLUGIN_OPTION_SEND_PROGRAM_CHANGES, True)
  950. #------------------------------------------------------------------
  951. @pyqtSlot(int)
  952. def slot_dryWetChanged(self, value):
  953. self.host.set_drywet(self.fPluginId, value)
  954. if self.fParent is not None:
  955. self.fParent.editDialogParameterValueChanged(self.fPluginId, PARAMETER_DRYWET, value)
  956. @pyqtSlot(int)
  957. def slot_volumeChanged(self, value):
  958. self.host.set_volume(self.fPluginId, value)
  959. if self.fParent is not None:
  960. self.fParent.editDialogParameterValueChanged(self.fPluginId, PARAMETER_VOLUME, value)
  961. @pyqtSlot(int)
  962. def slot_balanceLeftChanged(self, value):
  963. self.host.set_balance_left(self.fPluginId, value)
  964. if self.fParent is not None:
  965. self.fParent.editDialogParameterValueChanged(self.fPluginId, PARAMETER_BALANCE_LEFT, value)
  966. @pyqtSlot(int)
  967. def slot_balanceRightChanged(self, value):
  968. self.host.set_balance_right(self.fPluginId, value)
  969. if self.fParent is not None:
  970. self.fParent.editDialogParameterValueChanged(self.fPluginId, PARAMETER_BALANCE_RIGHT, value)
  971. @pyqtSlot(int)
  972. def slot_panChanged(self, value):
  973. self.host.set_panning(self.fPluginId, value)
  974. if self.fParent is not None:
  975. self.fParent.editDialogParameterValueChanged(self.fPluginId, PARAMETER_PANNING, value)
  976. @pyqtSlot(int)
  977. def slot_ctrlChannelChanged(self, value):
  978. self.fControlChannel = value-1
  979. self.host.set_ctrl_channel(self.fPluginId, self.fControlChannel)
  980. self.ui.keyboard.allNotesOff()
  981. self._updateCtrlPrograms()
  982. #------------------------------------------------------------------
  983. @pyqtSlot(int, float)
  984. def slot_parameterValueChanged(self, parameterId, value):
  985. self.host.set_parameter_value(self.fPluginId, parameterId, value)
  986. if self.fParent is not None:
  987. self.fParent.editDialogParameterValueChanged(self.fPluginId, parameterId, value)
  988. @pyqtSlot(int, int)
  989. def slot_parameterMidiControlChanged(self, parameterId, control):
  990. self.host.set_parameter_midi_cc(self.fPluginId, parameterId, control)
  991. @pyqtSlot(int, int)
  992. def slot_parameterMidiChannelChanged(self, parameterId, channel):
  993. self.host.set_parameter_midi_channel(self.fPluginId, parameterId, channel-1)
  994. #------------------------------------------------------------------
  995. @pyqtSlot(int)
  996. def slot_programIndexChanged(self, index):
  997. self.host.set_program(self.fPluginId, index)
  998. if self.fParent is not None:
  999. self.fParent.editDialogProgramChanged(self.fPluginId, index)
  1000. self._updateParameterValues()
  1001. @pyqtSlot(int)
  1002. def slot_midiProgramIndexChanged(self, index):
  1003. self.host.set_midi_program(self.fPluginId, index)
  1004. if self.fParent is not None:
  1005. self.fParent.editDialogMidiProgramChanged(self.fPluginId, index)
  1006. self._updateParameterValues()
  1007. #------------------------------------------------------------------
  1008. @pyqtSlot(int)
  1009. def slot_noteOn(self, note):
  1010. if self.fControlChannel >= 0:
  1011. self.host.send_midi_note(self.fPluginId, self.fControlChannel, note, 100)
  1012. if self.fParent is not None:
  1013. self.fParent.editDialogNotePressed(self.fPluginId, note)
  1014. @pyqtSlot(int)
  1015. def slot_noteOff(self, note):
  1016. if self.fControlChannel >= 0:
  1017. self.host.send_midi_note(self.fPluginId, self.fControlChannel, note, 0)
  1018. if self.fParent is not None:
  1019. self.fParent.editDialogNoteReleased(self.fPluginId, note)
  1020. #------------------------------------------------------------------
  1021. @pyqtSlot()
  1022. def slot_finished(self):
  1023. if self.fParent is not None:
  1024. self.fParent.editDialogVisibilityChanged(self.fPluginId, False)
  1025. #------------------------------------------------------------------
  1026. @pyqtSlot()
  1027. def slot_knobCustomMenu(self):
  1028. knobName = self.sender().objectName()
  1029. if knobName == "dial_drywet":
  1030. minimum = 0.0
  1031. maximum = 1.0
  1032. default = 1.0
  1033. label = "Dry/Wet"
  1034. elif knobName == "dial_vol":
  1035. minimum = 0.0
  1036. maximum = 1.27
  1037. default = 1.0
  1038. label = "Volume"
  1039. elif knobName == "dial_b_left":
  1040. minimum = -1.0
  1041. maximum = 1.0
  1042. default = -1.0
  1043. label = "Balance-Left"
  1044. elif knobName == "dial_b_right":
  1045. minimum = -1.0
  1046. maximum = 1.0
  1047. default = 1.0
  1048. label = "Balance-Right"
  1049. elif knobName == "dial_pan":
  1050. minimum = -1.0
  1051. maximum = 1.0
  1052. default = 0.0
  1053. label = "Panning"
  1054. else:
  1055. minimum = 0.0
  1056. maximum = 1.0
  1057. default = 0.5
  1058. label = "Unknown"
  1059. current = self.sender().value() / 10
  1060. menu = QMenu(self)
  1061. actReset = menu.addAction(self.tr("Reset (%i%%)" % (default*100)))
  1062. menu.addSeparator()
  1063. actMinimum = menu.addAction(self.tr("Set to Minimum (%i%%)" % (minimum*100)))
  1064. actCenter = menu.addAction(self.tr("Set to Center"))
  1065. actMaximum = menu.addAction(self.tr("Set to Maximum (%i%%)" % (maximum*100)))
  1066. menu.addSeparator()
  1067. actSet = menu.addAction(self.tr("Set value..."))
  1068. if label not in ("Balance-Left", "Balance-Right"):
  1069. menu.removeAction(actCenter)
  1070. actSelected = menu.exec_(QCursor.pos())
  1071. if actSelected == actSet:
  1072. valueTry = QInputDialog.getDouble(self, self.tr("Set value"), label, current, minimum, maximum, 3)
  1073. if valueTry[1]:
  1074. value = valueTry[0] * 10
  1075. else:
  1076. return
  1077. elif actSelected == actMinimum:
  1078. value = minimum
  1079. elif actSelected == actMaximum:
  1080. value = maximum
  1081. elif actSelected == actReset:
  1082. value = default
  1083. elif actSelected == actCenter:
  1084. value = 0.0
  1085. else:
  1086. return
  1087. self.sender().setValue(value)
  1088. #------------------------------------------------------------------
  1089. @pyqtSlot()
  1090. def slot_channelCustomMenu(self):
  1091. menu = QMenu(self)
  1092. actNone = menu.addAction(self.tr("None"))
  1093. if self.fControlChannel+1 == 0:
  1094. actNone.setCheckable(True)
  1095. actNone.setChecked(True)
  1096. for i in range(1, 16+1):
  1097. action = menu.addAction("%i" % i)
  1098. if self.fControlChannel+1 == i:
  1099. action.setCheckable(True)
  1100. action.setChecked(True)
  1101. actSel = menu.exec_(QCursor.pos())
  1102. if not actSel:
  1103. pass
  1104. elif actSel == actNone:
  1105. self.ui.sb_ctrl_channel.setValue(0)
  1106. elif actSel:
  1107. selChannel = int(actSel.text())
  1108. self.ui.sb_ctrl_channel.setValue(selChannel)
  1109. #------------------------------------------------------------------
  1110. def _createParameterWidgets(self, paramType, paramListFull, tabPageName):
  1111. i = 1
  1112. for paramList, width in paramListFull:
  1113. if len(paramList) == 0:
  1114. break
  1115. tabIndex = self.ui.tabWidget.count()
  1116. tabPageContainer = QWidget(self.ui.tabWidget)
  1117. tabPageLayout = QVBoxLayout(tabPageContainer)
  1118. tabPageContainer.setLayout(tabPageLayout)
  1119. for paramInfo in paramList:
  1120. paramWidget = PluginParameter(tabPageContainer, self.host, paramInfo, self.fPluginId, tabIndex)
  1121. paramWidget.setLabelWidth(width)
  1122. tabPageLayout.addWidget(paramWidget)
  1123. self.fParameterList.append((paramType, paramInfo['index'], paramWidget))
  1124. if paramType == PARAMETER_INPUT:
  1125. paramWidget.valueChanged.connect(self.slot_parameterValueChanged)
  1126. paramWidget.midiControlChanged.connect(self.slot_parameterMidiControlChanged)
  1127. paramWidget.midiChannelChanged.connect(self.slot_parameterMidiChannelChanged)
  1128. tabPageLayout.addStretch()
  1129. self.ui.tabWidget.addTab(tabPageContainer, "%s (%i)" % (tabPageName, i))
  1130. i += 1
  1131. if paramType == PARAMETER_INPUT:
  1132. self.ui.tabWidget.setTabIcon(tabIndex, self.fTabIconOff)
  1133. self.fTabIconTimers.append(ICON_STATE_NULL)
  1134. def _updateCtrlPrograms(self):
  1135. self.ui.keyboard.setEnabled(self.fControlChannel >= 0)
  1136. if self.fPluginInfo['category'] != PLUGIN_CATEGORY_SYNTH or self.fPluginInfo['type'] not in (PLUGIN_INTERNAL, PLUGIN_SF2, PLUGIN_GIG):
  1137. return
  1138. if self.fControlChannel < 0:
  1139. self.ui.cb_programs.setEnabled(False)
  1140. self.ui.cb_midi_programs.setEnabled(False)
  1141. return
  1142. self.ui.cb_programs.setEnabled(True)
  1143. self.ui.cb_midi_programs.setEnabled(True)
  1144. pIndex = self.host.get_current_program_index(self.fPluginId)
  1145. if self.ui.cb_programs.currentIndex() != pIndex:
  1146. self.setProgram(pIndex)
  1147. mpIndex = self.host.get_current_midi_program_index(self.fPluginId)
  1148. if self.ui.cb_midi_programs.currentIndex() != mpIndex:
  1149. self.setMidiProgram(mpIndex)
  1150. def _updateParameterValues(self):
  1151. for paramType, paramId, paramWidget in self.fParameterList:
  1152. paramWidget.blockSignals(True)
  1153. paramWidget.setValue(self.host.get_current_parameter_value(self.fPluginId, paramId))
  1154. paramWidget.blockSignals(False)
  1155. #------------------------------------------------------------------
  1156. def testTimer(self):
  1157. self.fIdleTimerId = self.startTimer(50)
  1158. self.SIGTERM.connect(self.testTimerClose)
  1159. gCarla.gui = self
  1160. setUpSignals()
  1161. def testTimerClose(self):
  1162. self.close()
  1163. app.quit()
  1164. #------------------------------------------------------------------
  1165. def closeEvent(self, event):
  1166. if self.fIdleTimerId != 0:
  1167. self.killTimer(self.fIdleTimerId)
  1168. self.fIdleTimerId = 0
  1169. self.host.engine_close()
  1170. QDialog.closeEvent(self, event)
  1171. def timerEvent(self, event):
  1172. if event.timerId() == self.fIdleTimerId:
  1173. self.host.engine_idle()
  1174. self.idleSlow()
  1175. QDialog.timerEvent(self, event)
  1176. def done(self, r):
  1177. QDialog.done(self, r)
  1178. self.close()
  1179. # ------------------------------------------------------------------------------------------------------------
  1180. # Main
  1181. if __name__ == '__main__':
  1182. from carla_app import CarlaApplication
  1183. from carla_host import initHost, loadHostSettings
  1184. app = CarlaApplication()
  1185. host = initHost("Widgets", None, False, False, False)
  1186. loadHostSettings(host)
  1187. host.engine_init("JACK", "Carla-Widgets")
  1188. host.add_plugin(BINARY_NATIVE, PLUGIN_DSSI, "/usr/lib/dssi/karplong.so", "karplong", "karplong", 0, None)
  1189. host.set_active(0, True)
  1190. gui1 = CarlaAboutW(None, host)
  1191. gui1.show()
  1192. gui2 = PluginEdit(None, host, 0)
  1193. gui2.testTimer()
  1194. gui2.show()
  1195. app.exit_exec()