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.demos Demonstration programs.jexer.effect Desktop and window effects.jexer.menu Menu bar support classes.jexer.ttree TTreeView and supporting 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.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.classTTerminalWindowTTerminalWindow exposes a ECMA-48 / ANSI X3.64 style terminal in a window.classTTextPictureWindowTTextPictureWindow shows an ASCII/ANSI art file with scrollbars.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.demos
Subclasses of TWindow in jexer.demos Modifier and Type Class Description classDemoCheckBoxWindowThis window demonstates the TRadioGroup, TRadioButton, and TCheckBox widgets.classDemoEditorWindowThis window demonstates the TEditor widget.classDemoMainWindowThis is the main "demo" application window.classDemoMsgBoxWindowThis window demonstates the TMessageBox and TInputBox widgets.classDemoPixelsWindowPixel-based operations.classDemoTableWindowThis window demonstates the TTable widget.classDemoTextFieldWindowThis window demonstates the TField and TPasswordField widgets.classDemoTextWindowThis window demonstates the TText, THScroller, and TVScroller widgets.classDemoTreeViewWindowThis window demonstates the TTreeView widget.classDesktopDemoThe modified desktop. - 
Uses of TWindow in jexer.effect
Constructors in jexer.effect with parameters of type TWindow Constructor Description WindowBurnInEffect(TWindow window)Public contructor.WindowFadeInEffect(TWindow window)Public contructor.WindowFadeOutEffect(TWindow window)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. - 
Uses of TWindow in jexer.ttree
Subclasses of TWindow in jexer.ttree Modifier and Type Class Description classTTreeViewWindowTTreeViewWindow wraps a tree view with horizontal and vertical scrollbars in a standalone window. 
 -