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.menu Menu bar support classes.jexer.ttree TTreeView and supporting classes.xtwm.plugins Plugins that extend the function of the desktop.xtwm.ui Main user interface. -
-
Uses of TWindow in jexer
Subclasses of TWindow in jexer Modifier and Type Class Description class
TDesktop
TDesktop is a special-class window that is drawn underneath everything else.class
TEditColorThemeWindow
TEditColorThemeWindow provides an easy UI for users to alter the running color theme.class
TEditorWindow
TEditorWindow is a basic text file editor.class
TExceptionDialog
TExceptionDialog displays an exception and its stack trace to the user, and provides a means to save a troubleshooting report for support.class
TFileOpenBox
TFileOpenBox is a system-modal dialog for selecting a file to open.class
THelpWindow
THelpWindowclass
TImageWindow
TImageWindow shows an image with scrollbars.class
TInputBox
TInputBox is a system-modal dialog with an OK button and a text input field.class
TMessageBox
TMessageBox is a system-modal dialog with buttons for OK, Cancel, Yes, or No.class
TScreenOptionsWindow
TScreenOptionsWindow provides an easy UI for users to alter the running screen options such as fonts and images.class
TScrollableWindow
TScrollableWindow is a convenience superclass for windows that have scrollbars.class
TTableWindow
TTableWindow is used to display and edit regular two-dimensional tables of cells.class
TTerminalWindow
TTerminalWindow exposes a ECMA-48 / ANSI X3.64 style terminal in a window.Methods in jexer that return TWindow Modifier and Type Method Description TWindow
TApplication. addWindow(java.lang.String title, int width, int height)
Convenience function to create a new window and make it active.TWindow
TApplication. addWindow(java.lang.String title, int width, int height, int flags)
Convenience function to create a new window and make it active.TWindow
TApplication. addWindow(java.lang.String title, int x, int y, int width, int height)
Convenience function to create a new window and make it active.TWindow
TApplication. 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.TWindow
TApplication. getActiveWindow()
Get the current active window.TWindow
TWidget. 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 void
TApplication. activateWindow(TWindow window)
Activate a window: bring it to the top and have it receive events.void
TApplication. closeWindow(TWindow window)
Close window.void
TApplication. doSmartPlacement(TWindow window)
Place a window to minimize its overlap with other windows.boolean
TApplication. hasWindow(TWindow window)
Check if a window instance is in this application's window list.void
TApplication. hideWindow(TWindow window)
Hide a window.protected void
TWidget. setupForTWindow(TWindow window, int x, int y, int width, int height)
Backdoor access for TWindow's constructor.void
TWidget. setWindow(TWindow window)
Set this widget's window to a specific window.void
TApplication. 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 class
TWindowBackend
TWindowBackend 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 class
DemoCheckBoxWindow
This window demonstates the TRadioGroup, TRadioButton, and TCheckBox widgets.class
DemoEditorWindow
This window demonstates the TEditor widget.class
DemoMainWindow
This is the main "demo" application window.class
DemoMsgBoxWindow
This window demonstates the TMessageBox and TInputBox widgets.class
DemoTableWindow
This window demonstates the TTable widget.class
DemoTextFieldWindow
This window demonstates the TField and TPasswordField widgets.class
DemoTextWindow
This window demonstates the TText, THScroller, and TVScroller widgets.class
DemoTreeViewWindow
This window demonstates the TTreeView widget.class
DesktopDemo
The modified desktop. -
Uses of TWindow in jexer.menu
Subclasses of TWindow in jexer.menu Modifier and Type Class Description class
TMenu
TMenu is a top-level collection of TMenuItems. -
Uses of TWindow in jexer.ttree
Subclasses of TWindow in jexer.ttree Modifier and Type Class Description class
TTreeViewWindow
TTreeViewWindow wraps a tree view with horizontal and vertical scrollbars in a standalone window. -
Uses of TWindow in xtwm.plugins
Methods in xtwm.plugins that return TWindow Modifier and Type Method Description TWindow
DesktopPager. getWindow(XTWMApplication application)
Get the window that will be used for this plugin when isWindowed() is true.TWindow
PluginWidget. getWindow(XTWMApplication application)
Get the window that will be used for this plugin when isWindowed() is true.TWindow
ScreensaverPlugin. getWindow(XTWMApplication application)
Get the window that will be used for this plugin when isWindowed() is true. -
Uses of TWindow in xtwm.ui
Subclasses of TWindow in xtwm.ui Modifier and Type Class Description class
ApplicationOptionsWindow
This window is used to configure the overall XtermWM application preferences.class
ClientsWindow
ClientsWindow is the UI to manage connected clients of a shared session.class
Desktop
Desktop is a desktop background and tiled panels manager.class
EditorOptionsWindow
This window is used to configure the editor preferences.class
ExternalEditorWindow
ExternalEditorWindow is a terminal shell wrapper to an editor.class
InternalEditorWindow
InternalEditorWindow is a basic text file editor.class
PluginOptionsWindow
PluginOptionsWindow enables/disables and configures the available plugins.class
SearchInputWindow
This window is used by both the "Find" and "Replace" functions.class
SwitchWidgetWindow
SwitchWidgetWindow is the UI to change a panel from one kind of widget or TiledTerminal to something else.class
TerminalWindow
TerminalWindow is a terminal window with a few extra menu functions.Methods in xtwm.ui that return TWindow Modifier and Type Method Description TWindow
XTWMApplication. openEditor(java.lang.String filename)
Convenience function to open a file in an editor window and make it active.Methods in xtwm.ui that return types with arguments of type TWindow Modifier and Type Method Description java.util.List<TWindow>
VirtualDesktop. getWindows()
Get the windows on this desktop.Methods in xtwm.ui with parameters of type TWindow Modifier and Type Method Description void
VirtualDesktop. addWindow(TWindow window)
Add a window to this desktop.boolean
VirtualDesktop. hasWindow(TWindow window)
See if a window is associated with this desktop.void
XTWMApplication. putOnAllDesktops(TWindow window)
Put a window on all desktops.void
VirtualDesktop. removeWindow(TWindow window)
Remove a window from this desktop.
-