Loading...
Searching...
No Matches
WebComboBoxRelay Class Reference

Helper class that relays audio parameter information to an object inside a WebBrowserComponent. More...

#include <juce_WebControlRelays.h>

Inheritance diagram for WebComboBoxRelay:

Classes

struct  Listener
 

Public Member Functions

 WebComboBoxRelay (StringRef nameIn)
 Creating a relay will ensure that a Javascript object under the provided name will be available in the specified WebBrowserComponent's context.
 
void setValue (float newValue)
 
void addListener (Listener *l)
 
void removeListener (Listener *l)
 
WebBrowserComponent::Options buildOptions (const WebBrowserComponent::Options &initialOptions) override
 
void emitEvent (const var &payload)
 
- Public Member Functions inherited from OptionsBuilder< WebBrowserComponent::Options >
virtual ~OptionsBuilder ()=default
 
WebBrowserComponent::Options buildOptions ()
 

Detailed Description

Helper class that relays audio parameter information to an object inside a WebBrowserComponent.

In order to create a relay you need to specify a WebBrowserComponent object and an identifier for the relayed state. This will result in a Javascript object becoming available inside the WebBrowserComponent under the provided identifier.

You can then use a WebComboBoxParameterAttachment as you would a ComboBoxParameterAttachment, to attach the relay to a RangedAudioParameter. This will synchronise the state and events of the Javascript object with the audio parameter at all times.

// Add a relay to your AudioProcessorEditor members
WebComboBoxRelay filterTypeComboRelay { webComponent, "filterTypeCombo" };
Helper class that relays audio parameter information to an object inside a WebBrowserComponent.
Definition juce_WebControlRelays.h:218
// In your Javascript GUI code you obtain an object from the framework
import * as Juce from "juce-framework-frontend";
const comboBoxState = Juce.getComboBoxState("filterTypeCombo");
See also
WebComboBoxParameterAttachment

Constructor & Destructor Documentation

◆ WebComboBoxRelay()

WebComboBoxRelay::WebComboBoxRelay ( StringRef nameIn)

Creating a relay will ensure that a Javascript object under the provided name will be available in the specified WebBrowserComponent's context.

Use the frontend framework's getComboBoxState function with the same name to get a hold of this object.

Member Function Documentation

◆ setValue()

void WebComboBoxRelay::setValue ( float newValue)

◆ addListener()

void WebComboBoxRelay::addListener ( Listener * l)

◆ removeListener()

void WebComboBoxRelay::removeListener ( Listener * l)

◆ buildOptions()

WebBrowserComponent::Options WebComboBoxRelay::buildOptions ( const WebBrowserComponent::Options & initialOptions)
overridevirtual

◆ emitEvent()

void WebComboBoxRelay::emitEvent ( const var & payload)

The documentation for this class was generated from the following file:
linkedin facebook pinterest youtube rss twitter instagram facebook-blank rss-blank linkedin-blank pinterest youtube twitter instagram