Class Panel
- All Implemented Interfaces:
Component, Container, TextGUIElement
- Direct Known Subclasses:
SplitPanel
This class is the basic building block for creating user interfaces, being the standard implementation of
Container that supports multiple children. A Panel is a component that can contain one or more
other components, including nested panels. The panel itself doesn't have any particular appearance and isn't
interactable by itself, although you can set a border for the panel and interactable components inside the panel will
receive input focus as expected.-
Nested Class Summary
Nested Classes -
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionPanel()Default constructor, creates a new panel with no child components and by default set to a verticalLinearLayoutlayout manager.Panel(LayoutManager layoutManager) -
Method Summary
Modifier and TypeMethodDescriptionaddComponent(int index, Component component) Adds a new child component to the panel.addComponent(Component component) Adds a new child component to the panel.addComponent(Component component, LayoutData layoutData) This method is a shortcut for calling:Invokes the component renderer's size calculation logic and returns the result.booleancontainsComponent(Component component) Returnstrueif this container contains the supplied component either directly or indirectly through intermediate containers.protected ComponentRenderer<Panel> 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).intReturns 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.Returns the color used to override the default background color from the theme, if set.Returns the layout manager assigned to this panelbooleanhandleInput(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.voidMarks the component as invalid and requiring to be re-drawn at next opportunity.booleanChecks if this element (or any of its child components, if any) has signaled that what it's currently displaying is out of date and needs re-drawing.private voidlayout(TerminalSize size) 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.Removes all child components from this panelbooleanremoveComponent(Component component) Removes the component from the container.voidsetFillColorOverride(TextColor fillColor) Sets an override color to be used instead of the theme's color for Panels when drawing unused space.setLayoutManager(LayoutManager layoutManager) Assigns a new layout manager to this panel, replacing the previous layout manager assigned.voidupdateLookupMap(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 AbstractComponent
addTo, draw, getBasePane, getGlobalPosition, getLayoutData, getParent, getPosition, getPreferredSize, getRenderer, getSize, getTextGUI, getTheme, getThemeDefinition, hasParent, isInside, isVisible, onAdded, onAfterDrawing, onBeforeDrawing, onRemoved, runOnGUIThreadIfExistsOtherwiseRunDirect, self, setLayoutData, setPosition, setPreferredSize, setRenderer, setSize, setTheme, setVisible, toBasePane, toGlobal, withBorderMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface Component
addTo, getBasePane, getGlobalPosition, getLayoutData, getParent, getPosition, getPreferredSize, getRenderer, getSize, getTextGUI, getTheme, getThemeDefinition, hasParent, isInside, isVisible, onAdded, onRemoved, setLayoutData, setPosition, setPreferredSize, setSize, setTheme, setVisible, toBasePane, toGlobal, withBorderMethods inherited from interface TextGUIElement
draw
-
Field Details
-
components
-
layoutManager
-
cachedPreferredSize
-
fillColorOverride
-
-
Constructor Details
-
Panel
public Panel()Default constructor, creates a new panel with no child components and by default set to a verticalLinearLayoutlayout manager. -
Panel
-
-
Method Details
-
addComponent
Adds a new child component to the panel. Where within the panel the child will be displayed is up to the layout manager assigned to this panel. If the component has already been added to another panel, it will first be removed from that panel before added to this one.- Parameters:
component- Child component to add to this panel- Returns:
- Itself
-
addComponent
Adds a new child component to the panel. Where within the panel the child will be displayed is up to the layout manager assigned to this panel. If the component has already been added to another panel, it will first be removed from that panel before added to this one.- Parameters:
index- At what index to add the component among the existing componentscomponent- Child component to add to this panel- Returns:
- Itself
-
addComponent
This method is a shortcut for calling:component.setLayoutData(layoutData); panel.addComponent(component);- Parameters:
component- Component to add to the panellayoutData- Layout data to assign to the component- Returns:
- Itself
-
containsComponent
Description copied from interface:ContainerReturnstrueif this container contains the supplied component either directly or indirectly through intermediate containers.- Specified by:
containsComponentin interfaceContainer- Parameters:
component- Component to check if it's part of this container- Returns:
trueif the component is inside this Container, otherwisefalse
-
removeComponent
Description copied from interface:ContainerRemoves 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:
removeComponentin interfaceContainer- Parameters:
component- Component to remove from the Container- Returns:
trueif the component existed inside the container and was removed,falseotherwise
-
removeAllComponents
-
setLayoutManager
Assigns a new layout manager to this panel, replacing the previous layout manager assigned. Please note that if the panel is not empty at the time you assign a new layout manager, the existing components might not show up where you expect them and their layout data property might need to be re-assigned.- Parameters:
layoutManager- New layout manager this panel should be using- Returns:
- Itself
-
getFillColorOverride
Returns the color used to override the default background color from the theme, if set. Otherwisenullis returned and whatever theme is assigned will be used to derive the fill color.- Returns:
- The color, if any, used to fill the panel's unused space instead of the theme's color
-
setFillColorOverride
Sets an override color to be used instead of the theme's color for Panels when drawing unused space. If called withnull, it will reset back to the theme's color.- Parameters:
fillColor- Color to draw the unused space with instead of what the theme definition says, nonullto go back to the theme definition
-
getLayoutManager
Returns the layout manager assigned to this panel- Returns:
- Layout manager assigned to this panel
-
getChildCount
public int getChildCount()Description copied from interface:ContainerReturns the number of children this container currently has- Specified by:
getChildCountin interfaceContainer- Returns:
- Number of children currently in this container
-
getChildren
Description copied from interface:ContainerReturns 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
getChildrenListfor a method with this signature.- Specified by:
getChildrenin interfaceContainer- Returns:
- Child-components inside of this Container
- See Also:
-
getChildrenList
Description copied from interface:ContainerReturns 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:
getChildrenListin interfaceContainer- Returns:
- Child-components inside of this Container
- See Also:
-
createDefaultRenderer
Description copied from class:AbstractComponentWhen 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:
createDefaultRendererin classAbstractComponent<Panel>- Returns:
- Renderer to use when sizing and drawing this component
-
calculatePreferredSize
Description copied from class:AbstractComponentInvokes the component renderer's size calculation logic and returns the result. This value represents the preferred size and isn't necessarily what it will eventually be assigned later on.- Overrides:
calculatePreferredSizein classAbstractComponent<Panel>- Returns:
- Size that the component renderer believes the component should be
-
isInvalid
public boolean isInvalid()Description copied from interface:TextGUIElementChecks if this element (or any of its child components, if any) has signaled that what it's currently displaying is out of date and needs re-drawing.- Specified by:
isInvalidin interfaceTextGUIElement- Overrides:
isInvalidin classAbstractComponent<Panel>- Returns:
trueif the component is invalid and needs redrawing,falseotherwise
-
nextFocus
Description copied from interface:ContainerGiven 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:ContainerGiven 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:
previousFocusin 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:ContainerIf 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. Returnfalseif 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:
handleInputin interfaceContainer- Parameters:
key- Keystroke that was ignored by the interactable inside this container- Returns:
trueif this event was handled by this container and shouldn't be processed anymore,falseif the container didn't take any action on the event and want to pass it on
-
updateLookupMap
Description copied from interface:ContainerTakes a lookup map and updates it with information about where all the interactables inside of this container are located.- Specified by:
updateLookupMapin interfaceContainer- Parameters:
interactableLookupMap- Interactable map to update
-
invalidate
public void invalidate()Description copied from interface:ComponentMarks the component as invalid and requiring to be re-drawn at next opportunity. Container components should take this as a hint to layout the child components again.- Specified by:
invalidatein interfaceComponent- Overrides:
invalidatein classAbstractComponent<Panel>
-
layout
-