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 voidTWidget. hLineXY(int x, int y, int n, Cell ch)Draw a horizontal line from (x, y) to (x + n, y).voidTWidget. putCharXY(int x, int y, Cell ch)Render one character with attributes.voidTWidget. vLineXY(int x, int y, int n, Cell ch)Draw a vertical line from (x, y) to (x, y + n). -
Uses of Cell in jexer.backend
Fields in jexer.backend declared as Cell Modifier and Type Field Description protected Cell[][]LogicalScreen. logicalThe logical screen being rendered to.protected Cell[][]LogicalScreen. physicalThe physical screen last sent out on flush().Methods in jexer.backend that return Cell Modifier and Type Method Description CellLogicalScreen. getCharXY(int x, int y)Get the cell at one location in absolute coordinates.CellLogicalScreen. getCharXY(int x, int y, boolean clip)Get the cell at one location, in either absolute or clipped coordinates.CellScreen. getCharXY(int x, int y)Get the cell at one location in absolute coordinates.CellScreen. getCharXY(int x, int y, boolean clip)Get the cell at one location, in either absolute or clipped coordinates.Methods in jexer.backend with parameters of type Cell Modifier and Type Method Description java.awt.image.BufferedImageGlyphMaker. getImage(Cell cell, int cellWidth, int cellHeight, Backend backend)Get a glyph image.java.awt.image.BufferedImageGlyphMaker. getImage(Cell cell, int cellWidth, int cellHeight, Backend backend, boolean blinkVisible)Get a glyph image.voidLogicalScreen. hLineXY(int x, int y, int n, Cell ch)Draw a horizontal line from (x, y) to (x + n, y).voidScreen. hLineXY(int x, int y, int n, Cell ch)Draw a horizontal line from (x, y) to (x + n, y).voidLogicalScreen. putCharXY(int x, int y, Cell ch)Render one character with attributes.voidScreen. putCharXY(int x, int y, Cell ch)Render one character with attributes.voidLogicalScreen. putFullwidthCharXY(int x, int y, Cell cell)Render one fullwidth cell.voidLogicalScreen. vLineXY(int x, int y, int n, Cell ch)Draw a vertical line from (x, y) to (x, y + n).voidScreen. vLineXY(int x, int y, int n, Cell ch)Draw a vertical line from (x, y) to (x, y + n). -
Uses of Cell in jexer.bits
Methods in jexer.bits with parameters of type Cell Modifier and Type Method Description voidCell. mixImageId(Cell other)"Mix" the imageId of another Cell into this cell.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 CellDisplayLine. charAt(int idx)Get the Cell at a specific column.Methods in jexer.tterminal with parameters of type Cell Modifier and Type Method Description voidDisplayLine. delete(int idx, Cell newCell)Delete character at the specified position, filling in the new character on the right with newCell.voidDisplayLine. insert(int idx, Cell newCell)Insert a character at the specified position.voidDisplayLine. replace(int idx, Cell newCell)Replace character at the specified position.
-