Uses of Interface
com.googlecode.lanterna.gui2.LayoutManager
-
Packages that use LayoutManager Package Description com.googlecode.lanterna.gui2 -
-
Uses of LayoutManager in com.googlecode.lanterna.gui2
Classes in com.googlecode.lanterna.gui2 that implement LayoutManager Modifier and Type Class Description class
AbsoluteLayout
Layout manager that places components where they are manually specified to be and sizes them to the size they are manually assigned to.class
BorderLayout
BorderLayout imitates the BorderLayout class from AWT, allowing you to add a center component with optional components around it in top, bottom, left and right locations.class
GridLayout
This emulates the behaviour of the GridLayout in SWT (as opposed to the one in AWT/Swing).class
LinearLayout
Simple layout manager the puts all components on a single line, either horizontally or vertically.(package private) class
SplitPanel.ScrollPanelLayoutManager
Fields in com.googlecode.lanterna.gui2 declared as LayoutManager Modifier and Type Field Description private LayoutManager
Panel. layoutManager
Methods in com.googlecode.lanterna.gui2 that return LayoutManager Modifier and Type Method Description LayoutManager
Panel. getLayoutManager()
Returns the layout manager assigned to this panelMethods in com.googlecode.lanterna.gui2 with parameters of type LayoutManager Modifier and Type Method Description Panel
Panel. setLayoutManager(LayoutManager layoutManager)
Assigns a new layout manager to this panel, replacing the previous layout manager assigned.Constructors in com.googlecode.lanterna.gui2 with parameters of type LayoutManager Constructor Description Panel(LayoutManager layoutManager)
-