Difference between revisions of "Board18Market5"

From BOARD18 Project WIKI
Jump to navigation Jump to search
(Initial version of this page)
 
Line 9: Line 9:
from the list below to specify what type of
from the list below to specify what type of
menu to display. Menu types:
menu to display. Menu types:
*"0" - Suppress the menue display entirely.
*"0" - Suppress the menu display entirely.
*"1" - Current box selected and token selected
*"1" - Current box selected and token selected
*"3" - Current unselected box has only one token  
*"3" - Current unselected box has only one token  
*"4" - Current unselected box has multiple tokens  
*"4" - Current unselected box has multiple tokens


==Function makeMenuItems(e)==
==Function makeMenuItems(e)==

Revision as of 10:49, 9 September 2014

board18Market5.js contains all the right-click logic for the Market page.
A right click event on the stock chart in the Market page can cause a context menu to be displayed. Whether this menu is displayed at all and the selection of items in this menu are both dependent on the context of the event.

Function getMenuType(event)

The getMenuType() function returns a character from the list below to specify what type of menu to display. Menu types:

  • "0" - Suppress the menu display entirely.
  • "1" - Current box selected and token selected
  • "3" - Current unselected box has only one token
  • "4" - Current unselected box has multiple tokens

Function makeMenuItems(e)

The makeMenuItems function will use the getMenuType function to determine which menu items it will include in the currently displayed menu.

Function makeMenus()

The makeMenus function registers a dynamic context menu which will be rebuilt every time the menu is to be shown. It will use the makeMenuItems function to include the correct menu items in the menu to be displayed for a particular event.