| 8624 | } |
| 8625 | |
| 8626 | void ScriptingObjects::ScriptedMacroHandler::setUpdateCallback(var callback) |
| 8627 | { |
| 8628 | if (HiseJavascriptEngine::isJavascriptFunction(callback)) |
| 8629 | { |
| 8630 | updateCallback = WeakCallbackHolder(getScriptProcessor(), this, callback, 1); |
| 8631 | updateCallback.incRefCount(); |
| 8632 | updateCallback.addAsSource(this, "onMacroConnectionUpdate"); |
| 8633 | updateCallback.setThisObject(this); |
| 8634 | |
| 8635 | sendUpdateMessage(sendNotificationSync); |
| 8636 | } |
| 8637 | } |
| 8638 | |
| 8639 | void ScriptingObjects::ScriptedMacroHandler::setExclusiveMode(bool shouldBeExclusive) |
| 8640 | { |
nothing calls this directly
no test coverage detected