Options
All
  • Public
  • Public/Protected
  • All
Menu

Class EditorPopupMenu

Creates popupmenus for mouse events. This object holds an XML node which is a description of the popup menu to be created. In createMenu, the configuration is applied to the context and the resulting menu items are added to the menu dynamically. See createMenu for a description of the configuration format. This class does not create the DOM nodes required for the popup menu, it only parses an XML description to invoke the respective methods on an {@link mxPopupMenu} each time the menu is displayed.

codec

This class uses the {@link DefaultPopupMenuCodec} to read configuration data into an existing instance, however, the actual parsing is done by this class during program execution, so the format is described below.

Hierarchy

  • EditorPopupMenu

Index

Constructors

constructor

Properties

config

config: null | Element

XML node used as the description of new menu items. This node is used in createMenu to dynamically create the menu items if their respective conditions evaluate to true for the given arguments.

imageBasePath

imageBasePath: null | string = null

Base path for all icon attributes in the config. Default is null.

default

null

Methods

addAction

  • addAction(menu: MaxPopupMenu, editor: Editor, lab: string, icon?: null | string, funct?: null | Function, action?: null | string, cell?: null | Cell, parent?: null | PopupMenuItem, iconCls?: null | string, enabled?: boolean): PopupMenuItem
  • Helper method to bind an action to a new menu item.

    Parameters

    • menu: MaxPopupMenu

      {@link PopupMenu} that is used for adding items and separators.

    • editor: Editor

      Enclosing instance.

    • lab: string

      String that represents the label of the menu item.

    • icon: null | string = null

      Optional URL that represents the icon of the menu item.

    • funct: null | Function = null

      Optional function to execute before the optional action. The function takes an , the under the mouse and the mouse event that triggered the call.

    • action: null | string = null

      Optional name of the action to execute in the given editor.

    • cell: null | Cell = null

      Optional to use as an argument for the action.

    • parent: null | PopupMenuItem = null

      DOM node that represents the parent menu item.

    • iconCls: null | string = null

      Optional CSS class for the menu icon.

    • enabled: boolean = true

      Optional boolean that specifies if the menu item is enabled. Default is true.

    Returns PopupMenuItem

addItems

  • addItems(editor: Editor, menu: MaxPopupMenu, cell?: null | Cell, evt?: null | MouseEvent, conditions: any, item: Element, parent?: null | PopupMenuItem): void
  • Recursively adds the given items and all of its children into the given menu.

    Parameters

    • editor: Editor

      Enclosing instance.

    • menu: MaxPopupMenu

      {@link PopupMenu} that is used for adding items and separators.

    • cell: null | Cell = null

      Optional which is under the mousepointer.

    • evt: null | MouseEvent = null

      Optional mouse event which triggered the menu.

    • conditions: any

      Array of names boolean conditions.

    • item: Element

      XML node that represents the current menu item.

    • parent: null | PopupMenuItem = null

      DOM node that represents the parent menu item.

    Returns void

createConditions

  • createConditions(editor: Editor, cell?: null | Cell, evt?: null | MouseEvent): void

createMenu

  • This function is called from Editor to add items to the given menu based on config. The config is a sequence of the following nodes and attributes.

    childnodes:

    add - Adds a new menu item. See below for attributes. separator - Adds a separator. No attributes. condition - Adds a custom condition. Name attribute.

    The add-node may have a child node that defines a function to be invoked before the action is executed (or instead of an action to be executed).

    attributes:

    as - Resource key for the label (needs entry in property file). action - Name of the action to execute in enclosing editor. icon - Optional icon (relative/absolute URL). iconCls - Optional CSS class for the icon. if - Optional name of condition that must be true (see below). enabled-if - Optional name of condition that specifies if the menu item should be enabled. name - Name of custom condition. Only for condition nodes.

    conditions:

    nocell - No cell under the mouse. ncells - More than one cell selected. notRoot - Drilling position is other than home. cell - Cell under the mouse. notEmpty - Exactly one cell with children under mouse. expandable - Exactly one expandable cell under mouse. collapsable - Exactly one collapsable cell under mouse. validRoot - Exactly one cell which is a possible root under mouse. swimlane - Exactly one cell which is a swimlane under mouse.

    example:

    To add a new item for a given action to the popupmenu:

    <EditorPopupMenu as="popupHandler">
    <add as="delete" action="delete" icon="images/delete.gif" if="cell"/>
    </EditorPopupMenu>

    To add a new item for a custom function:

    <EditorPopupMenu as="popupHandler">
    <add as="action1"><![CDATA[
    function (editor, cell, evt)
    {
    editor.execute('action1', cell, 'myArg');
    }
    ]]></add>
    </EditorPopupMenu>

    The above example invokes action1 with an additional third argument via the editor instance. The third argument is passed to the function that defines action1. If the add-node has no action-attribute, then only the function defined in the text content is executed, otherwise first the function and then the action defined in the action-attribute is executed. The function in the text content has 3 arguments, namely the Editor instance, the {@link mxCell} instance under the mouse, and the native mouse event.

    Custom Conditions:

    To add a new condition for popupmenu items:

    <condition name="condition1"><![CDATA[
    function (editor, cell, evt)
    {
    return cell != null;
    }
    ]]></condition>

    The new condition can then be used in any item as follows:

    <add as="action1" action="action1" icon="action1.gif" if="condition1"/>
    

    The order in which the items and conditions appear is not significant as all conditions are evaluated before any items are created.

    Parameters

    • editor: Editor

      Enclosing Editor instance.

    • menu: MaxPopupMenu

      {@link mxPopupMenu} that is used for adding items and separators.

    • cell: null | Cell = null

      Optional {@link mxCell} which is under the mousepointer.

    • evt: null | MouseEvent = null

      Optional mouse event which triggered the menu.

    Returns void

Generated using TypeDoc