Uses of Interface
com.googlecode.lanterna.input.KeyDecodingProfile
-
Packages that use KeyDecodingProfile Package Description com.googlecode.lanterna.input com.googlecode.lanterna.terminal.ansi -
-
Uses of KeyDecodingProfile in com.googlecode.lanterna.input
Classes in com.googlecode.lanterna.input that implement KeyDecodingProfile Modifier and Type Class Description class
DefaultKeyDecodingProfile
This profile attempts to collect as many code combinations as possible without causing any collisions between patterns.Methods in com.googlecode.lanterna.input with parameters of type KeyDecodingProfile Modifier and Type Method Description void
InputDecoder. addProfile(KeyDecodingProfile profile)
Adds another key decoding profile to this InputDecoder, which means all patterns from the profile will be used when decoding input. -
Uses of KeyDecodingProfile in com.googlecode.lanterna.terminal.ansi
Methods in com.googlecode.lanterna.terminal.ansi that return KeyDecodingProfile Modifier and Type Method Description protected KeyDecodingProfile
ANSITerminal. getDefaultKeyDecodingProfile()
This method can be overridden in a custom terminal implementation to change the default key decoders.
-