- All Implemented Interfaces:
Component
,Container
,TextGUIElement
- Direct Known Subclasses:
AbstractBasePane.EmptyMenuBar
A menu bar offering drop-down menus. You can attach a menu bar to a
Window
by using the
Window.setMenuBar(MenuBar)
method, then use add(Menu)
to add sub-menus to the menu bar.-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final int
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionAdds a new drop-down menu to the menu bar, at the endboolean
containsComponent
(Component component) Returnstrue
if this container contains the supplied component either directly or indirectly through intermediate containers.protected ComponentRenderer
<MenuBar> When you create a custom component, you need to implement this method and return a Renderer which is responsible for taking care of sizing the component, rendering it and choosing where to place the cursor (if Interactable).int
Returns the number of children this container currently hasReturns collection that is to be considered a copy of the list of children contained inside of this object.Returns list that is to be considered a copy of the list of children inside of this container.getMenu
(int index) Returns the drop-down menu at the specified index.int
Returns the number of menus this menu bar currently hasboolean
handleInput
(KeyStroke key) If an interactable component inside this container received a keyboard event that wasn't handled, the GUI system will recursively send the event to each parent container to give each of them a chance to consume the event.boolean
nextFocus
(Interactable fromThis) Given an interactable, find the next one in line to receive focus.previousFocus
(Interactable fromThis) Given an interactable, find the previous one in line to receive focus.boolean
removeComponent
(Component component) Removes the component from the container.toBasePane
(TerminalPosition position) Translates a position local to the container to the base pane's coordinate space.void
updateLookupMap
(InteractableLookupMap interactableLookupMap) Takes a lookup map and updates it with information about where all the interactables inside of this container are located.Methods inherited from class com.googlecode.lanterna.gui2.AbstractComponent
addTo, calculatePreferredSize, draw, getBasePane, getGlobalPosition, getLayoutData, getParent, getPosition, getPreferredSize, getRenderer, getSize, getTextGUI, getTheme, getThemeDefinition, hasParent, invalidate, isInside, isInvalid, isVisible, onAdded, onAfterDrawing, onBeforeDrawing, onRemoved, runOnGUIThreadIfExistsOtherwiseRunDirect, self, setLayoutData, setPosition, setPreferredSize, setRenderer, setSize, setTheme, setVisible, toGlobal, withBorder
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.googlecode.lanterna.gui2.Component
addTo, getBasePane, getGlobalPosition, getLayoutData, getParent, getPosition, getPreferredSize, getRenderer, getSize, getTextGUI, getTheme, getThemeDefinition, hasParent, invalidate, isInside, isVisible, onAdded, onRemoved, setLayoutData, setPosition, setPreferredSize, setSize, setTheme, setVisible, toGlobal, withBorder
Methods inherited from interface com.googlecode.lanterna.gui2.TextGUIElement
draw, isInvalid
-
Field Details
-
EXTRA_PADDING
private static final int EXTRA_PADDING- See Also:
-
-
Constructor Details
-
MenuBar
public MenuBar()Creates a new menu bar
-
-
Method Details
-
getChildCount
public int getChildCount()Description copied from interface:Container
Returns the number of children this container currently has- Specified by:
getChildCount
in interfaceContainer
- Returns:
- Number of children currently in this container
-
getChildrenList
Description copied from interface:Container
Returns list that is to be considered a copy of the list of children inside of this container. Modifying this list will not affect any internal state. This method is essentially the same as getChildren but the returned collection is a list.- Specified by:
getChildrenList
in interfaceContainer
- Returns:
- Child-components inside of this Container
- See Also:
-
getChildren
Description copied from interface:Container
Returns collection that is to be considered a copy of the list of children contained inside of this object. Modifying this collection will not affect any internal state.This method isn't deprecated but it should have originally been defined as returning a List instead of a Collection. See
getChildrenList
for a method with this signature.- Specified by:
getChildren
in interfaceContainer
- Returns:
- Child-components inside of this Container
- See Also:
-
containsComponent
Description copied from interface:Container
Returnstrue
if this container contains the supplied component either directly or indirectly through intermediate containers.- Specified by:
containsComponent
in interfaceContainer
- Parameters:
component
- Component to check if it's part of this container- Returns:
true
if the component is inside this Container, otherwisefalse
-
removeComponent
Description copied from interface:Container
Removes the component from the container. This should remove the component from the Container's internal data structure as well as call the onRemoved(..) method on the component itself if it was found inside the container.- Specified by:
removeComponent
in interfaceContainer
- Parameters:
component
- Component to remove from the Container- Returns:
true
if the component existed inside the container and was removed,false
otherwise
-
nextFocus
Description copied from interface:Container
Given an interactable, find the next one in line to receive focus. If the interactable isn't inside this container, this method should returnnull
. -
previousFocus
Description copied from interface:Container
Given an interactable, find the previous one in line to receive focus. If the interactable isn't inside this container, this method should returnnull
.- Specified by:
previousFocus
in interfaceContainer
- Parameters:
fromThis
- Component from which to get the previous interactable, or if null, pick the last interactable in the list- Returns:
- The previous interactable component, or null if there are no more interactables in the list
-
handleInput
Description copied from interface:Container
If an interactable component inside this container received a keyboard event that wasn't handled, the GUI system will recursively send the event to each parent container to give each of them a chance to consume the event. Returnfalse
if the implementer doesn't care about this particular keystroke and it will be automatically sent up the hierarchy the to next container. If you returntrue
, the event will stop here and won't be reported as unhandled.- Specified by:
handleInput
in interfaceContainer
- Parameters:
key
- Keystroke that was ignored by the interactable inside this container- Returns:
true
if this event was handled by this container and shouldn't be processed anymore,false
if the container didn't take any action on the event and want to pass it on
-
getMenu
Returns the drop-down menu at the specified index. This method will throw an Array- Parameters:
index
- Index of the menu to return- Returns:
- The drop-down menu at the specified index
- Throws:
IndexOutOfBoundsException
- if the index is out of range
-
getMenuCount
public int getMenuCount()Returns the number of menus this menu bar currently has- Returns:
- The number of menus this menu bar currently has
-
createDefaultRenderer
Description copied from class:AbstractComponent
When you create a custom component, you need to implement this method and return a Renderer which is responsible for taking care of sizing the component, rendering it and choosing where to place the cursor (if Interactable). This value is intended to be overridden by custom themes.- Specified by:
createDefaultRenderer
in classAbstractComponent<MenuBar>
- Returns:
- Renderer to use when sizing and drawing this component
-
updateLookupMap
Description copied from interface:Container
Takes a lookup map and updates it with information about where all the interactables inside of this container are located.- Specified by:
updateLookupMap
in interfaceContainer
- Parameters:
interactableLookupMap
- Interactable map to update
-
toBasePane
Description copied from interface:Component
Translates a position local to the container to the base pane's coordinate space. For a window-based GUI, this be a coordinate in the window's coordinate space. If the component belongs to no base pane, it will returnnull
.- Specified by:
toBasePane
in interfaceComponent
- Overrides:
toBasePane
in classAbstractComponent<MenuBar>
- Parameters:
position
- Position to translate (relative to the container's top-left corner)- Returns:
- Position in base pane space, or
null
if the component is an orphan
-
isEmptyMenuBar
public boolean isEmptyMenuBar()