Uses of Class
jexer.TWindow
-
Packages that use TWindow Package Description jexer Jexer - Java Text User Interface libraryjexer.backend The interface between TApplication and user-facing I/O.jexer.effect Desktop and window effects.jexer.menu Menu bar support classes. -
-
Uses of TWindow in jexer
Subclasses of TWindow in jexer Modifier and Type Class Description classTDesktopTDesktop is a special-class window that is drawn underneath everything else.classTEditColorThemeWindowTEditColorThemeWindow provides an easy UI for users to alter the running color theme.classTEditDesktopStyleWindowTEditDesktopStyleWindow provides an easy UI for users to alter the running border styles and button style.classTEditorWindowTEditorWindow is a basic text file editor.classTExceptionDialogTExceptionDialog displays an exception and its stack trace to the user, and provides a means to save a troubleshooting report for support.classTFileOpenBoxTFileOpenBox is a system-modal dialog for selecting a file to open.classTHelpWindowTHelpWindowclassTImageWindowTImageWindow shows an image with scrollbars.classTInputBoxTInputBox is a system-modal dialog with an OK button and a text input field.classTMessageBoxTMessageBox is a system-modal dialog with buttons for OK, Cancel, Yes, or No.classTScreenOptionsWindowTScreenOptionsWindow provides an easy UI for users to alter the running screen options such as fonts and images.classTScrollableWindowTScrollableWindow is a convenience superclass for windows that have scrollbars.classTTableWindowTTableWindow is used to display and edit regular two-dimensional tables of cells.classTTerminalInformationWindowTTerminalInformationWindow displays some details about the running environment and terminal.classTTerminalWindowTTerminalWindow exposes a ECMA-48 / ANSI X3.64 style terminal in a window.classTTextPictureWindowTTextPictureWindow shows an ASCII/ANSI art file with scrollbars.classTTreeViewWindowTTreeViewWindow wraps a tree view with horizontal and vertical scrollbars in a standalone window.Methods in jexer that return TWindow Modifier and Type Method Description TWindowTApplication. addWindow(java.lang.String title, int width, int height)Convenience function to create a new window and make it active.TWindowTApplication. addWindow(java.lang.String title, int width, int height, int flags)Convenience function to create a new window and make it active.TWindowTApplication. addWindow(java.lang.String title, int x, int y, int width, int height)Convenience function to create a new window and make it active.TWindowTApplication. addWindow(java.lang.String title, int x, int y, int width, int height, int flags)Convenience function to create a new window and make it active.TWindowTApplication. getActiveWindow()Get the current active window.TWindowTWidget. getWindow()Get the window this widget is on.Methods in jexer that return types with arguments of type TWindow Modifier and Type Method Description java.util.List<TWindow>TApplication. getAllWindows()Get a (shallow) copy of the window list.Methods in jexer with parameters of type TWindow Modifier and Type Method Description voidTApplication. activateWindow(TWindow window)Activate a window: bring it to the top and have it receive events.voidTApplication. closeWindow(TWindow window)Close window.voidTApplication. doSmartPlacement(TWindow window)Place a window to minimize its overlap with other windows.booleanTApplication. hasWindow(TWindow window)Check if a window instance is in this application's window list.voidTApplication. hideWindow(TWindow window)Hide a window.protected voidTWidget. setupForTWindow(TWindow window, int x, int y, int width, int height)Backdoor access for TWindow's constructor.voidTWidget. setWindow(TWindow window)Set this widget's window to a specific window.voidTApplication. showWindow(TWindow window)Show a window.Constructors in jexer with parameters of type TWindow Constructor Description TStatusBar(TWindow window)Public constructor.TStatusBar(TWindow window, java.lang.String text)Public constructor. -
Uses of TWindow in jexer.backend
Subclasses of TWindow in jexer.backend Modifier and Type Class Description classTWindowBackendTWindowBackend uses a window in one TApplication to provide a backend for another TApplication. -
Uses of TWindow in jexer.effect
Subclasses of TWindow in jexer.effect Modifier and Type Class Description classWindowTransitionEffect.DummyWindowThe DummyWindow shows the new screen area contents, while also ignoring events during the Effect execution.Methods in jexer.effect that return TWindow Modifier and Type Method Description TWindowWindowTransitionEffect.DummyWindow. getEffectedWindow()Get the window this dummy window is convering up.Constructors in jexer.effect with parameters of type TWindow Constructor Description DummyWindow(TWindow window, WindowTransitionEffect windowTransitionEffect)Public constructor.WindowBurnInEffect(TWindow window)Public contructor.WindowBurnOutEffect(TWindow window)Public contructor.WindowFadeInEffect(TWindow window)Public contructor.WindowFadeOutEffect(TWindow window)Public contructor.WindowTransitionEffect(TWindow window)Public contructor.WindowWipeInEffect(TWindow window, WindowWipeInEffect.Direction direction)Public contructor.WindowWipeOutEffect(TWindow window, WindowWipeOutEffect.Direction direction)Public contructor. -
Uses of TWindow in jexer.menu
Subclasses of TWindow in jexer.menu Modifier and Type Class Description classTMenuTMenu is a top-level collection of TMenuItems.
-