Method | Description |
---|---|
com.googlecode.lanterna.gui2.AbstractWindow.fromGlobal(TerminalPosition) | |
com.googlecode.lanterna.gui2.Window.fromGlobal(TerminalPosition) |
This is deprecated in favor of calling either of:
fromGlobalToContentRelative() or fromGlobalToDecoratedRelative() |
com.googlecode.lanterna.TextCharacter.getCharacter() |
This won't work with advanced characters like emoji
|
com.googlecode.lanterna.gui2.table.Table.getViewLeftColumn() |
Use the table renderers method instead
|
com.googlecode.lanterna.gui2.table.Table.getViewTopRow() |
Use the table renderers method instead
|
com.googlecode.lanterna.gui2.AbstractWindow.setSize(TerminalSize) | |
com.googlecode.lanterna.gui2.Window.setSize(TerminalSize) |
This method is deprecated now as it probably doesn't do what you think. Please use
setFixedSize or setDecoratedSize instead, depending on what you are trying to do. |
com.googlecode.lanterna.gui2.table.Table.setViewLeftColumn(int) |
Use the table renderers method instead
|
com.googlecode.lanterna.gui2.table.Table.setViewTopRow(int) |
Use the table renderers method instead
|
com.googlecode.lanterna.gui2.MultiWindowTextGUI.setVirtualScreenEnabled(boolean) |
This method don't do anything anymore (as of 3.1.0)
|
com.googlecode.lanterna.terminal.swing.TerminalEmulatorColorConfiguration.toAWTColor(TextColor, boolean, boolean) |
This adds a runtime dependency to the java.desktop module which isn't declared in the module
descriptor of lanterna. If you want to call this method, make sure to add it to your module.
|
com.googlecode.lanterna.TextColor.toColor() |
This adds a runtime dependency to the java.desktop module which isn't declared in the module
descriptor of lanterna. If you want to call this method, make sure to add it to your module.
|
com.googlecode.lanterna.gui2.AbstractWindow.toGlobal(TerminalPosition) | |
com.googlecode.lanterna.gui2.Window.toGlobal(TerminalPosition) |
This is deprecated in favor of calling either of:
toGlobalFromContentRelative() or toGlobalFromDecoratedRelative() . |
com.googlecode.lanterna.gui2.AbstractWindow.toGlobalFromDecoratedRelative(TerminalPosition) |
Constructor | Description |
---|---|
com.googlecode.lanterna.gui2.MultiWindowTextGUI(Screen, TextColor) |
It's preferred to use a custom background component if you want to customize the background color,
or you should change the theme. Using this constructor won't work well with theming.
|
com.googlecode.lanterna.TextCharacter(char) |
Use fromCharacter instead
|
com.googlecode.lanterna.TextCharacter(char, TextColor, TextColor, SGR...) |
Use fromCharacter instead
|
com.googlecode.lanterna.TextCharacter(char, TextColor, TextColor, EnumSet<SGR>) |
Use fromCharacter instead
|
com.googlecode.lanterna.TextCharacter(TextCharacter) |
TextCharacters are immutable so you shouldn't need to call this
|
Copyright © 2020. All rights reserved.