Uses of Class
jexer.bits.BorderStyle
-
Packages that use BorderStyle Package Description jexer Jexer - Java Text User Interface libraryjexer.backend The interface between TApplication and user-facing I/O.jexer.bits Low-level data objects and utility functions that don't warrant their own separate package. -
-
Uses of BorderStyle in jexer
Fields in jexer declared as BorderStyle Modifier and Type Field Description protected BorderStyle
TWindow. borderStyleActive
The border style for an active window.protected BorderStyle
TWindow. borderStyleActiveModal
The border style for an active modal window.protected BorderStyle
TWindow. borderStyleInactive
The border style for an inactive window.protected BorderStyle
TWindow. borderStyleMoving
The border style for a window being dragged/resized.Methods in jexer that return BorderStyle Modifier and Type Method Description BorderStyle
TWindow. getBorderStyle()
Retrieve the border line style.BorderStyle
TWindow. getBorderStyleForeground()
Get the border style for the window when it is the foreground window.BorderStyle
TWindow. getBorderStyleInactive()
Get the border style for the window when it is an inactive/background window.BorderStyle
TWindow. getBorderStyleModal()
Get the border style for the window when it is the modal window.BorderStyle
TWindow. getBorderStyleMoving()
Get the border style for the window when it is being dragged/resize.Methods in jexer with parameters of type BorderStyle Modifier and Type Method Description void
TWidget. drawBox(int left, int top, int right, int bottom, CellAttributes border, CellAttributes background, BorderStyle borderStyle, boolean shadow)
Draw a box with a border and empty background. -
Uses of BorderStyle in jexer.backend
Methods in jexer.backend with parameters of type BorderStyle Modifier and Type Method Description void
LogicalScreen. drawBox(int left, int top, int right, int bottom, CellAttributes border, CellAttributes background, BorderStyle borderStyle, boolean shadow)
Draw a box with a border and empty background.void
Screen. drawBox(int left, int top, int right, int bottom, CellAttributes border, CellAttributes background, BorderStyle borderStyle, boolean shadow)
Draw a box with a border and empty background. -
Uses of BorderStyle in jexer.bits
Fields in jexer.bits declared as BorderStyle Modifier and Type Field Description static BorderStyle
BorderStyle. DEFAULT
The default border style.static BorderStyle
BorderStyle. DOUBLE
A double-line border.static BorderStyle
BorderStyle. NONE
The "no-border" style.static BorderStyle
BorderStyle. SINGLE
A single-line border.static BorderStyle
BorderStyle. SINGLE_H_DOUBLE_V
A double-line border on the vertical sections, single-line on the horizontal sections.static BorderStyle
BorderStyle. SINGLE_ROUND
A single-line border with round corners.static BorderStyle
BorderStyle. SINGLE_V_DOUBLE_H
A single-line border on the vertical sections, double-line on the horizontal sections.Methods in jexer.bits that return BorderStyle Modifier and Type Method Description static BorderStyle
BorderStyle. getStyle(java.lang.String borderStyle)
Public constructor returns one of the static BorderStyle instances.
-