An object of this class maintains a connection between a Button and a plug-in parameter. More...
#include <juce_ParameterAttachments.h>
Public Member Functions | |
ButtonParameterAttachment (RangedAudioParameter ¶meter, Button &button, UndoManager *undoManager=nullptr) | |
Creates a connection between a plug-in parameter and a Button. More... | |
~ButtonParameterAttachment () override | |
Destructor. More... | |
void | sendInitialUpdate () |
Call this after setting up your button in the case where you need to do extra setup after constructing this attachment. More... | |
Private Member Functions | |
void | buttonClicked (Button *) override |
Called when the button is clicked. More... | |
virtual void | buttonStateChanged (Button *) |
Called when the button's state changes. More... | |
void | setValue (float newValue) |
Private Attributes | |
ParameterAttachment | attachment |
Button & | button |
bool | ignoreCallbacks = false |
An object of this class maintains a connection between a Button and a plug-in parameter.
During the lifetime of this object it keeps the two things in sync, making it easy to connect a button to a parameter. When this object is deleted, the connection is broken. Make sure that your parameter and Button are not deleted before this object!
@tags{Audio}
juce::ButtonParameterAttachment::ButtonParameterAttachment | ( | RangedAudioParameter & | parameter, |
Button & | button, | ||
UndoManager * | undoManager = nullptr |
||
) |
Creates a connection between a plug-in parameter and a Button.
parameter | The parameter to use |
button | The Button to use |
undoManager | An optional UndoManager |
|
override |
Destructor.
|
overrideprivatevirtual |
Called when the button is clicked.
Implements juce::Button::Listener.
|
inlinevirtualinherited |
Called when the button's state changes.
void juce::ButtonParameterAttachment::sendInitialUpdate | ( | ) |
Call this after setting up your button in the case where you need to do extra setup after constructing this attachment.
|
private |
|
private |
|
private |
|
private |