Skip to main content
Ctrl+K

EG-Overlay 0.3.0-dev

  • GitHub

User Guide

  • Installation
  • Running EG-Overlay
  • Configuration

Bundled Modules

  • Overlay Menu
  • Lua Console/Log
  • Mumble Link Info
  • Markers
    • EG-Overlay Markerpack Format
    • markers.package
    • markers.data
  • Overlay Stats

Development

  • Building EG-Overlay From Source
  • Lua API
    • eg-overlay
    • eg-overlay-ui
      • Fonts
      • Windows
      • Box Layouts
      • Grid Layouts
      • Text Elements
      • Text Entry Element
      • Scroll Elements
      • Separator Elements
      • Button Elements
      • Menus
    • mumble-link
    • dx
    • gw2
      • gw2.data
    • mumble-link-events
    • Settings
    • SQLite3
    • Zip Files
    • utils
  • Lua Thread and Coroutines

Index

  • General
  • Events
  • Lua Modules

Menus

Contents

  • Functions
    • menu()
    • menuitem()
    • textmenuitem()
    • separatormenuitem()
  • Classes
    • uimenu
      • uimenu.pushfront()
      • uimenu.pushback()
      • uimenu.popfront()
      • uimenu.popback()
      • uimenu.insertbefore()
      • uimenu.insertafter()
      • uimenu.removeitem()
      • uimenu.show()
      • uimenu.hide()
      • uimenu.x()
      • uimenu.y()
      • uimenu.width()
      • uimenu.height()
      • uimenu.bgcolor()
    • uimenuitem
      • uimenuitem.enabled()
      • uimenuitem.icon()
      • uimenuitem.submenu()
      • uimenuitem.addeventhandler()
      • uimenuitem.removeeventhandler()
      • uimenuitem.x()
      • uimenuitem.y()
      • uimenuitem.width()
      • uimenuitem.height()
      • uimenuitem.bgcolor()

Menus#

Menus are a top level element that display a list of items. They are typically used to provide contextual actions, ie. a context or ‘right click’ menu.

Menus function much like boxes, except they can only have uimenuitem as children.

New menus can be created with the menu() function in the eg-overlay-ui module.

New menu items can be created with the following functions:

  • menuitem()

  • textmenuitem()

  • separatormenuitem()

Functions#

eg-overlay-ui.menu()#

Create a new uimenu.

Return type:

uimenu

Version History

Version

Notes

0.3.0

Added

eg-overlay-ui.menuitem()#

Create a new uimenuitem.

Return type:

uimenuitem

Version History

Version

Notes

0.3.0

Added

eg-overlay-ui.textmenuitem(text, color, font)#

Create a new menu item containing a uitext.

Parameters:
  • text (string)

  • color (integer)

  • font (uifont)

Return type:

uimenuitem

See also

text, color, and font are passed directly to text().

Version History

Version

Notes

0.3.0

Added

eg-overlay-ui.separatormenuitem(orientation)#

Create a new uimenuitem with a uiseparator.

Parameters:

orientation (string)

Return type:

uimenuitem

See also

orientation is passed directly to separator().

Version History

Version

Notes

0.3.0

Added

Classes#

class eg-overlay-ui.uimenu#
pushfront(item)#

Add the given uimenuitem to the beginning of the menu.

Parameters:

item (uimenuitem)

Version History

Version

Notes

0.3.0

Added

pushback(item)#

Add the given uimenuitem to the end of the menu.

Parameters:

item (uimenuitem)

Version History

Version

Notes

0.3.0

Added

popfront()#

Remove the first item from the menu.

Version History

Version

Notes

0.3.0

Added

popback()#

Remove the last item from the menu.

Version History

Version

Notes

0.3.0

Added

insertbefore(before, item)#

Insert item before item before.

If before is not in this menu, item is not added and this method will return false. true is returned on success.

Parameters:
  • before (uimenuitem)

  • item (uimenuitem)

Return type:

boolean

Version History

Version

Notes

0.3.0

Added

insertafter(after, item)#

Insert item after item after.

If after is not in this menu, item is not added and this method will return false. true is returned on success.

Parameters:
  • after (uimenuitem)

  • item (uimenuitem)

Return type:

boolean

Version History

Version

Notes

0.3.0

Added

removeitem(item)#

Remove the given uimenuitem from the menu.

Parameters:

item (uimenuitem)

Version History

Version

Notes

0.3.0

Added

show([x, y])#

Show the menu, either at the given location or at the mouse cursor.

Parameters:
  • x (integer) – (Optional)

  • y (integer) – (Optional)

Version History

Version

Notes

0.3.0

Added

hide()#

Hide the menu.

Version History

Version

Notes

0.3.0

Added

Note

The following methods are inherited from uielement

x([position])#

Set or get the current position X.

Parameters:

position (integer) – (Optional)

Return type:

integer

Important

It is normally not necessary to manually position an element.

Version History

Version

Notes

0.3.0

Added

y([position])#

Set or get the current position Y.

Parameters:

position (integer) – (Optional)

Return type:

integer

Important

It is normally not necessary to manually position an element.

Version History

Version

Notes

0.3.0

Added

width([value])#

Get or set the element’s width.

Parameters:

width (integer) – (Optional)

Return type:

integer

Important

It is normally not necessary to manually set an element’s size.

Version History

Version

Notes

0.3.0

Added

height([value])#

Get or set the element’s height.

Parameters:

width (integer) – (Optional)

Return type:

integer

Important

It is normally not necessary to manually set an element’s size.

Version History

Version

Notes

0.3.0

Added

bgcolor([color])#

Get or set the element’s background color.

Parameters:

color (integer) – (Optional)

Return type:

integer

Version History

Version

Notes

0.3.0

Added

class eg-overlay-ui.uimenuitem#

A item within a uimenu.

Menu items are made up of 3 pieces:

+--------+---------+------------+
| (icon) | (child) | (sub-menu) |
+--------+---------+------------+

The icon is a text value displayed using the default icon font. This can be used to indicate a status such as on/off or to give additional context or a visual hint to the menu item.

The child is any valid UI element; most commonly the child will be a uitext.

The sub-menu item will only be shown if the item contains a sub-menu. This gives the user an indication that the sub-menu exists and will be shown when the item is hovered.

enabled(value)#

Set if this menu item is enabled or not.

A disabled menu item does not react or send mouse events.

Parameters:

value (boolean)

Version History

Version

Notes

0.3.0

Added

icon(codepoint)#

Set the icon to be shown on this menu item.

Parameters:

codepoint (string) – codepoint/string value of the icon

See also

iconcodepoint() can be used to lookup an icon codepoint.

Version History

Version

Notes

0.3.0

Added

submenu(menu)#
Parameters:

menu (uimenu)

Version History

Version

Notes

0.3.0

Added

addeventhandler(handler[, event1, event2, ...])#

Add an event handler.

If no event types are specified, ‘click-left’ will be used.

Parameters:
  • handler (function)

  • event1 (string) – (Optional)

Return type:

integer

Version History

Version

Notes

0.3.0

Added

removeeventhandler(handlerid)#

Remove an event handler added with addeventhandler().

Parameters:

handlerid (integer)

Version History

Version

Notes

0.3.0

Added

Note

The following methods are inherited from uielement

x([position])#

Set or get the current position X.

Parameters:

position (integer) – (Optional)

Return type:

integer

Important

It is normally not necessary to manually position an element.

Version History

Version

Notes

0.3.0

Added

y([position])#

Set or get the current position Y.

Parameters:

position (integer) – (Optional)

Return type:

integer

Important

It is normally not necessary to manually position an element.

Version History

Version

Notes

0.3.0

Added

width([value])#

Get or set the element’s width.

Parameters:

width (integer) – (Optional)

Return type:

integer

Important

It is normally not necessary to manually set an element’s size.

Version History

Version

Notes

0.3.0

Added

height([value])#

Get or set the element’s height.

Parameters:

width (integer) – (Optional)

Return type:

integer

Important

It is normally not necessary to manually set an element’s size.

Version History

Version

Notes

0.3.0

Added

bgcolor([color])#

Get or set the element’s background color.

Parameters:

color (integer) – (Optional)

Return type:

integer

Version History

Version

Notes

0.3.0

Added

previous

Button Elements

next

mumble-link

Contents
  • Functions
    • menu()
    • menuitem()
    • textmenuitem()
    • separatormenuitem()
  • Classes
    • uimenu
      • uimenu.pushfront()
      • uimenu.pushback()
      • uimenu.popfront()
      • uimenu.popback()
      • uimenu.insertbefore()
      • uimenu.insertafter()
      • uimenu.removeitem()
      • uimenu.show()
      • uimenu.hide()
      • uimenu.x()
      • uimenu.y()
      • uimenu.width()
      • uimenu.height()
      • uimenu.bgcolor()
    • uimenuitem
      • uimenuitem.enabled()
      • uimenuitem.icon()
      • uimenuitem.submenu()
      • uimenuitem.addeventhandler()
      • uimenuitem.removeeventhandler()
      • uimenuitem.x()
      • uimenuitem.y()
      • uimenuitem.width()
      • uimenuitem.height()
      • uimenuitem.bgcolor()

By Taylor Talkington

© Copyright 2025, Taylor Talkington.