AAX SDK 2.6.1
Avid Audio Extensions Development Kit
Loading...
Searching...
No Matches
AAX_VAutomationDelegate.h
Go to the documentation of this file.
1/*================================================================================================*/
2/*
3 *
4 * Copyright 2014-2017, 2019, 2023 Avid Technology, Inc.
5 * All rights reserved.
6 *
7 * CONFIDENTIAL: this document contains confidential information of Avid. Do
8 * not disclose to any third party. Use of the information contained in this
9 * document is subject to an Avid SDK license.
10 *
11 */
12
19/*================================================================================================*/
20
21#ifndef AAX_VAUTOMATIONDELEGATE_H
22#define AAX_VAUTOMATIONDELEGATE_H
23
26#include "ACFPtr.h"
27
30class IACFUnknown;
31
37{
38public:
41
42 IACFUnknown* GetUnknown() const { return mIAutomationDelegate; }
43
46 AAX_Result PostSetValueRequest ( AAX_CParamID iParameterID, double iNormalizedValue ) const AAX_OVERRIDE;
47 AAX_Result PostCurrentValue ( AAX_CParamID iParameterID, double iNormalizedValue ) const AAX_OVERRIDE;
52
53private:
54 ACFPtr<AAX_IACFAutomationDelegate> mIAutomationDelegate;
55 ACFPtr<AAX_IACFController_V2> mIController;
56};
57
58
59
60#endif //AAX_IAUTOMATIONDELEGATE_H
Interface allowing an AAX plug-in to interact with the host's automation system.
const char * AAX_CParamID
Parameter identifier.
Definition: AAX.h:349
int32_t AAX_Result
Definition: AAX.h:334
uint8_t AAX_CBoolean
Cross-compiler boolean type used by AAX interfaces.
Definition: AAX.h:326
#define AAX_OVERRIDE
override keyword macro
Definition: AAX.h:151
Versioned interface allowing an AAX plug-in to interact with the host's automation system.
COM compatible IUnknown C++ interface.
Definition: AAX_ACFInterface.doxygen:252
Versioned interface allowing an AAX plug-in to interact with the host's automation system.
Definition: AAX_IACFAutomationDelegate.h:41
Interface for the AAX host's view of a single instance of an effect. Used by both clients of the AAXH...
Definition: AAX_IACFController.h:167
Interface allowing an AAX plug-in to interact with the host's event system.
Definition: AAX_IAutomationDelegate.h:44
Version-managed concrete automation delegate class.
Definition: AAX_VAutomationDelegate.h:37
~AAX_VAutomationDelegate() AAX_OVERRIDE
IACFUnknown * GetUnknown() const
Definition: AAX_VAutomationDelegate.h:42
AAX_Result PostReleaseRequest(AAX_CParamID iParameterID) AAX_OVERRIDE
AAX_Result PostTouchRequest(AAX_CParamID iParameterID) AAX_OVERRIDE
AAX_Result UnregisterParameter(AAX_CParamID iParameterID) AAX_OVERRIDE
AAX_Result PostCurrentValue(AAX_CParamID iParameterID, double iNormalizedValue) const AAX_OVERRIDE
AAX_Result GetTouchState(AAX_CParamID iParameterID, AAX_CBoolean *outTouched) AAX_OVERRIDE
AAX_VAutomationDelegate(IACFUnknown *pUnknown)
AAX_Result RegisterParameter(AAX_CParamID iParameterID) AAX_OVERRIDE
AAX_Result PostSetValueRequest(AAX_CParamID iParameterID, double iNormalizedValue) const AAX_OVERRIDE
AAX_Result ParameterNameChanged(AAX_CParamID iParameterID) AAX_OVERRIDE