Uses of Interface
com.googlecode.lanterna.gui2.BasePane

Packages that use BasePane
  • Uses of BasePane in com.googlecode.lanterna.gui2

    Classes in com.googlecode.lanterna.gui2 with type parameters of type BasePane
    Modifier and Type
    Class
    Description
    class 
    This abstract implementation of BasePane has the common code shared by all different concrete implementations.
    interface 
    Base listener interface having callback methods for events relating to BasePane (and Window, which extends BasePane) so that you can be notified by a callback when certain events happen.
    Modifier and Type
    Interface
    Description
    interface 
    Window is a base unit in the TextGUI system, it represents a collection of components grouped together, usually surrounded by a border and a title.
    Classes in com.googlecode.lanterna.gui2 that implement BasePane
    Modifier and Type
    Class
    Description
    class 
    This abstract implementation of BasePane has the common code shared by all different concrete implementations.
    class 
    Abstract Window has most of the code requiring for a window to function, all concrete window implementations extends from this in one way or another.
    class 
    Simple AbstractWindow implementation that you can use as a building block when creating new windows without having to create new classes.
    class 
    This class is a Window implementation that automatically sets some common settings that you'd want on specifically popup windows with menu items.
    Methods in com.googlecode.lanterna.gui2 that return BasePane
    Modifier and Type
    Method
    Description
    MultiWindowTextGUI.getBackgroundPane()
     
    WindowBasedTextGUI.getBackgroundPane()
    Returns the container for the background, which works as a single large component that takes up the whole terminal area and is always behind all windows.
    AbstractBasePane.ContentHolder.getBasePane()
     
    AbstractComponent.getBasePane()
     
    Component.getBasePane()
    Returns the BasePane that this container belongs to.
  • Uses of BasePane in com.googlecode.lanterna.gui2.dialogs

    Modifier and Type
    Class
    Description
    class 
    Dialog containing a multiple item action list box
    class 
    Thin layer on top of the AbstractWindow class that automatically sets properties and hints to the window to make it act more like a modal dialog window
    class 
    Dialog that allows the user to iterate the file system and pick directory.
    class 
    Dialog that allows the user to iterate the file system and pick file to open/save
    class 
    Dialog that allows the user to select an item from a list
    class 
    Simple message dialog that displays a message and has optional selection/confirmation buttons
    class 
    TextInputDialog is a modal text input dialog that prompts the user to enter a text string.
    class 
    Dialog that displays a text message, an optional spinning indicator and an optional progress bar.