List of Platform UI types for IPlugView. More...
|
Variables | |
| const FIDString | kPlatformTypeHWND = "HWND" |
| The parent parameter in IPlugView::attached() is a HWND handle. | |
| const FIDString | kPlatformTypeHIView = "HIView" |
| The parent parameter in IPlugView::attached() is a WindowRef. | |
| const FIDString | kPlatformTypeNSView = "NSView" |
| The parent parameter in IPlugView::attached() is a NSView pointer. | |
| const FIDString | kPlatformTypeUIView = "UIView" |
| The parent parameter in IPlugView::attached() is a UIView pointer. | |
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)