Uses of Interface
jexer.bits.CellTransform
-
Packages that use CellTransform Package Description jexer Jexer - Java Text User Interface libraryjexer.backend The interface between TApplication and user-facing I/O.jexer.effect Desktop and window effects. -
-
Uses of CellTransform in jexer
Methods in jexer with parameters of type CellTransform Modifier and Type Method Description voidTWidget. applyCellTransform(int x, int y, int width, int height, CellTransform cellTransform)Perform some kind of change to a cell, based on its location relative to this widget.voidTWidget. applyCellTransform(int x, int y, int width, int height, CellTransform cellTransform, TWidget widget)Perform some kind of change to a cell, based on its location relative to a widget or the screen.voidTWindow. setDrawPostTransform(CellTransform transform)Set a cell transform to be applied after the widgets are drawn.voidTWindow. setDrawPostTransform(CellTransform transform, boolean absolute)Set a cell transform to be applied after the widgets are drawn.voidTWindow. setDrawPreTransform(CellTransform transform)Set a cell transform to be applied after the window background is drawn, but before widgets are drawn.voidTWindow. setDrawPreTransform(CellTransform transform, boolean absolute)Set a cell transform to be applied after the window background is drawn, but before widgets are drawn. -
Uses of CellTransform in jexer.backend
Methods in jexer.backend with parameters of type CellTransform Modifier and Type Method Description voidLogicalScreen. applyCellTransform(Backend backend, int x, int y, int width, int height, CellTransform cellTransform, TWidget widget)Perform some kind of change to a cell, based on its location relative to a widget or the entire screen.voidScreen. applyCellTransform(Backend backend, int x, int y, int width, int height, CellTransform cellTransform, TWidget widget)Perform some kind of change to a cell, based on its location relative to a widget or the entire screen. -
Uses of CellTransform in jexer.effect
Classes in jexer.effect that implement CellTransform Modifier and Type Class Description classGradientCellTransformGradientCellTransform smoothly changes foreground and/or background color in a rectangular region.classMouseGlowCellTransformMouseGlowCellTransform smoothly changes foreground and/or background color in a rectangular region.
-