Uses of Class
jexer.bits.ComplexCell
-
Packages that use ComplexCell Package Description jexer.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.terminal An ECMA-48 / ANSI X3.64 style terminal emulator. -
-
Uses of ComplexCell in jexer.backend
Fields in jexer.backend declared as ComplexCell Modifier and Type Field Description protected ComplexCell[][]LogicalScreen. logicalThe logical screen being rendered to.protected ComplexCell[][]LogicalScreen. physicalThe physical screen last sent out on flush(). -
Uses of ComplexCell in jexer.bits
Methods in jexer.bits that return types with arguments of type ComplexCell Modifier and Type Method Description static java.util.List<ComplexCell>ExtendedGraphemeClusterUtils. toComplexCells(java.lang.String input)Converts a string into a sequence of grapheme clusters following most of the rules of Unicode TR #29 section 3.1.1.static java.util.List<ComplexCell>StringUtils. toComplexCells(java.lang.String input)Converts a string into a sequence of grapheme clusters following most of the rules of Unicode TR #29 section 3.1.1.Methods in jexer.bits with parameters of type ComplexCell Modifier and Type Method Description static java.awt.image.BufferedImageColorEmojiGlyphMaker. getImage(ComplexCell complexCell, int cellWidth, int cellHeight, Backend backend, boolean blinkVisible)Get an emoji image for a complex cell.static java.awt.image.BufferedImageColorEmojiGlyphMaker. getImage(ComplexCell complexCell, int cellWidth, int cellHeight, Backend backend, boolean blinkVisible, Cell.Width widthEnum)Get an emoji image for a complex cell. -
Uses of ComplexCell in jexer.terminal
Methods in jexer.terminal that return ComplexCell Modifier and Type Method Description ComplexCellDisplayLine. charAt(int idx)Get the Cell at a specific column.Methods in jexer.terminal with parameters of type ComplexCell Modifier and Type Method Description voidDisplayLine. delete(int idx, ComplexCell newCell)Delete character at the specified position, filling in the new character on the right with newCell.voidDisplayLine. insert(int idx, ComplexCell newCell)Insert a character at the specified position.voidDisplayLine. replace(int idx, ComplexCell newCell)Replace character at the specified position.
-