AAX SDK  2.4.1
Avid Audio Extensions Development Kit
List of all members | Public Member Functions
AAX_IDisplayDelegate< T > Class Template Referenceabstract

#include <AAX_IDisplayDelegate.h>

Inheritance diagram for AAX_IDisplayDelegate< T >:
[legend]
Collaboration diagram for AAX_IDisplayDelegate< T >:
[legend]

Description

template<typename T>
class AAX_IDisplayDelegate< T >

Classes for parameter value string conversion.

Display delegate interface template

Display delegates are used to convert real parameter values to and from their formatted string representations. All display delegates implement the AAX_IDisplayDelegate interface, which contains two conversion functions:

virtual bool ValueToString(T value, std::string& valueString) const = 0;
virtual bool StringToValue(const std::string& valueString, T& value) const = 0;
virtual bool ValueToString(T value, AAX_CString *valueString) const =0
Converts a real parameter value to a string representation.
virtual bool StringToValue(const AAX_CString &valueString, T *value) const =0
Converts a string to a real parameter value.

Display delegate decorators

The AAX SDK utilizes a decorator pattern in order to provide code re-use while accounting for a wide variety of possible parameter display formats. The SDK includes a number of sample display delegate decorator classes.

Each concrete display delegate decorator implements AAX_IDisplayDelegateDecorator and adheres to the decorator pattern. The decorator pattern allows multiple display behaviors to be composited or wrapped together at run time. For instance it is possible to implement a dBV (dB Volts) decorator, by wrapping an AAX_CDecibelDisplayDelegateDecorator with an AAX_CUnitDisplayDelegateDecorator.

Display delegate decorator implementation

By implementing AAX_IDisplayDelegateDecorator, each concrete display delegate decorator class implements the full AAX_IDisplayDelegate interface. In addition, it retains a pointer to the AAX_IDisplayDelegateDecorator that it wraps. When the decorator performs a conversion, it calls into its wrapped class so that the wrapped decorator may apply its own conversion formatting. By repeating this pattern in each decorator, all of the decorator subclasses call into their "wrapper" in turn, resulting in a final string to which all of the decorators' conversions have been applied in sequence.

Here is the relevant implementation from AAX_IDisplayDelegateDecorator :

template <typename T>
mWrappedDisplayDelegate(displayDelegate.Clone())
{
}
template <typename T>
{
return mWrappedDisplayDelegate->ValueToString(value, valueString);
}
template <typename T>
bool AAX_IDisplayDelegateDecorator<T>::StringToValue(const AAX_CString& valueString, T* value) const
{
return mWrappedDisplayDelegate->StringToValue(valueString, value);
}
A generic AAX string class with similar functionality to std::string
Definition: AAX_CString.h:46
Classes for parameter value string conversion.
Definition: AAX_IDisplayDelegate.h:69
virtual AAX_IDisplayDelegate * Clone() const =0
Constructs and returns a copy of the display delegate.
The base class for all concrete display delegate decorators.
Definition: AAX_IDisplayDelegateDecorator.h:44
bool StringToValue(const AAX_CString &valueString, T *value) const AAX_OVERRIDE
Converts a string to a real parameter value.
Definition: AAX_IDisplayDelegateDecorator.h:197
bool ValueToString(T value, AAX_CString *valueString) const AAX_OVERRIDE
Converts a string to a real parameter value.
Definition: AAX_IDisplayDelegateDecorator.h:185

Decibel decorator example

Here is a concrete example of how a decibel decorator might be implemented

template <typename T>
{
if (value <= 0)
{
*valueString = AAX_CString("--- dB");
return true;
}
value = 20*log10(value);
bool succeeded = AAX_IDisplayDelegateDecorator<T>::ValueToString(value, valueString);
*valueString += AAX_CString("dB");
return succeeded;
}
bool ValueToString(T value, AAX_CString *valueString) const AAX_OVERRIDE
Converts a real parameter value to a string representation.
Definition: AAX_CDecibelDisplayDelegateDecorator.h:87

Notice in this example that the ValueToString() method is called in the parent class, AAX_IDisplayDelegateDecorator. This results in a call into the wrapped class' implementation of ValueToString(), which converts the decorated value to a redecorated string, and so forth for additional decorators.

Public Member Functions

virtual AAX_IDisplayDelegateClone () const =0
 Constructs and returns a copy of the display delegate. More...
 
virtual bool ValueToString (T value, AAX_CString *valueString) const =0
 Converts a real parameter value to a string representation. More...
 
virtual bool ValueToString (T value, int32_t maxNumChars, AAX_CString *valueString) const =0
 Converts a real parameter value to a string representation using a size hint, useful for control surfaces and other character limited displays. More...
 
virtual bool StringToValue (const AAX_CString &valueString, T *value) const =0
 Converts a string to a real parameter value. More...
 
- Public Member Functions inherited from AAX_IDisplayDelegateBase
virtual ~AAX_IDisplayDelegateBase ()
 Virtual destructor. More...
 

Member Function Documentation

◆ Clone()

template<typename T >
virtual AAX_IDisplayDelegate* AAX_IDisplayDelegate< T >::Clone ( ) const
pure virtual

Constructs and returns a copy of the display delegate.

In general, this method's implementation can use a simple copy constructor:

template <typename T>
AAX_CSubclassDisplayDelegate<T>* AAX_CSubclassDisplayDelegate<T>::Clone() const
{
return new AAX_CSubclassDisplayDelegate(*this);
}

Implemented in AAX_IDisplayDelegateDecorator< T >, AAX_CUnitPrefixDisplayDelegateDecorator< T >, AAX_CUnitDisplayDelegateDecorator< T >, AAX_CStringDisplayDelegate< T >, AAX_CStateDisplayDelegate< T >, AAX_CPercentDisplayDelegateDecorator< T >, AAX_CNumberDisplayDelegate< T, Precision, SpaceAfter >, AAX_CDecibelDisplayDelegateDecorator< T >, and AAX_CBinaryDisplayDelegate< T >.

Referenced by AAX_CParameter< T >::SetDisplayDelegate().

Here is the caller graph for this function:

◆ ValueToString() [1/2]

template<typename T >
virtual bool AAX_IDisplayDelegate< T >::ValueToString ( value,
AAX_CString valueString 
) const
pure virtual

Converts a real parameter value to a string representation.

Parameters
[in]valueThe real parameter value that will be converted
[out]valueStringA string corresponding to value
Return values
trueThe string conversion was successful
falseThe string conversion was unsuccessful

Implemented in AAX_IDisplayDelegateDecorator< T >, AAX_CUnitPrefixDisplayDelegateDecorator< T >, AAX_CUnitDisplayDelegateDecorator< T >, AAX_CStringDisplayDelegate< T >, AAX_CStateDisplayDelegate< T >, AAX_CPercentDisplayDelegateDecorator< T >, AAX_CNumberDisplayDelegate< T, Precision, SpaceAfter >, AAX_CDecibelDisplayDelegateDecorator< T >, and AAX_CBinaryDisplayDelegate< T >.

◆ ValueToString() [2/2]

template<typename T >
virtual bool AAX_IDisplayDelegate< T >::ValueToString ( value,
int32_t  maxNumChars,
AAX_CString valueString 
) const
pure virtual

Converts a real parameter value to a string representation using a size hint, useful for control surfaces and other character limited displays.

Parameters
[in]valueThe real parameter value that will be converted
[in]maxNumCharsSize hint for the desired maximum number of characters in the string (not including null termination)
[out]valueStringA string corresponding to value
Return values
trueThe string conversion was successful
falseThe string conversion was unsuccessful

Implemented in AAX_IDisplayDelegateDecorator< T >, AAX_CUnitPrefixDisplayDelegateDecorator< T >, AAX_CUnitDisplayDelegateDecorator< T >, AAX_CStringDisplayDelegate< T >, AAX_CStateDisplayDelegate< T >, AAX_CPercentDisplayDelegateDecorator< T >, AAX_CNumberDisplayDelegate< T, Precision, SpaceAfter >, AAX_CDecibelDisplayDelegateDecorator< T >, and AAX_CBinaryDisplayDelegate< T >.

◆ StringToValue()

template<typename T >
virtual bool AAX_IDisplayDelegate< T >::StringToValue ( const AAX_CString valueString,
T *  value 
) const
pure virtual

Converts a string to a real parameter value.

Parameters
[in]valueStringThe string that will be converted
[out]valueThe real parameter value corresponding to valueString
Return values
trueThe string conversion was successful
falseThe string conversion was unsuccessful

Implemented in AAX_IDisplayDelegateDecorator< T >, AAX_CUnitPrefixDisplayDelegateDecorator< T >, AAX_CUnitDisplayDelegateDecorator< T >, AAX_CStringDisplayDelegate< T >, AAX_CStateDisplayDelegate< T >, AAX_CPercentDisplayDelegateDecorator< T >, AAX_CNumberDisplayDelegate< T, Precision, SpaceAfter >, AAX_CDecibelDisplayDelegateDecorator< T >, and AAX_CBinaryDisplayDelegate< T >.


The documentation for this class was generated from the following file: