- java.lang.Object
-
- com.googlecode.lanterna.graphics.AbstractTextGraphics
-
- com.googlecode.lanterna.graphics.SubTextGraphics
-
- All Implemented Interfaces:
StyleSet<TextGraphics>,TextGraphics
class SubTextGraphics extends AbstractTextGraphics
This implementation of TextGraphics will take a 'proper' object and composite a view on top of it, by using a top-left position and a size. Any attempts to put text outside of this area will be dropped.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.googlecode.lanterna.graphics.StyleSet
StyleSet.Set
-
-
Field Summary
Fields Modifier and Type Field Description private TerminalPositiontopLeftprivate TextGraphicsunderlyingTextGraphicsprivate TerminalSizewritableAreaSize-
Fields inherited from class com.googlecode.lanterna.graphics.AbstractTextGraphics
activeModifiers, backgroundColor, foregroundColor, tabBehaviour
-
-
Constructor Summary
Constructors Constructor Description SubTextGraphics(TextGraphics underlyingTextGraphics, TerminalPosition topLeft, TerminalSize writableAreaSize)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TextCharactergetCharacter(int column, int row)Returns the character at the specific position in the terminal.TerminalSizegetSize()Returns the size of the area that this text graphic can write to.private TerminalPositionproject(int column, int row)TextGraphicssetCharacter(int columnIndex, int rowIndex, TextCharacter textCharacter)Sets the character at the current position to the specified value, without using the current colors and modifiers of this TextGraphics.-
Methods inherited from class com.googlecode.lanterna.graphics.AbstractTextGraphics
clearModifiers, disableModifiers, drawImage, drawImage, drawLine, drawLine, drawLine, drawLine, drawRectangle, drawRectangle, drawTriangle, drawTriangle, enableModifiers, fill, fillRectangle, fillRectangle, fillTriangle, fillTriangle, getActiveModifiers, getBackgroundColor, getCharacter, getForegroundColor, getTabBehaviour, newTextGraphics, putCSIStyledString, putCSIStyledString, putString, putString, putString, putString, putString, setBackgroundColor, setCharacter, setCharacter, setCharacter, setForegroundColor, setModifiers, setStyleFrom, setTabBehaviour
-
-
-
-
Field Detail
-
underlyingTextGraphics
private final TextGraphics underlyingTextGraphics
-
topLeft
private final TerminalPosition topLeft
-
writableAreaSize
private final TerminalSize writableAreaSize
-
-
Constructor Detail
-
SubTextGraphics
SubTextGraphics(TextGraphics underlyingTextGraphics, TerminalPosition topLeft, TerminalSize writableAreaSize)
-
-
Method Detail
-
project
private TerminalPosition project(int column, int row)
-
setCharacter
public TextGraphics setCharacter(int columnIndex, int rowIndex, TextCharacter textCharacter)
Description copied from interface:TextGraphicsSets the character at the current position to the specified value, without using the current colors and modifiers of this TextGraphics.- Parameters:
columnIndex- column of the location to set the characterrowIndex- row of the location to set the charactertextCharacter- Character data to set at the current position- Returns:
- Itself
-
getSize
public TerminalSize getSize()
Description copied from interface:TextGraphicsReturns the size of the area that this text graphic can write to. Any attempts of placing characters outside of this area will be silently ignored.- Returns:
- Size of the writable area that this TextGraphics can write too
-
getCharacter
public TextCharacter getCharacter(int column, int row)
Description copied from interface:TextGraphicsReturns the character at the specific position in the terminal. May returnnullif the TextGraphics implementation doesn't support it or doesn't know what the character is.- Parameters:
column- Column to return the character forrow- Row to return the character for- Returns:
- The text character at the specified position or
nullif not available
-
-