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.

paramspinbox.py 16KB

11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
10 years ago
11 years ago
11 years ago
11 years ago
11 years ago
10 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
10 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. # Parameter SpinBox, a custom Qt4 widget
  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. from math import isnan, modf
  23. from random import random
  24. if config_UseQt5:
  25. from PyQt5.QtCore import pyqtSignal, pyqtSlot, Qt, QTimer
  26. from PyQt5.QtGui import QCursor
  27. from PyQt5.QtWidgets import QAbstractSpinBox, QApplication, QComboBox, QDialog, QMenu, QProgressBar
  28. else:
  29. from PyQt4.QtCore import pyqtSignal, pyqtSlot, Qt, QTimer
  30. from PyQt4.QtGui import QAbstractSpinBox, QApplication, QComboBox, QCursor, QDialog, QMenu, QProgressBar
  31. # ------------------------------------------------------------------------------------------------------------
  32. # Imports (Custom)
  33. import ui_inputdialog_value
  34. # ------------------------------------------------------------------------------------------------------------
  35. # Get a fixed value within min/max bounds
  36. def geFixedValue(name, value, minimum, maximum):
  37. if isnan(value):
  38. print("Parameter '%s' is NaN! - %f" % (name, value))
  39. return minimum
  40. if value < minimum:
  41. print("Parameter '%s' too low! - %f/%f" % (name, value, minimum))
  42. return minimum
  43. if value > maximum:
  44. print("Parameter '%s' too high! - %f/%f" % (name, value, maximum))
  45. return maximum
  46. return value
  47. # ------------------------------------------------------------------------------------------------------------
  48. # Custom InputDialog with Scale Points support
  49. class CustomInputDialog(QDialog):
  50. def __init__(self, parent, label, current, minimum, maximum, step, stepSmall, scalePoints):
  51. QDialog.__init__(self, parent)
  52. self.ui = ui_inputdialog_value.Ui_Dialog()
  53. self.ui.setupUi(self)
  54. # calculate num decimals from stepSmall
  55. if stepSmall >= 1.0:
  56. decimals = 0
  57. elif step >= 1.0:
  58. decimals = 2
  59. else:
  60. decfrac, decwhole = modf(stepSmall)
  61. if "000" in str(decfrac):
  62. decfrac = round(decfrac, str(decfrac).find("000"))
  63. else:
  64. decfrac = round(decfrac, 12)
  65. decimals = abs(len(str(decfrac))-len(str(decwhole))-1)
  66. self.ui.label.setText(label)
  67. self.ui.doubleSpinBox.setDecimals(decimals)
  68. self.ui.doubleSpinBox.setRange(minimum, maximum)
  69. self.ui.doubleSpinBox.setSingleStep(step)
  70. self.ui.doubleSpinBox.setValue(current)
  71. if not scalePoints:
  72. self.ui.groupBox.setVisible(False)
  73. self.resize(200, 0)
  74. else:
  75. text = "<table>"
  76. for scalePoint in scalePoints:
  77. text += "<tr><td align='right'>%f</td><td align='left'> - %s</td></tr>" % (scalePoint['value'], scalePoint['label'])
  78. text += "</table>"
  79. self.ui.textBrowser.setText(text)
  80. self.resize(200, 300)
  81. self.fRetValue = current
  82. self.accepted.connect(self.slot_setReturnValue)
  83. def returnValue(self):
  84. return self.fRetValue
  85. @pyqtSlot()
  86. def slot_setReturnValue(self):
  87. self.fRetValue = self.ui.doubleSpinBox.value()
  88. def done(self, r):
  89. QDialog.done(self, r)
  90. self.close()
  91. # ------------------------------------------------------------------------------------------------------------
  92. # ProgressBar used for ParamSpinBox
  93. class ParamProgressBar(QProgressBar):
  94. # signals
  95. valueChanged = pyqtSignal(float)
  96. def __init__(self, parent):
  97. QProgressBar.__init__(self, parent)
  98. self.fLeftClickDown = False
  99. self.fIsInteger = False
  100. self.fMinimum = 0.0
  101. self.fMaximum = 1.0
  102. self.fRealValue = 0.0
  103. self.fLabel = ""
  104. self.fName = ""
  105. self.fPreLabel = " "
  106. self.fTextCall = None
  107. self.setFormat("(none)")
  108. # Fake internal value, 10'000 precision
  109. QProgressBar.setMinimum(self, 0)
  110. QProgressBar.setMaximum(self, 10000)
  111. QProgressBar.setValue(self, 0)
  112. def setMinimum(self, value):
  113. self.fMinimum = value
  114. def setMaximum(self, value):
  115. self.fMaximum = value
  116. def setValue(self, value):
  117. self.fRealValue = value
  118. div = float(self.fMaximum - self.fMinimum)
  119. if div == 0.0:
  120. print("Parameter '%s' division by 0 prevented (value:%f, min:%f, max:%f)" % (self.fName, value, self.fMaximum, self.fMinimum))
  121. vper = 1.0
  122. else:
  123. vper = float(value - self.fMinimum) / div
  124. QProgressBar.setValue(self, int(vper * 10000))
  125. def setLabel(self, label):
  126. self.fLabel = label.strip()
  127. if self.fLabel == "(coef)":
  128. self.fLabel = ""
  129. self.fPreLabel = "*"
  130. self.update()
  131. def setName(self, name):
  132. self.fName = name
  133. def setTextCall(self, textCall):
  134. self.fTextCall = textCall
  135. def handleMouseEventPos(self, pos):
  136. xper = float(pos.x()) / float(self.width())
  137. value = xper * (self.fMaximum - self.fMinimum) + self.fMinimum
  138. if value < self.fMinimum:
  139. value = self.fMinimum
  140. elif value > self.fMaximum:
  141. value = self.fMaximum
  142. self.valueChanged.emit(value)
  143. def mousePressEvent(self, event):
  144. if event.button() == Qt.LeftButton:
  145. self.handleMouseEventPos(event.pos())
  146. self.fLeftClickDown = True
  147. else:
  148. self.fLeftClickDown = False
  149. QProgressBar.mousePressEvent(self, event)
  150. def mouseMoveEvent(self, event):
  151. if self.fLeftClickDown:
  152. self.handleMouseEventPos(event.pos())
  153. QProgressBar.mouseMoveEvent(self, event)
  154. def mouseReleaseEvent(self, event):
  155. self.fLeftClickDown = False
  156. QProgressBar.mouseReleaseEvent(self, event)
  157. def paintEvent(self, event):
  158. if self.fTextCall is not None:
  159. self.setFormat("%s %s %s" % (self.fPreLabel, self.fTextCall(), self.fLabel))
  160. elif self.fIsInteger:
  161. self.setFormat("%s %i %s" % (self.fPreLabel, int(self.fRealValue), self.fLabel))
  162. else:
  163. self.setFormat("%s %f %s" % (self.fPreLabel, self.fRealValue, self.fLabel))
  164. QProgressBar.paintEvent(self, event)
  165. # ------------------------------------------------------------------------------------------------------------
  166. # Special SpinBox used for parameters
  167. class ParamSpinBox(QAbstractSpinBox):
  168. # signals
  169. valueChanged = pyqtSignal(float)
  170. def __init__(self, parent):
  171. QAbstractSpinBox.__init__(self, parent)
  172. self.fName = ""
  173. self.fMinimum = 0.0
  174. self.fMaximum = 1.0
  175. self.fDefault = 0.0
  176. self.fValue = None
  177. self.fStep = 0.01
  178. self.fStepSmall = 0.0001
  179. self.fStepLarge = 0.1
  180. self.fIsReadOnly = False
  181. self.fScalePoints = None
  182. self.fUseScalePoints = False
  183. self.fBar = ParamProgressBar(self)
  184. self.fBar.setContextMenuPolicy(Qt.NoContextMenu)
  185. #self.fBar.show()
  186. self.fBox = None
  187. self.lineEdit().hide()
  188. self.customContextMenuRequested.connect(self.slot_showCustomMenu)
  189. self.fBar.valueChanged.connect(self.slot_progressBarValueChanged)
  190. QTimer.singleShot(0, self.slot_updateProgressBarGeometry)
  191. def setDefault(self, value):
  192. value = geFixedValue(self.fName, value, self.fMinimum, self.fMaximum)
  193. self.fDefault = value
  194. def setMinimum(self, value):
  195. self.fMinimum = value
  196. self.fBar.setMinimum(value)
  197. def setMaximum(self, value):
  198. self.fMaximum = value
  199. self.fBar.setMaximum(value)
  200. def setValue(self, value):
  201. value = geFixedValue(self.fName, value, self.fMinimum, self.fMaximum)
  202. if self.fValue == value:
  203. return False
  204. self.fValue = value
  205. self.fBar.setValue(value)
  206. if self.fUseScalePoints:
  207. self._setScalePointValue(value)
  208. self.valueChanged.emit(value)
  209. self.update()
  210. return True
  211. def setStep(self, value):
  212. if value == 0.0:
  213. self.fStep = 0.001
  214. else:
  215. self.fStep = value
  216. if self.fStepSmall > value:
  217. self.fStepSmall = value
  218. if self.fStepLarge < value:
  219. self.fStepLarge = value
  220. self.fBar.fIsInteger = bool(self.fStepSmall == 1.0)
  221. def setStepSmall(self, value):
  222. if value == 0.0:
  223. self.fStepSmall = 0.0001
  224. elif value > self.fStep:
  225. self.fStepSmall = self.fStep
  226. else:
  227. self.fStepSmall = value
  228. self.fBar.fIsInteger = bool(self.fStepSmall == 1.0)
  229. def setStepLarge(self, value):
  230. if value == 0.0:
  231. self.fStepLarge = 0.1
  232. elif value < self.fStep:
  233. self.fStepLarge = self.fStep
  234. else:
  235. self.fStepLarge = value
  236. def setLabel(self, label):
  237. self.fBar.setLabel(label)
  238. def setName(self, name):
  239. self.fName = name
  240. self.fBar.setName(name)
  241. def setTextCallback(self, textCall):
  242. self.fBar.setTextCall(textCall)
  243. def setReadOnly(self, yesNo):
  244. self.fIsReadOnly = yesNo
  245. self.setButtonSymbols(QAbstractSpinBox.UpDownArrows if yesNo else QAbstractSpinBox.NoButtons)
  246. QAbstractSpinBox.setReadOnly(self, yesNo)
  247. # FIXME use change event
  248. def setEnabled(self, yesNo):
  249. self.fBar.setEnabled(yesNo)
  250. QAbstractSpinBox.setEnabled(self, yesNo)
  251. def setScalePoints(self, scalePoints, useScalePoints):
  252. if len(scalePoints) == 0:
  253. self.fScalePoints = None
  254. self.fUseScalePoints = False
  255. return
  256. self.fScalePoints = scalePoints
  257. self.fUseScalePoints = useScalePoints
  258. if not useScalePoints:
  259. return
  260. # Hide ProgressBar and create a ComboBox
  261. self.fBar.close()
  262. self.fBox = QComboBox(self)
  263. self.fBox.setContextMenuPolicy(Qt.NoContextMenu)
  264. #self.fBox.show()
  265. self.slot_updateProgressBarGeometry()
  266. # Add items, sorted
  267. boxItemValues = []
  268. for scalePoint in scalePoints:
  269. value = scalePoint['value']
  270. if self.fStep == 1.0:
  271. label = "%i - %s" % (int(value), scalePoint['label'])
  272. else:
  273. label = "%f - %s" % (value, scalePoint['label'])
  274. if len(boxItemValues) == 0:
  275. self.fBox.addItem(label)
  276. boxItemValues.append(value)
  277. else:
  278. if value < boxItemValues[0]:
  279. self.fBox.insertItem(0, label)
  280. boxItemValues.insert(0, value)
  281. elif value > boxItemValues[-1]:
  282. self.fBox.addItem(label)
  283. boxItemValues.append(value)
  284. else:
  285. for index in range(len(boxItemValues)):
  286. if value >= boxItemValues[index]:
  287. self.fBox.insertItem(index+1, label)
  288. boxItemValues.insert(index+1, value)
  289. break
  290. if self.fValue is not None:
  291. self._setScalePointValue(self.fValue)
  292. self.fBox.currentIndexChanged['QString'].connect(self.slot_comboBoxIndexChanged)
  293. def stepBy(self, steps):
  294. if steps == 0 or self.fValue is None:
  295. return
  296. value = self.fValue + (self.fStep * steps)
  297. if value < self.fMinimum:
  298. value = self.fMinimum
  299. elif value > self.fMaximum:
  300. value = self.fMaximum
  301. self.setValue(value)
  302. def stepEnabled(self):
  303. if self.fIsReadOnly or self.fValue is None:
  304. return QAbstractSpinBox.StepNone
  305. if self.fValue <= self.fMinimum:
  306. return QAbstractSpinBox.StepUpEnabled
  307. if self.fValue >= self.fMaximum:
  308. return QAbstractSpinBox.StepDownEnabled
  309. return (QAbstractSpinBox.StepUpEnabled | QAbstractSpinBox.StepDownEnabled)
  310. def updateAll(self):
  311. self.update()
  312. self.fBar.update()
  313. if self.fBox is not None:
  314. self.fBox.update()
  315. def resizeEvent(self, event):
  316. QAbstractSpinBox.resizeEvent(self, event)
  317. self.slot_updateProgressBarGeometry()
  318. @pyqtSlot(str)
  319. def slot_comboBoxIndexChanged(self, boxText):
  320. if self.fIsReadOnly:
  321. return
  322. value = float(boxText.split(" - ", 1)[0])
  323. lastScaleValue = self.fScalePoints[-1]['value']
  324. if value == lastScaleValue:
  325. value = self.fMaximum
  326. self.setValue(value)
  327. @pyqtSlot(float)
  328. def slot_progressBarValueChanged(self, value):
  329. if self.fIsReadOnly:
  330. return
  331. if value <= self.fMinimum:
  332. realValue = self.fMinimum
  333. elif value >= self.fMaximum:
  334. realValue = self.fMaximum
  335. else:
  336. curStep = int((value - self.fMinimum) / self.fStep + 0.5)
  337. realValue = self.fMinimum + (self.fStep * curStep)
  338. if realValue < self.fMinimum:
  339. realValue = self.fMinimum
  340. elif realValue > self.fMaximum:
  341. realValue = self.fMaximum
  342. self.setValue(realValue)
  343. @pyqtSlot()
  344. def slot_showCustomMenu(self):
  345. clipboard = QApplication.instance().clipboard()
  346. pasteText = clipboard.text()
  347. pasteValue = None
  348. if pasteText:
  349. try:
  350. pasteValue = float(pasteText)
  351. except:
  352. pass
  353. menu = QMenu(self)
  354. actReset = menu.addAction(self.tr("Reset (%f)" % self.fDefault))
  355. actRandom = menu.addAction(self.tr("Random"))
  356. menu.addSeparator()
  357. actCopy = menu.addAction(self.tr("Copy (%f)" % self.fValue))
  358. if pasteValue is None:
  359. actPaste = menu.addAction(self.tr("Paste"))
  360. actPaste.setEnabled(False)
  361. else:
  362. actPaste = menu.addAction(self.tr("Paste (%f)" % pasteValue))
  363. menu.addSeparator()
  364. actSet = menu.addAction(self.tr("Set value..."))
  365. if self.fIsReadOnly:
  366. actReset.setEnabled(False)
  367. actRandom.setEnabled(False)
  368. actPaste.setEnabled(False)
  369. actSet.setEnabled(False)
  370. actSel = menu.exec_(QCursor.pos())
  371. if actSel == actReset:
  372. self.setValue(self.fDefault)
  373. elif actSel == actRandom:
  374. value = random() * (self.fMaximum - self.fMinimum) + self.fMinimum
  375. self.setValue(value)
  376. elif actSel == actCopy:
  377. clipboard.setText("%f" % self.fValue)
  378. elif actSel == actPaste:
  379. self.setValue(pasteValue)
  380. elif actSel == actSet:
  381. dialog = CustomInputDialog(self, self.fName, self.fValue, self.fMinimum, self.fMaximum,
  382. self.fStep, self.fStepSmall, self.fScalePoints)
  383. if dialog.exec_():
  384. value = dialog.returnValue()
  385. self.setValue(value)
  386. @pyqtSlot()
  387. def slot_updateProgressBarGeometry(self):
  388. self.fBar.setGeometry(self.lineEdit().geometry())
  389. if self.fUseScalePoints:
  390. self.fBox.setGeometry(self.lineEdit().geometry())
  391. def _getNearestScalePoint(self, realValue):
  392. finalValue = 0.0
  393. for i in range(len(self.fScalePoints)):
  394. scaleValue = self.fScalePoints[i]["value"]
  395. if i == 0:
  396. finalValue = scaleValue
  397. else:
  398. srange1 = abs(realValue - scaleValue)
  399. srange2 = abs(realValue - finalValue)
  400. if srange2 > srange1:
  401. finalValue = scaleValue
  402. return finalValue
  403. def _setScalePointValue(self, value):
  404. value = self._getNearestScalePoint(value)
  405. for i in range(self.fBox.count()):
  406. if float(self.fBox.itemText(i).split(" - ", 1)[0]) == value:
  407. self.fBox.setCurrentIndex(i)
  408. break