AAX SDK  2.1.1
Avid Audio Extensions Development Kit
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
AAX_IACFViewContainer.h
Go to the documentation of this file.
1 /*================================================================================================*/
2 /*
3  *
4  * Copyright 2013 by Avid Technology, Inc.
5  * All rights reserved.
6  *
7  * CONFIDENTIAL: This document contains confidential information. Do not
8  * read or examine this document unless you are an Avid Technology employee
9  * or have signed a non-disclosure agreement with Avid Technology which protects
10  * the confidentiality of this document. DO NOT DISCLOSE ANY INFORMATION
11  * CONTAINED IN THIS DOCUMENT TO ANY THIRD-PARTY WITHOUT THE PRIOR WRITTEN CONSENT
12  * OF Avid Technolgy, INC.
13  *
14  */
15 
23 /*================================================================================================*/
24 
25 
26 #ifndef _AAX_IACFVIEWCONTAINER_H_
27 #define _AAX_IACFVIEWCONTAINER_H_
28 
29 #include "AAX_GUITypes.h"
30 #include "AAX.h"
31 
32 #ifdef __clang__
33 #pragma clang diagnostic push
34 #pragma clang diagnostic ignored "-Wnon-virtual-dtor"
35 #endif
36 
37 #include "acfunknown.h"
38 
46 {
47 public:
51  virtual int32_t GetType () = 0;
52  virtual void * GetPtr () = 0;
53  virtual AAX_Result GetModifiers ( uint32_t * oModifiers ) = 0;
54 
55 
59  virtual AAX_Result SetViewSize ( AAX_Point & iSize ) = 0;
60 
61 
65  virtual AAX_Result HandleParameterMouseDown ( AAX_CParamID iParamID, uint32_t iModifiers ) = 0;
66  virtual AAX_Result HandleParameterMouseDrag ( AAX_CParamID iParamID, uint32_t iModifiers ) = 0;
67  virtual AAX_Result HandleParameterMouseUp ( AAX_CParamID iParamID, uint32_t iModifiers ) = 0;
68 
69 };
70 
71 #ifdef __clang__
72 #pragma clang diagnostic pop
73 #endif
74 
75 #endif
virtual AAX_Result HandleParameterMouseDrag(AAX_CParamID iParamID, uint32_t iModifiers)=0
Alert the host to a mouse drag event.
Various utility definitions for AAX.
Data structure representing a two-dimensional coordinate point.
Definition: AAX_GUITypes.h:35
virtual void * GetPtr()=0
Returns a pointer to the raw view.
Interface for the AAX host's view of a single instance of an effect. Used by both clients of the host...
Definition: AAX_IACFViewContainer.h:45
Constants and other definitions used by AAX plug-in GUIs.
COM compatible IUnknown C++ interface.
Definition: AAX_ACFInterface.dox:231
int32_t AAX_Result
Definition: AAX.h:118
virtual AAX_Result GetModifiers(uint32_t *oModifiers)=0
Queries the host for the current modifier keys.
virtual AAX_Result HandleParameterMouseUp(AAX_CParamID iParamID, uint32_t iModifiers)=0
Alert the host to a mouse up event.
virtual AAX_Result SetViewSize(AAX_Point &iSize)=0
Request a change to the main view size.
const char * AAX_CParamID
Parameter identifier.
Definition: AAX.h:128
virtual int32_t GetType()=0
Returns the raw view type as one of AAX_EViewContainer_Type.
virtual AAX_Result HandleParameterMouseDown(AAX_CParamID iParamID, uint32_t iModifiers)=0
Alert the host to a mouse down event.