Uses of Interface
com.googlecode.lanterna.graphics.TextImage
-
Packages that use TextImage Package Description com.googlecode.lanterna.graphics com.googlecode.lanterna.gui2 com.googlecode.lanterna.screen -
-
Uses of TextImage in com.googlecode.lanterna.graphics
Classes in com.googlecode.lanterna.graphics that implement TextImage Modifier and Type Class Description classBasicTextImageSimple implementation of TextImage that keeps the content as a two-dimensional TextCharacter array.Methods in com.googlecode.lanterna.graphics that return TextImage Modifier and Type Method Description TextImageTextImage. resize(TerminalSize newSize, TextCharacter filler)Returns a copy of this image resized to a new size and using a specified filler character if the new size is larger than the old and we need to fill in empty areas.Methods in com.googlecode.lanterna.graphics with parameters of type TextImage Modifier and Type Method Description voidBasicTextImage. copyTo(TextImage destination)voidBasicTextImage. copyTo(TextImage destination, int startRowIndex, int rows, int startColumnIndex, int columns, int destinationRowOffset, int destinationColumnOffset)voidTextImage. copyTo(TextImage destination)Copies this TextImage's content to another TextImage.voidTextImage. copyTo(TextImage destination, int startRowIndex, int rows, int startColumnIndex, int columns, int destinationRowOffset, int destinationColumnOffset)Copies this TextImage's content to another TextImage.TextGraphicsAbstractTextGraphics. drawImage(TerminalPosition topLeft, TextImage image)TextGraphicsAbstractTextGraphics. drawImage(TerminalPosition topLeft, TextImage image, TerminalPosition sourceImageTopLeft, TerminalSize sourceImageSize)TextGraphicsNullTextGraphics. drawImage(TerminalPosition topLeft, TextImage image)TextGraphicsNullTextGraphics. drawImage(TerminalPosition topLeft, TextImage image, TerminalPosition sourceImageTopLeft, TerminalSize sourceImageSize)TextGraphicsTextGraphics. drawImage(TerminalPosition topLeft, TextImage image)Takes a TextImage and draws it on the surface this TextGraphics is targeting, given the coordinates on the target that is specifying where the top-left corner of the image should be drawn.TextGraphicsTextGraphics. drawImage(TerminalPosition topLeft, TextImage image, TerminalPosition sourceImageTopLeft, TerminalSize sourceImageSize)Takes a TextImage and draws it on the surface this TextGraphics is targeting, given the coordinates on the target that is specifying where the top-left corner of the image should be drawn. -
Uses of TextImage in com.googlecode.lanterna.gui2
Fields in com.googlecode.lanterna.gui2 declared as TextImage Modifier and Type Field Description private TextImageImageComponent. textImageFields in com.googlecode.lanterna.gui2 with type parameters of type TextImage Modifier and Type Field Description private java.util.IdentityHashMap<Window,TextImage>MultiWindowTextGUI. windowRenderBufferCacheMethods in com.googlecode.lanterna.gui2 with parameters of type TextImage Modifier and Type Method Description DefaultTextGUIGraphicsDefaultTextGUIGraphics. drawImage(TerminalPosition topLeft, TextImage image)DefaultTextGUIGraphicsDefaultTextGUIGraphics. drawImage(TerminalPosition topLeft, TextImage image, TerminalPosition sourceImageTopLeft, TerminalSize sourceImageSize)TextGUIGraphicsTextGUIGraphics. drawImage(TerminalPosition topLeft, TextImage image)TextGUIGraphicsTextGUIGraphics. drawImage(TerminalPosition topLeft, TextImage image, TerminalPosition sourceImageTopLeft, TerminalSize sourceImageSize)voidImageComponent. setTextImage(TextImage textImage) -
Uses of TextImage in com.googlecode.lanterna.screen
Classes in com.googlecode.lanterna.screen that implement TextImage Modifier and Type Class Description classScreenBufferDefines a buffer used by AbstractScreen and its subclasses to keep its state of what's currently displayed and what the edit buffer looks like.Methods in com.googlecode.lanterna.screen with parameters of type TextImage Modifier and Type Method Description voidScreenBuffer. copyFrom(TextImage source, int startRowIndex, int rows, int startColumnIndex, int columns, int destinationRowOffset, int destinationColumnOffset)Copies the content from a TextImage into this buffer.voidScreenBuffer. copyTo(TextImage destination)voidScreenBuffer. copyTo(TextImage destination, int startRowIndex, int rows, int startColumnIndex, int columns, int destinationRowOffset, int destinationColumnOffset)
-