#include <AAX_IACFAutomationDelegate.h>
Versioned interface allowing an AAX plug-in to interact with the host's automation system.
- See also
- Parameter updates
-
AAX_IAutomationDelegate
◆ RegisterParameter()
Register a control with the automation system using a char* based control identifier
The automation delegate owns a list of the IDs of all of the parameters that have been registered with it. This list is used to set up listeners for all of the registered parameters such that the automation delegate may update the plug-in when the state of any of the registered parameters have been modified.
- See also
- AAX_IAutomationDelegate::UnregisterParameter()
- Parameters
-
[in] | iParameterID | Parameter ID that is being registered |
◆ UnregisterParameter()
Unregister a control with the automation system using a char* based control identifier
- Note
- All registered controls should be unregistered or the system might leak.
- See also
- AAX_IAutomationDelegate::RegisterParameter()
- Parameters
-
[in] | iParameterID | Parameter ID that is being registered |
◆ PostSetValueRequest()
virtual AAX_Result AAX_IACFAutomationDelegate::PostSetValueRequest |
( |
AAX_CParamID |
iParameterID, |
|
|
double |
normalizedValue |
|
) |
| const |
|
pure virtual |
Submits a request for the given parameter's value to be changed
- Parameters
-
[in] | iParameterID | ID of the parameter for which a change is requested |
[in] | normalizedValue | The requested new parameter value, formatted as a double and normalized to [0 1] |
◆ PostCurrentValue()
virtual AAX_Result AAX_IACFAutomationDelegate::PostCurrentValue |
( |
AAX_CParamID |
iParameterID, |
|
|
double |
normalizedValue |
|
) |
| const |
|
pure virtual |
Notifies listeners that a parameter's value has changed
- Parameters
-
[in] | iParameterID | ID of the parameter that has been updated |
[in] | normalizedValue | The current parameter value, formatted as a double and normalized to [0 1] |
◆ PostTouchRequest()
Requests that the given parameter be "touched", i.e. locked for updates by the current client
- Parameters
-
[in] | iParameterID | ID of the parameter that will be touched |
◆ PostReleaseRequest()
Requests that the given parameter be "released", i.e. available for updates from any client
- Parameters
-
[in] | iParameterID | ID of the parameter that will be released |
◆ GetTouchState()
Gets the current touched state of a parameter
- Parameters
-
[in] | iParameterID | ID of the parameter that is being queried |
[out] | oTouched | The current touch state of the parameter |
The documentation for this class was generated from the following file: