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.

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