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 BorderStyleTWindow. borderStyleActiveThe border style for an active window.protected BorderStyleTWindow. borderStyleActiveModalThe border style for an active modal window.protected BorderStyleTWindow. borderStyleInactiveThe border style for an inactive window.protected BorderStyleTWindow. borderStyleMovingThe border style for a window being dragged/resized.Methods in jexer that return BorderStyle Modifier and Type Method Description BorderStyleTWindow. getBorderStyle()Retrieve the border line style.BorderStyleTWindow. getBorderStyleForeground()Get the border style for the window when it is the foreground window.BorderStyleTWindow. getBorderStyleInactive()Get the border style for the window when it is an inactive/background window.BorderStyleTWindow. getBorderStyleModal()Get the border style for the window when it is the modal window.BorderStyleTWindow. 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 voidTWidget. 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 voidLogicalScreen. 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.voidScreen. 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 BorderStyleBorderStyle. DEFAULTThe default border style.static BorderStyleBorderStyle. DOUBLEA double-line border.static BorderStyleBorderStyle. NONEThe "no-border" style.static BorderStyleBorderStyle. SINGLEA single-line border.static BorderStyleBorderStyle. SINGLE_H_DOUBLE_VA double-line border on the vertical sections, single-line on the horizontal sections.static BorderStyleBorderStyle. SINGLE_ROUNDA single-line border with round corners.static BorderStyleBorderStyle. SINGLE_V_DOUBLE_HA 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 BorderStyleBorderStyle. getStyle(java.lang.String borderStyle)Public constructor returns one of the static BorderStyle instances.
-