Uses of Class
jexer.bits.Cell
-
Packages that use Cell 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.jexer.tterminal An ECMA-48 / ANSI X3.64 style terminal emulator. -
-
Uses of Cell in jexer
Methods in jexer with parameters of type Cell Modifier and Type Method Description void
TWidget. putCharXY(int x, int y, Cell ch)
Render one character with attributes. -
Uses of Cell in jexer.backend
Fields in jexer.backend declared as Cell Modifier and Type Field Description protected Cell[][]
LogicalScreen. logical
The logical screen being rendered to.protected Cell[][]
LogicalScreen. physical
The physical screen last sent out on flush().Methods in jexer.backend that return Cell Modifier and Type Method Description Cell
LogicalScreen. getCharXY(int x, int y)
Get the cell at one location.Cell
MultiScreen. getCharXY(int x, int y)
Get the cell at one location.Cell
Screen. getCharXY(int x, int y)
Get the cell at one location.Methods in jexer.backend with parameters of type Cell Modifier and Type Method Description java.awt.image.BufferedImage
GlyphMaker. getImage(Cell cell, int cellWidth, int cellHeight)
Get a glyph image.java.awt.image.BufferedImage
GlyphMaker. getImage(Cell cell, int cellWidth, int cellHeight, boolean blinkVisible)
Get a glyph image.void
LogicalScreen. putCharXY(int x, int y, Cell ch)
Render one character with attributes.void
MultiScreen. putCharXY(int x, int y, Cell ch)
Render one character with attributes.void
Screen. putCharXY(int x, int y, Cell ch)
Render one character with attributes.void
LogicalScreen. putFullwidthCharXY(int x, int y, Cell cell)
Render one fullwidth cell. -
Uses of Cell in jexer.bits
Constructors in jexer.bits with parameters of type Cell Constructor Description Cell(Cell cell)
Public constructor creates a duplicate. -
Uses of Cell in jexer.tterminal
Methods in jexer.tterminal that return Cell Modifier and Type Method Description Cell
DisplayLine. charAt(int idx)
Get the Cell at a specific column.Methods in jexer.tterminal with parameters of type Cell Modifier and Type Method Description void
DisplayLine. delete(int idx, Cell newCell)
Delete character at the specified position, filling in the new character on the right with newCell.void
DisplayLine. insert(int idx, Cell newCell)
Insert a character at the specified position.void
DisplayLine. replace(int idx, Cell newCell)
Replace character at the specified position.
-