|
Interface Technology Basics
VST 3.6.6
SDK for developing VST Plug-in
|
List of Platform UI types for IPlugView. More...
Collaboration diagram for Platform UI Types:Variables | |
| const FIDString | kPlatformTypeHWND = "HWND" |
| The parent parameter in IPlugView::attached() is a HWND handle. More... | |
| const FIDString | kPlatformTypeHIView = "HIView" |
| The parent parameter in IPlugView::attached() is a WindowRef. More... | |
| const FIDString | kPlatformTypeNSView = "NSView" |
| The parent parameter in IPlugView::attached() is a NSView pointer. More... | |
| const FIDString | kPlatformTypeUIView = "UIView" |
| The parent parameter in IPlugView::attached() is a UIView pointer. More... | |
List of Platform UI types for IPlugView.
This list is used to match the GUI-System between the host and a Plug-in in case that an OS provides multiple GUI-APIs.
| const FIDString kPlatformTypeHWND = "HWND" |
The parent parameter in IPlugView::attached() is a HWND handle.
You should attach a child window to it. HWND handle. (Microsoft Windows)
| const FIDString kPlatformTypeHIView = "HIView" |
The parent parameter in IPlugView::attached() is a WindowRef.
You should attach a HIViewRef to the content view of the window. HIViewRef. (Mac OS X)
| const FIDString kPlatformTypeNSView = "NSView" |
The parent parameter in IPlugView::attached() is a NSView pointer.
You should attach a NSView to it. NSView pointer. (Mac OS X)
| const FIDString kPlatformTypeUIView = "UIView" |
The parent parameter in IPlugView::attached() is a UIView pointer.
You should attach an UIView to it. UIView pointer. (iOS)