Skip to main content

Meta_ApplicationMenuEntry

Module: Metanodes / Definitions

An ApplicationMenuEntry is a menu entry that can appear in the context menu or main file menu. More...

#include <meta_gvxfactory.hpp>

Public Types

TypeName
enumAppMenuEntryType { kApp = 0, kLua, kLuaBlock, kPropertyToggle, kAppSettingToggle, kLuaActivate, kFunction, kNotebookToggle, kSizingFrameToggle, kAppSettingIntToggle, kAppSettingIntFlip }
Values for Idx_Type.
enumIDX { Idx_Create, Idx_Type, Idx_Caption, Idx_Command, Idx_Keys, Idx_UserString, Idx_StatusText, Idx_ImageFilename, Idx_OverlayImageFilename, Idx_ShortcutText, Idx_ClusterScope, Idx_ShowInfoLine, Idx_HelpTopic, Idx_SplitButton, Idx_Available, Idx_Permission, Idx_UseAlternateImage, Idx_ImageColour, Idx_Toggled }
Property index.

Detailed Description

struct Meta_ApplicationMenuEntry;

An ApplicationMenuEntry is a menu entry that can appear in the context menu or main file menu.

It should be inserted into the tree somewhere under <user>/ApplicationMenus/ContextMenu or <user>/ApplicationMenus/MainMenu

Public Types Documentation

enum AppMenuEntryType

EnumeratorValueDescription
kApp0Triggers an appCommand named by "Command", with parameter in "UserString" (Symbols - C: "TypeApp", Lua: __ApplicationMenuEntry_TypeApp)
kLuaTriggers a Lua function named in "Command", with parameter in "UserString" if any (Symbols - C: "TypeLua", Lua: __ApplicationMenuEntry_TypeLua)
kLuaBlockTriggers the execution of a block of Lua code specified in "Command" (Symbols - C: "TypeLuaBlock", Lua: __ApplicationMenuEntry_TypeLuaBlock)
kPropertyToggleToggles the value of property named in "Command", on node at path in "UserString" (Symbols - C: "TypePropertyToggle", Lua: __ApplicationMenuEntry_TypePropertyToggle)
kAppSettingToggleToggles the value of a setting at path in "UserString" (Symbols - C: "TypeSettingToggle", Lua: __ApplicationMenuEntry_TypeSettingToggle)
kLuaActivateTriggers the Activate event if one is present on the menu entry itself (Symbols - C: "TypeActivate", Lua: __ApplicationMenuEntry_TypeActivate)
kFunctionTriggers a named function registered with the script engine; [VRRegisterEventFunction (Symbols - C: "TypeFunction", Lua: __ApplicationMenuEntry_TypeFunction)
kNotebookToggleDisplays a notebook frame, command is notebook name userstring is notebook pane. (Symbols - C: "TypeNotebookToggle", Lua: __ApplicationMenuEntry_TypeNotebookToggle)
kSizingFrameToggleToggles the visibility of the frame specified in "UserString";this should be a path (Symbols - C: "TypeSizingFrameToggle", Lua: __ApplicationMenuEntry_TypeSizingFrameToggle)
kAppSettingIntToggleToggles the value of a setting at path in "UserString" between 0 and value specified in "Command" (Symbols - C: "TypeSettingIntToggle", Lua: __ApplicationMenuEntry_TypeSettingIntToggle)
kAppSettingIntFlipSets the value of a setting at path in "UserString", if the setting is already set then flip it. (Symbols - C: "TypeSettingIntFlip", Lua: __ApplicationMenuEntry_TypeSettingIntFlip)

Values for Idx_Type.

enum IDX

EnumeratorValueDescription
Idx_Createstring - Specifies the factory that should create the menu entry. For context menu items this should be empty. For main menu it should be VRMenuItem
Idx_TypeAppMenuEntryType (int) - Specifies the type of menu entry
Idx_Captionstring - Caption that should appear on the item
Idx_Commandstring - Usage depends on the value of Idx_Type
Idx_Keysstring - Key binding that triggers this action. Does not currently parse the string to create the binding - there would have to be a KeyPress event created, too
Idx_UserStringstring - Usage depends on the value of Idx_type
Idx_StatusTextstring - Text to display in the menu entry tooltip (previously in the status bar)
Idx_ImageFilenamestring - Name of an icon file to display on the option, from the data folder
Idx_OverlayImageFilenamestring - Name of an image to overlay over the icon, from somewhere in the data folder
Idx_ShortcutTextstring - Display-friendly representation of the contents of Idx_Keys
Idx_ClusterScopestring - Specifies execution behaviour in a cluster; "all" executes on all cluster members, "slave" only on slaves, anything else (including the default value) only executes on the master
Idx_ShowInfoLinebool - (for MainMenu) If enabled, shows the StatusText in a line below the caption, rather than on a tooltip
Idx_HelpTopicstring - Specifies the section name of relevant documentation in the user manual for context sensitive help
Idx_SplitButtonbool - (for MainMenu) If enabled, splits the button into one that triggers the button action, and one that displays the child items
Idx_Availablebool - When enabled, button is available to be clicked. Otherwise it is greyed out.
Idx_Permissionstring - Names of permissions required for the button to be visible
Idx_UseAlternateImagebool - Idx_ImageFilename may be delimited by ; to contain a second image to display when this is true
Idx_ImageColourstring - Name of colour to render the image in. This should reference an entry in theme.xml. Leave empty to render with white and so original image colour is maintained.
Idx_Toggledbool - Whether the button appears toggled, but only when Type is not one of the "...Toggle" types.

Property index.