◆ ConnectionRemoved()
virtual void AudioControls::IAudioSystemEditor::ConnectionRemoved |
( |
IAudioSystemControl * |
middlewareControl | ) |
|
|
inlinevirtual |
Whenever a connection is removed from an ATL control this function should be called. To keep the system informed of which controls have been connected and which ones haven't.
- Parameters
-
middlewareControl | Middleware control that was disconnected. |
◆ CreateConnectionFromXMLNode()
virtual TConnectionPtr AudioControls::IAudioSystemEditor::CreateConnectionFromXMLNode |
( |
AZ::rapidxml::xml_node< char > * |
node, |
|
|
EACEControlType |
atlControlType |
|
) |
| |
|
pure virtual |
Creates and returns a connection defined in an XML node. The format of the XML node should be in sync with the WriteConnectionToXMLNode function which is in charge of writing the node during serialization. If the XML node is unknown to the system NULL should be returned. If the middleware control referenced in the XML node does not exist it should be created and marked as "placeholder".
- Parameters
-
node | XML node where the connection is defined. |
atlControlType | The type of the ATL control you are connecting to. |
- Returns
- A pointer to the newly created connection.
◆ CreateConnectionPropertiesWidget()
virtual QWidget * AudioControls::IAudioSystemEditor::CreateConnectionPropertiesWidget |
( |
const TConnectionPtr |
connection, |
|
|
EACEControlType |
atlControlType |
|
) |
| |
|
inlinevirtual |
Creates a widget for modifying connection properties. The widget must have a "PropertiesChanged()" signal. The widget ownership transferred to the caller.
◆ CreateConnectionToControl()
virtual TConnectionPtr AudioControls::IAudioSystemEditor::CreateConnectionToControl |
( |
EACEControlType |
atlControlType, |
|
|
IAudioSystemControl * |
middlewareControl |
|
) |
| |
|
pure virtual |
Creates and returns a connection to a middleware control. The connection object is owned by this class.
- Parameters
-
atlControlType | The type of the ATL control you are connecting to pMiddlewareControl. |
middlewareControl | Middleware control for which to make the connection. |
- Returns
- A pointer to the newly created connection
◆ CreateControl()
Creates a new middleware control given the specifications passed in as a parameter. The control is owned by this class.
- Parameters
-
controlDefinition | Values to use to initialize the new control. |
- Returns
- A pointer to the newly created control.
◆ CreateXMLNodeFromConnection()
virtual AZ::rapidxml::xml_node< char > * AudioControls::IAudioSystemEditor::CreateXMLNodeFromConnection |
( |
const TConnectionPtr |
connection, |
|
|
const EACEControlType |
atlControlType |
|
) |
| |
|
pure virtual |
When serializing connections between controls this function will be called once per connection to serialize its properties. This function should be in sync with CreateConnectionToControl as whatever it's written here will have to be read there.
- Parameters
-
connection | Connection to serialize. |
atlControlType | Type of the ATL control that has this connection. |
- Returns
- XML node with the connection serialized.
◆ GetCompatibleTypes()
virtual TImplControlTypeMask AudioControls::IAudioSystemEditor::GetCompatibleTypes |
( |
EACEControlType |
atlControlType | ) |
const |
|
pure virtual |
Given an ATL control type this function returns all the middleware control types that can be connected to it.
- Parameters
-
atlControlType | An ATL control type. |
- Returns
- A mask representing all the middleware control types that can be connected to the ATL control type passed as argument.
◆ GetControl()
Gets the middleware control given its unique id.
- Parameters
-
id | Unique ID of the control. |
- Returns
- A pointer to the control that corresponds to the passed id. If none is found nullptr is returned.
◆ GetDataPath()
virtual AZ::IO::FixedMaxPath AudioControls::IAudioSystemEditor::GetDataPath |
( |
| ) |
const |
|
pure virtual |
Gets the folder where the implementation specific controls data are stored. This is used by the ACE to update if controls are changed while the editor is open.
- Returns
- String with the path to the folder where the implementation specific controls are stored.
◆ GetName()
virtual AZStd::string AudioControls::IAudioSystemEditor::GetName |
( |
| ) |
const |
|
pure virtual |
Gets the name of the implementation which might be used in the ACE UI.
- Returns
- String with the name of the implementation.
◆ GetRoot()
This function returns the root of the tree to allow for traversing the tree manually. Middleware controls are organized in a tree structure.
- Returns
- A pointer to the root of the control tree.
◆ GetTypeIcon()
virtual const AZStd::string_view AudioControls::IAudioSystemEditor::GetTypeIcon |
( |
TImplControlType |
type | ) |
const |
|
pure virtual |
Returns the icon corresponding to the middleware control type passed as argument.
- Parameters
-
type | Middleware control type. |
- Returns
- A string with the path to the icon corresponding to the control type.
◆ GetTypeIconSelected()
virtual const AZStd::string_view AudioControls::IAudioSystemEditor::GetTypeIconSelected |
( |
TImplControlType |
type | ) |
const |
|
pure virtual |
Returns the selected state icon corresponding to the middleware control type passed as argument.
- Parameters
-
type | Middleware control type. |
- Returns
- A string with the path to the icon corresponding to the control type.
◆ ImplTypeToATLType()
virtual EACEControlType AudioControls::IAudioSystemEditor::ImplTypeToATLType |
( |
TImplControlType |
type | ) |
const |
|
pure virtual |
Convert a middleware control type to an ATL control type.
- Parameters
-
type | Middleware control type |
- Returns
- An ATL control type that corresponds to the middleware control type passed as argument.
The documentation for this class was generated from the following file:
- Gems/AudioSystem/Code/Include/Editor/IAudioSystemEditor.h