VST 3 Interfaces VST 3.7
SDK for developing VST plug-in
|
Context Menu interface: Vst::IContextMenu. More...
#include <ivstcontextmenu.h>
Public Types | |
typedef IContextMenuItem | Item |
Public Member Functions | |
virtual int32 | getItemCount ()=0 |
Gets the number of menu items. More... | |
virtual tresult | getItem (int32 index, Item &item, IContextMenuTarget **target)=0 |
Gets a menu item and its target (target could be not assigned). More... | |
virtual tresult | addItem (const Item &item, IContextMenuTarget *target)=0 |
Adds a menu item and its target. More... | |
virtual tresult | removeItem (const Item &item, IContextMenuTarget *target)=0 |
Removes a menu item. More... | |
virtual tresult | popup (UCoord x, UCoord y)=0 |
Pop-ups the menu. More... | |
Public Member Functions inherited from FUnknown | |
virtual tresult | queryInterface (const TUID _iid, void **obj)=0 |
virtual uint32 | addRef ()=0 |
virtual uint32 | release ()=0 |
Static Public Attributes | |
static const FUID | iid |
Static Public Attributes inherited from FUnknown | |
static const FUID | iid |
Context Menu interface: Vst::IContextMenu.
A context menu is composed of Item (entry). A Item is defined by a name, a tag, a flag and a associated target (called when this item will be selected/executed). With IContextMenu the plug-in can retrieve a Item, add a Item, remove a Item and pop-up the menu.
typedef IContextMenuItem Item |
|
pure virtual |
Gets the number of menu items.
|
pure virtual |
Gets a menu item and its target (target could be not assigned).
|
pure virtual |
Adds a menu item and its target.
|
pure virtual |
Removes a menu item.
Pop-ups the menu.
Coordinates are relative to the top-left position of the plug-ins view.
|
static |